@font-face {
	font-family: "DM Sans";
	src:
		url("/assets/fonts/dmsans/DMSans-Regular.woff2") format("woff2"),
		url("/assets/fonts/dmsans/DMSans-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "DM Sans";
	src:
		url("/assets/fonts/dmsans/DMSans-Medium.woff2") format("woff2"),
		url("/assets/fonts/dmsans/DMSans-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "DM Sans";
	src:
		url("/assets/fonts/dmsans/DMSans-SemiBold.woff2") format("woff2"),
		url("/assets/fonts/dmsans/DMSans-SemiBold.ttf") format("truetype");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "DM Sans";
	src:
		url("/assets/fonts/dmsans/DMSans-Bold.woff2") format("woff2"),
		url("/assets/fonts/dmsans/DMSans-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--accent: #3d63ff;
	--accent-2: #1fbf75;
	--accent-3: #3352d0;
	--accent-soft: #e8efff;
	--primary: var(--accent);
	--primary-dark: var(--accent-3);
	--background: #f1f5fb;
	--surface: #ffffff;
	--surface-soft: #f8fbff;
	--text-main: #0f172a;
	--text-muted: #475569;
	--border: #dbe4f0;
	--primary-soft: var(--accent-soft);
	--success: #16a34a;
	--danger: #ef4444;
	--warning: #f59e0b;
	--cyan: #0891b2;
	--shadow-soft: 0 16px 42px rgba(31, 56, 112, .09), 0 1px 3px rgba(31, 56, 112, .08);
	--shadow-card: 0 10px 28px rgba(31, 56, 112, .07), 0 1px 2px rgba(31, 56, 112, .05);
	--radius-card: 12px;
	--radius-small: 8px;
	--container: 1180px;
	--font-sans: "DM Sans", Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.landing-page {
	margin: 0;
	min-width: 320px;
	background:
		linear-gradient(180deg, #f8fbff 0%, var(--background) 42%, #f6f9fe 100%);
	color: var(--text-main);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0;
	overflow-x: hidden;
}

body.landing-page::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background-image: radial-gradient(#c9d7ee 1px, transparent 1px);
	background-size: 28px 28px;
	opacity: .22;
	mask-image: linear-gradient(180deg, transparent 0, #000 18%, #000 78%, transparent 100%);
}

body.landing-page a {
	color: inherit;
}

body.landing-page img,
body.landing-page svg {
	max-width: 100%;
}

.landing-brand picture,
.landing-footer-brand picture {
	display: inline-flex;
	align-items: center;
}

.logistics-label-scene picture {
	display: contents;
}

.about-visual-frame picture {
	display: block;
	width: 100%;
	height: 100%;
}

.skip-link {
	position: fixed;
	left: 16px;
	top: 12px;
	z-index: 2000;
	transform: translateY(-140%);
	padding: 10px 14px;
	border-radius: var(--radius-small);
	background: var(--text-main);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	transition: transform .18s ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.landing-container {
	width: min(calc(100% - 48px), var(--container));
	margin-inline: auto;
}

.landing-container--narrow {
	width: min(calc(100% - 48px), 780px);
}

.landing-icon,
.landing-button-icon {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
}

.landing-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 10px 0;
	background: rgba(255, 255, 255, .82);
	border-bottom: 1px solid rgba(219, 228, 240, .8);
	backdrop-filter: blur(16px);
}

.landing-header__inner {
	width: min(calc(100% - 48px), 1230px);
	min-height: 64px;
	margin-inline: auto;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 26px;
	padding: 0 18px;
	border: 1px solid rgba(219, 228, 240, .86);
	border-radius: var(--radius-card);
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 12px 30px rgba(31, 56, 112, .08);
}

.landing-brand {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	text-decoration: none;
}

.landing-brand img {
	display: block;
	width: 122px;
	height: auto;
}

.landing-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 27px;
	min-width: 0;
}

.landing-nav a,
.landing-login,
.landing-mobile-menu a {
	color: #1f2a44;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: color .16s ease;
}

.landing-nav a:hover,
.landing-login:hover,
.landing-mobile-menu a:hover {
	color: var(--primary);
}

.landing-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	min-width: 0;
}

.landing-button {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 20px;
	border: 1px solid transparent;
	border-radius: var(--radius-small);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.1;
	text-decoration: none;
	white-space: nowrap;
	transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}

.landing-button:hover {
	transform: translateY(-1px);
}

.landing-button:focus-visible,
.landing-menu-button:focus-visible,
.feature-tab-list button:focus-visible,
.feature-accordion-trigger:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--accent) 28%, transparent);
	outline-offset: 3px;
}

.landing-button--primary {
	background: var(--primary);
	color: #fff;
	box-shadow: 0 16px 30px color-mix(in srgb, var(--accent) 25%, transparent);
}

.landing-button--primary:hover {
	background: var(--primary-dark);
	color: #fff;
}

.landing-button--secondary {
	background: var(--surface);
	border-color: var(--border);
	color: var(--text-main);
	box-shadow: 0 8px 20px rgba(31, 56, 112, .05);
}

.landing-button--secondary .landing-button-icon {
	color: var(--primary);
}

.landing-button--secondary:hover {
	border-color: color-mix(in srgb, var(--accent) 38%, transparent);
	background: #fbfdff;
}

.landing-button--white {
	background: #fff;
	color: var(--primary);
	box-shadow: 0 14px 28px rgba(10, 25, 65, .12);
}

.landing-button--outline-white {
	background: rgba(255, 255, 255, .08);
	border-color: rgba(255, 255, 255, .48);
	color: #fff;
}

.landing-button--outline-white:hover {
	background: rgba(255, 255, 255, .16);
	color: #fff;
}

.landing-header-cta {
	flex: 0 1 auto;
	min-height: 44px;
	padding-inline: 18px;
	font-size: 14px;
}

.landing-menu-button {
	display: none;
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--border);
	border-radius: var(--radius-small);
	background: var(--surface);
	color: var(--text-main);
	cursor: pointer;
	align-items: center;
	justify-content: center;
	-webkit-appearance: none;
	appearance: none;
}

.landing-menu-button svg {
	display: block;
	width: 24px;
	height: 24px;
	max-width: none;
	flex: 0 0 24px;
	color: currentColor;
	stroke: currentColor;
}

.landing-menu-button .landing-menu-open {
	display: block;
}

.landing-menu-button .landing-menu-close {
	display: none;
}

.landing-header.is-menu-open .landing-menu-button .landing-menu-open {
	display: none;
}

.landing-header.is-menu-open .landing-menu-button .landing-menu-close {
	display: block;
}

.landing-mobile-menu {
	width: min(calc(100% - 48px), 1230px);
	margin: 8px auto 0;
	padding: 10px;
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	background: rgba(255, 255, 255, .97);
	box-shadow: var(--shadow-card);
}

.landing-mobile-menu a {
	display: flex;
	min-height: 44px;
	align-items: center;
	padding: 0 12px;
	border-radius: var(--radius-small);
}

.landing-mobile-menu a:hover {
	background: var(--primary-soft);
}

.hero-section {
	position: relative;
	overflow: hidden;
	padding: 72px 0 42px;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
	align-items: start;
	gap: 38px 56px;
	min-width: 0;
}

.hero-copy {
	position: relative;
	z-index: 2;
	min-width: 0;
	max-width: 100%;
}

.eyebrow,
.section-kicker {
	margin: 0 0 18px;
	color: var(--primary);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.25;
}

.hero-copy h1 {
	margin: 0;
	max-width: 610px;
	font-size: 60px;
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: 0;
	color: #10204b;
}

.hero-copy h1::first-line {
	color: #10204b;
}

.hero-copy h1 span,
.hero-copy h1 strong,
.hero-copy h1 em {
	color: var(--primary);
	font-style: normal;
}

.hero-copy h1 {
	text-wrap: balance;
}

.hero-lead {
	max-width: min(590px, 100%);
	margin: 24px 0 0;
	color: var(--text-muted);
	font-size: 18px;
	line-height: 1.6;
	overflow-wrap: break-word;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.hero-trust-list {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	margin: 36px 0 0;
	padding: 0;
	list-style: none;
	color: #334155;
	font-size: 14px;
	font-weight: 600;
}

.hero-trust-list li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.hero-trust-list .landing-icon {
	width: 18px;
	height: 18px;
	padding: 3px;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
}

.landing-header-cta,
.landing-header-cta:visited,
.landing-header-cta span,
.landing-header-cta .landing-button-icon {
	color: #fff;
}

.hero-product {
	position: relative;
	grid-column: 1 / -1;
	min-width: 0;
	margin-top: -300px;
	padding: 8px 0 54px;
}

.hero-signup-card {
	position: relative;
	z-index: 3;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	margin-top: 2px;
	padding: 34px 34px 28px;
	border: 1px solid rgba(219, 228, 240, .9);
	border-radius: 22px;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 26px 64px rgba(31, 56, 112, .13);
}

.hero-signup-heading {
	text-align: center;
}

.hero-signup-heading h2 {
	margin: 0;
	color: #10204b;
	font-size: 29px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: 0;
}

.hero-signup-heading p {
	margin: 10px 0 0;
	color: var(--text-muted);
	font-size: 15px;
	font-weight: 700;
}

.hero-signup-form {
	display: grid;
	gap: 14px;
	min-width: 0;
	margin-top: 28px;
}

.hero-signup-field {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.hero-signup-field label {
	color: #1f2a44;
	font-size: 13px;
	font-weight: 800;
}

.hero-signup-field input {
	width: 100%;
	min-width: 0;
	height: 44px;
	padding: 0 14px;
	border: 1px solid #cfd9ea;
	border-radius: var(--radius-small);
	background: #fff;
	color: var(--text-main);
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	transition: border-color .16s ease, box-shadow .16s ease;
}

.hero-signup-field input::placeholder {
	color: #9aa7bb;
	font-weight: 600;
}

.hero-signup-field input:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(61, 99, 255, .14);
	outline: 0;
}

.hero-password-wrap {
	position: relative;
	min-width: 0;
}

.hero-password-wrap input {
	padding-right: 48px;
}

.hero-password-wrap button {
	position: absolute;
	top: 50%;
	right: 8px;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #64748b;
	cursor: pointer;
}

.hero-password-wrap button:hover,
.hero-password-wrap button:focus-visible {
	background: var(--primary-soft);
	color: var(--primary);
	outline: 0;
}

.hero-password-wrap button .landing-icon {
	width: 18px;
	height: 18px;
}

.hero-signup-terms {
	display: grid;
	grid-template-columns: 16px minmax(0, 1fr);
	gap: 9px;
	align-items: start;
	min-width: 0;
	margin-top: 3px;
	color: #475569;
	font-size: 12px;
	line-height: 1.45;
	font-weight: 700;
}

.hero-signup-terms span {
	min-width: 0;
	max-width: 100%;
	overflow-wrap: anywhere;
}

.hero-signup-terms input {
	width: 16px;
	height: 16px;
	margin: 2px 0 0;
	accent-color: var(--primary);
}

.hero-signup-terms a,
.hero-signup-login a {
	color: var(--primary);
	font-weight: 800;
	text-decoration: none;
	overflow-wrap: anywhere;
}

.hero-signup-terms a:hover,
.hero-signup-login a:hover {
	text-decoration: underline;
}

.hero-signup-submit {
	width: 100%;
	min-height: 54px;
	margin-top: 8px;
	border: 0;
	border-radius: var(--radius-small);
	background: var(--primary);
	color: #fff;
	font: inherit;
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 16px 30px rgba(61, 99, 255, .24);
	transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.hero-signup-submit:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
}

.hero-signup-submit:focus-visible {
	outline: 3px solid rgba(61, 99, 255, .25);
	outline-offset: 3px;
}

.hero-signup-login,
.hero-signup-security {
	margin: 18px 0 0;
	text-align: center;
}

.hero-signup-login {
	color: #334155;
	font-size: 15px;
	font-weight: 700;
}

.hero-signup-security {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	color: #64748b;
	font-size: 12px;
	font-weight: 700;
}

.hero-signup-security .landing-icon {
	width: 15px;
	height: 15px;
}

.product-mockup {
	position: relative;
	display: grid;
	grid-template-columns: 118px minmax(0, 1fr);
	width: 100%;
	overflow: hidden;
	border: 1px solid rgba(203, 213, 225, .92);
	border-radius: var(--radius-card);
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 24px 58px rgba(22, 35, 76, .14);
}

.product-mockup--hero {
	width: min(760px, 70%);
	min-height: 430px;
	transform: translateY(8px);
}

.product-mockup--showcase {
	min-height: 500px;
	box-shadow: 0 18px 44px rgba(22, 35, 76, .12);
}

.mockup-sidebar {
	padding: 18px 12px;
	border-right: 1px solid #e4ebf5;
	background: linear-gradient(180deg, #fbfdff 0%, #f6f9ff 100%);
}

.mockup-brand {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #10204b;
	font-weight: 800;
}

.mockup-v,
.integration-flow .is-veolog span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: linear-gradient(160deg, var(--accent), color-mix(in srgb, var(--accent) 62%, #ffffff));
	font-weight: 900;
}

.mockup-v {
	width: 24px;
	height: 24px;
	border-radius: 7px;
	font-size: 14px;
}

.mockup-nav {
	display: flex;
	align-items: center;
	gap: 7px;
	min-height: 32px;
	margin-top: 9px;
	padding: 0 9px;
	border-radius: var(--radius-small);
	color: #64748b;
	font-size: 11px;
	font-weight: 700;
	white-space: nowrap;
}

.mockup-nav:first-of-type {
	margin-top: 22px;
}

.mockup-nav .landing-icon {
	width: 14px;
	height: 14px;
}

.mockup-nav.is-active {
	background: var(--primary-soft);
	color: var(--primary);
}

.mockup-main {
	min-width: 0;
}

.mockup-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	height: 54px;
	padding: 0 18px;
	border-bottom: 1px solid #e4ebf5;
}

.mockup-search {
	display: flex;
	align-items: center;
	gap: 8px;
	width: min(100%, 390px);
	height: 30px;
	padding: 0 12px;
	border: 1px solid #e4ebf5;
	border-radius: 7px;
	color: #94a3b8;
	font-size: 11px;
}

.mockup-search .landing-icon {
	width: 14px;
	height: 14px;
}

.mockup-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #64748b;
}

.mockup-actions .landing-icon {
	width: 16px;
	height: 16px;
}

.mockup-actions span {
	display: inline-flex;
	width: 26px;
	height: 26px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--primary-soft);
	color: var(--primary);
	font-size: 10px;
	font-weight: 800;
}

.mockup-content {
	padding: 20px 18px 18px;
}

.mockup-title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.mockup-title-row strong {
	display: block;
	font-size: 17px;
	line-height: 1.2;
}

.mockup-title-row span {
	display: block;
	margin-top: 4px;
	color: #64748b;
	font-size: 12px;
	font-weight: 600;
}

.mockup-title-row button {
	height: 34px;
	padding: 0 12px;
	border: 1px solid #e4ebf5;
	border-radius: var(--radius-small);
	background: #fff;
	color: #334155;
	font: inherit;
	font-size: 12px;
	font-weight: 700;
}

.mockup-metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin-top: 22px;
}

.mockup-metrics div,
.mockup-card,
.benefit-card,
.compact-benefit-card,
.business-card,
.testimonial-card,
.callout-card {
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	background: var(--surface);
	box-shadow: var(--shadow-card);
}

.mockup-metrics div {
	padding: 13px;
	min-width: 0;
	box-shadow: 0 8px 18px rgba(31, 56, 112, .05);
}

.mockup-metrics span,
.mockup-metrics small {
	display: block;
	font-size: 11px;
	font-weight: 700;
}

.mockup-metrics span {
	color: #64748b;
}

.mockup-metrics strong {
	display: block;
	margin-top: 7px;
	color: #10204b;
	font-size: 21px;
	line-height: 1;
}

.mockup-metrics small {
	margin-top: 8px;
}

.is-up {
	color: var(--success);
}

.is-down {
	color: var(--danger);
}

.mockup-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(180px, .85fr);
	gap: 12px;
	margin-top: 12px;
}

.mockup-card {
	min-width: 0;
	padding: 14px;
	box-shadow: 0 8px 18px rgba(31, 56, 112, .05);
}

.mockup-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
}

.mockup-card-head strong {
	font-size: 12px;
	color: #10204b;
}

.mockup-line-chart {
	width: 100%;
	height: 152px;
	display: block;
}

.grid-line {
	stroke: #e8eef7;
	stroke-width: 1;
}

.chart-path {
	fill: none;
	stroke: var(--primary);
	stroke-width: 4;
}

.chart-dots circle {
	fill: #fff;
	stroke: var(--primary);
	stroke-width: 3;
}

.mockup-donut-wrap {
	display: grid;
	grid-template-columns: 98px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
}

.mockup-donut {
	width: 92px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: conic-gradient(var(--primary) 0 62%, var(--cyan) 62% 92%, var(--warning) 92% 97%, #cbd5e1 97% 100%);
	position: relative;
}

.mockup-donut::after {
	content: "";
	position: absolute;
	inset: 18px;
	border-radius: 50%;
	background: #fff;
}

.mockup-donut-wrap ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
	color: #64748b;
	font-size: 11px;
	font-weight: 700;
}

.mockup-donut-wrap li {
	display: grid;
	grid-template-columns: 10px 1fr auto;
	gap: 6px;
	align-items: center;
}

.dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
}

.dot-blue {
	background: var(--primary);
}

.dot-cyan {
	background: var(--cyan);
}

.dot-amber {
	background: var(--warning);
}

.mockup-card--table {
	grid-column: span 2;
}

.mockup-card--bars {
	display: none;
}

.mockup-card table {
	width: 100%;
	border-collapse: collapse;
	font-size: 11px;
}

.mockup-card td {
	padding: 8px 6px;
	border-top: 1px solid #edf2f8;
	color: #64748b;
	font-weight: 700;
}

.mockup-card td:first-child {
	color: var(--primary);
}

.mockup-card td span {
	display: inline-flex;
	min-height: 22px;
	align-items: center;
	padding: 0 8px;
	border-radius: 999px;
	background: var(--primary-soft);
	color: var(--primary);
	font-size: 10px;
}

.mockup-card td span.is-green {
	background: #dcfce7;
	color: var(--success);
}

.mockup-bars {
	display: grid;
	gap: 12px;
}

.mockup-bars span {
	display: grid;
	gap: 6px;
	color: #64748b;
	font-size: 11px;
	font-weight: 700;
}

.mockup-bars span::after {
	content: "";
	width: var(--bar);
	height: 8px;
	border-radius: 999px;
	background: var(--primary);
}

.floating-card {
	position: absolute;
	right: 10px;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 10px 12px;
	align-items: center;
	width: 260px;
	padding: 16px;
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 16px 34px rgba(22, 35, 76, .16);
	animation: landingFloat 4.5s ease-in-out infinite;
}

.floating-card--success {
	bottom: 190px;
}

.floating-card--tracking {
	bottom: 86px;
	animation-delay: .7s;
}

.floating-card span {
	grid-row: span 2;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #dcfce7;
	color: var(--success);
}

.floating-card--tracking span {
	background: var(--primary-soft);
	color: var(--primary);
}

.floating-card strong {
	font-size: 14px;
	line-height: 1.25;
}

.floating-card small {
	color: var(--text-muted);
	font-size: 12px;
	line-height: 1.35;
}

@keyframes landingFloat {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

.trust-bar-section {
	padding: 4px 0 46px;
}

.trust-bar {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	background: rgba(255, 255, 255, .92);
	box-shadow: var(--shadow-card);
}

.trust-bar div {
	min-height: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 12px;
	color: #1f2a44;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
}

.trust-bar div + div {
	border-left: 1px solid var(--border);
}

.trust-bar .landing-icon {
	color: var(--primary);
}

.freight-simulator-card {
	margin-top: 34px;
	padding: 34px 46px 40px;
	border: 1px solid rgba(219, 228, 240, .95);
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(248, 251, 255, .95)),
		var(--surface);
	box-shadow: 0 28px 70px rgba(31, 56, 112, .13);
}

.freight-simulator-brand {
	display: flex;
	align-items: center;
	gap: 18px;
	color: var(--primary);
	font-size: 18px;
	font-weight: 800;
}

.freight-simulator-brand img {
	width: 126px;
	height: auto;
}

.freight-simulator-brand span {
	width: 1px;
	height: 28px;
	background: var(--border);
}

.freight-simulator-heading {
	margin-top: 28px;
}

.freight-simulator-heading h2 {
	margin: 0;
	color: #10204b;
	font-size: 42px;
	line-height: 1.05;
	font-weight: 800;
	letter-spacing: 0;
}

.freight-simulator-heading p {
	margin: 8px 0 0;
	color: #66728a;
	font-size: 19px;
	line-height: 1.35;
	font-weight: 600;
}

.freight-simulator-form {
	margin-top: 30px;
}

.freight-cep-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
	gap: 20px;
	align-items: end;
}

.freight-field {
	display: grid;
	gap: 8px;
	min-width: 0;
	color: #10204b;
	font-size: 14px;
	font-weight: 700;
}

.freight-field-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-width: 0;
	line-height: 1.25;
}

.freight-field-label > span {
	min-width: 0;
}

.freight-field input {
	width: 100%;
	min-width: 0;
	height: 52px;
	padding: 0 16px;
	border: 1px solid #cfd9ea;
	border-radius: var(--radius-card);
	background: rgba(255, 255, 255, .96);
	color: #10204b;
	font: inherit;
	font-size: 17px;
	font-weight: 700;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
	transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.freight-field input::placeholder {
	color: #8b98b2;
	font-weight: 600;
}

.freight-field input:focus {
	border-color: var(--primary);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(61, 99, 255, .13);
	outline: 0;
}

.freight-swap-button {
	width: 56px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #cfd9ea;
	border-radius: var(--radius-card);
	background: rgba(255, 255, 255, .94);
	color: #1f2a44;
	cursor: pointer;
	transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.freight-swap-button:hover,
.freight-swap-button:focus-visible {
	border-color: rgba(61, 99, 255, .44);
	background: var(--primary-soft);
	color: var(--primary);
	outline: 0;
}

.freight-swap-button:hover {
	transform: translateY(-1px);
}

.freight-swap-button .landing-icon {
	width: 22px;
	height: 22px;
}

.freight-package-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
	margin-top: 26px;
}

.freight-submit-button {
	min-width: 190px;
	min-height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 28px auto 0;
	padding: 0 24px;
	border: 0;
	border-radius: var(--radius-card);
	background: var(--primary);
	color: #fff;
	font: inherit;
	font-size: 17px;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 18px 34px rgba(61, 99, 255, .25);
	transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.freight-submit-button:hover,
.freight-submit-button:focus-visible {
	background: var(--primary-dark);
	box-shadow: 0 22px 40px rgba(61, 99, 255, .3);
	outline: 0;
}

.freight-submit-button:hover {
	transform: translateY(-1px);
}

.freight-submit-button:disabled {
	cursor: wait;
	opacity: .72;
	transform: none;
}

.freight-simulator-status {
	max-width: 620px;
	margin: 12px auto 0;
	color: #64748b;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}

.freight-simulator-card.is-calculated .freight-simulator-status {
	color: var(--success);
}

.freight-results {
	display: grid;
	gap: 12px;
	margin-top: 18px;
	padding-top: 22px;
	border-top: 1px solid var(--border);
}

.freight-results.is-empty {
	display: block;
}

.freight-results-empty {
	margin: 0;
	padding: 18px;
	border: 1px dashed #cfd9ea;
	border-radius: var(--radius-card);
	background: rgba(248, 251, 255, .78);
	color: #64748b;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.freight-result-row {
	display: grid;
	grid-template-columns: minmax(250px, 1.1fr) minmax(180px, .8fr) minmax(130px, auto) auto 28px;
	gap: 18px;
	align-items: center;
	min-height: 74px;
	padding: 12px 18px;
	border: 1px solid #dce5f2;
	border-radius: var(--radius-card);
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 8px 22px rgba(31, 56, 112, .06);
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.freight-result-row:hover {
	transform: translateY(-2px);
	border-color: rgba(61, 99, 255, .36);
	box-shadow: 0 14px 30px rgba(31, 56, 112, .1);
}

.freight-result-row.is-best {
	border-color: var(--primary);
	box-shadow: 0 14px 32px rgba(61, 99, 255, .12);
}

.freight-carrier {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.freight-carrier strong,
.freight-deadline strong {
	display: block;
	color: #10204b;
	font-size: 17px;
	line-height: 1.2;
	font-weight: 800;
}

.freight-carrier small,
.freight-deadline span {
	display: block;
	margin-top: 4px;
	color: #66728a;
	font-size: 13px;
	line-height: 1.25;
	font-weight: 600;
}

.carrier-mark {
	position: relative;
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
}

.carrier-mark--jadlog {
	border-radius: 10px;
	background: linear-gradient(145deg, #ff3151, #d90f2f);
	box-shadow: inset -10px -10px 0 rgba(122, 10, 35, .18);
	clip-path: polygon(50% 0, 94% 24%, 94% 76%, 50% 100%, 6% 76%, 6% 24%);
}

.carrier-mark--jadlog::before,
.carrier-mark--jadlog::after {
	content: "";
	position: absolute;
	background: rgba(255, 255, 255, .86);
}

.carrier-mark--jadlog::before {
	left: 23px;
	top: 8px;
	width: 4px;
	height: 34px;
	transform: rotate(60deg);
}

.carrier-mark--jadlog::after {
	left: 23px;
	top: 8px;
	width: 4px;
	height: 34px;
	transform: rotate(-60deg);
}

.carrier-mark--correios::before,
.carrier-mark--correios::after {
	content: "";
	position: absolute;
	width: 34px;
	height: 20px;
	border-radius: 4px;
	transform: skewX(-28deg);
	box-shadow: 0 5px 14px rgba(31, 56, 112, .13);
}

.carrier-mark--correios::before {
	left: 2px;
	top: 18px;
	background: linear-gradient(135deg, #f8c21a, #d99a00);
}

.carrier-mark--correios::after {
	right: 2px;
	top: 8px;
	background: linear-gradient(135deg, #11a4df, #0b5cae);
}

.carrier-mark--generic {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: var(--primary-soft);
	color: var(--primary);
	font-size: 18px;
	font-weight: 900;
}

.carrier-mark--jadlog,
.carrier-mark--correios {
	color: transparent;
}

.freight-best-badge {
	justify-self: start;
	min-height: 28px;
	display: inline-flex;
	align-items: center;
	padding: 0 14px;
	border: 1px solid rgba(22, 163, 74, .22);
	border-radius: 999px;
	background: #dcfce7;
	color: var(--success);
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.freight-best-badge:empty {
	visibility: hidden;
}

.freight-price {
	color: var(--primary);
	font-size: 22px;
	line-height: 1;
	font-weight: 800;
	white-space: nowrap;
}

.freight-result-arrow {
	color: #64748b;
}

.freight-result-arrow .landing-icon {
	width: 24px;
	height: 24px;
}

.landing-section {
	padding: 54px 0;
}

.section-heading {
	max-width: 640px;
}

.section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.section-heading h2 {
	margin: 0;
	color: #10204b;
	font-size: 34px;
	line-height: 1.18;
	font-weight: 800;
	letter-spacing: 0;
	text-wrap: balance;
}

.section-heading p {
	margin: 14px 0 0;
	color: var(--text-muted);
	font-size: 17px;
	line-height: 1.55;
}

.benefits-grid {
	display: grid;
	gap: 18px;
}

.benefits-grid--primary {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 32px;
}

.benefit-card {
	min-height: 182px;
	padding: 26px;
}

.benefit-icon,
.compact-benefit-card span,
.business-card > span,
.callout-card > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: var(--radius-small);
	background: var(--primary-soft);
	color: var(--primary);
}

.benefit-icon .landing-icon,
.compact-benefit-card span .landing-icon,
.business-card > span .landing-icon,
.callout-card > span .landing-icon {
	width: 28px;
	height: 28px;
}

.benefit-card h3,
.compact-benefit-card h3,
.business-card h3 {
	margin: 18px 0 8px;
	font-size: 17px;
	line-height: 1.25;
	color: #10204b;
}

.benefit-card p,
.compact-benefit-card p,
.business-card p {
	margin: 0;
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.58;
}

.benefits-grid--secondary {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	margin-top: 30px;
}

.compact-benefit-card {
	min-height: 178px;
	padding: 22px 16px;
	text-align: center;
}

.compact-benefit-card span {
	margin-inline: auto;
	width: 48px;
	height: 48px;
	border-radius: 50%;
}

.compact-benefit-card h3 {
	margin-top: 18px;
	font-size: 15px;
}

.compact-benefit-card p {
	font-size: 13px;
}

.steps-row {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 42px;
	margin-top: 32px;
}

.steps-row::before {
	content: "";
	position: absolute;
	left: 17%;
	right: 17%;
	top: 44px;
	border-top: 2px dashed rgba(61, 99, 255, .45);
}

.step-card {
	position: relative;
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	background: transparent;
}

.step-icon {
	position: relative;
	z-index: 1;
	width: 76px;
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	background: #fff;
	color: var(--primary);
	box-shadow: var(--shadow-card);
}

.step-icon .landing-icon {
	width: 34px;
	height: 34px;
}

.step-card b {
	display: inline-flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
	font-size: 13px;
}

.step-card h3 {
	display: inline;
	margin: 0 0 0 8px;
	font-size: 17px;
	color: #10204b;
}

.step-card p {
	margin: 8px 0 0;
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.55;
}

.feature-tabs-shell,
.integrations-shell {
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	background: rgba(255, 255, 255, .94);
	box-shadow: var(--shadow-soft);
}

.feature-tabs-shell {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 26px;
	padding: 32px;
}

.feature-tabs-copy h2 {
	margin: 0 0 26px;
	color: #10204b;
	font-size: 29px;
	line-height: 1.2;
}

.feature-tab-list {
	display: grid;
	gap: 10px;
}

.feature-tab-list button,
.feature-accordion-trigger {
	width: 100%;
	min-height: 48px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 14px;
	border: 1px solid var(--border);
	border-radius: var(--radius-small);
	background: #fff;
	color: #1f2a44;
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
	transition: background .16s ease, border-color .16s ease, color .16s ease;
}

.feature-tab-list button .landing-icon,
.feature-accordion-trigger .landing-icon {
	width: 18px;
	height: 18px;
	color: var(--primary);
}

.feature-tab-list button.is-active {
	border-color: var(--primary);
	background: var(--primary);
	color: #fff;
	box-shadow: 0 14px 28px rgba(61, 99, 255, .2);
}

.feature-tab-list button.is-active .landing-icon {
	color: #fff;
}

.feature-panel {
	display: none;
}

.feature-panel.is-active {
	display: block;
}

.feature-accordion-trigger {
	display: none;
}

.feature-panel-grid {
	display: grid;
	grid-template-columns: minmax(0, .52fr) minmax(390px, 1fr);
	gap: 28px;
	align-items: center;
}

.feature-panel-copy h3 {
	margin: 0;
	font-size: 21px;
	line-height: 1.3;
	color: #10204b;
}

.feature-panel-copy p {
	margin: 14px 0 18px;
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.62;
}

.feature-panel-copy ul {
	display: grid;
	gap: 11px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: #334155;
	font-size: 14px;
	font-weight: 700;
}

.feature-panel-copy li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.feature-panel-copy li .landing-icon {
	width: 17px;
	height: 17px;
	padding: 3px;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
}

.quote-mockup {
	min-width: 0;
	padding: 20px;
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	background: #fff;
	box-shadow: var(--shadow-card);
}

.quote-mockup-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e4ebf5;
	color: #10204b;
	font-weight: 800;
}

.quote-mockup-head small {
	color: var(--text-muted);
	font-weight: 700;
}

.quote-fields {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) 100px;
	gap: 10px;
	margin-top: 16px;
}

.quote-fields span,
.quote-fields button {
	min-height: 42px;
	display: flex;
	align-items: center;
	padding: 0 12px;
	border: 1px solid var(--border);
	border-radius: var(--radius-small);
	font-size: 12px;
	font-weight: 700;
	color: #334155;
	background: #fff;
}

.quote-fields button {
	justify-content: center;
	border-color: var(--primary);
	background: var(--primary);
	color: #fff;
	font-family: inherit;
	cursor: default;
}

.quote-table {
	margin-top: 14px;
	border: 1px solid var(--border);
	border-radius: var(--radius-small);
	overflow: hidden;
}

.quote-table > div {
	display: grid;
	grid-template-columns: 1.15fr .9fr .85fr .9fr;
	gap: 8px;
	padding: 11px 12px;
	border-top: 1px solid #edf2f8;
	color: #475569;
	font-size: 12px;
	font-weight: 700;
}

.quote-table > div:first-child {
	border-top: 0;
	background: #f8fbff;
	color: #10204b;
}

.quote-table strong {
	color: #10204b;
}

.quote-table em {
	font-style: normal;
	color: var(--primary);
}

.integrations-shell {
	padding: 30px;
}

.integration-flow {
	display: grid;
	grid-template-columns: 1.35fr 32px 1fr 32px 1.15fr 32px .8fr;
	gap: 14px;
	align-items: center;
	margin-top: 26px;
}

.integration-flow > div {
	min-height: 76px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 16px;
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	background: #fff;
	color: #10204b;
	font-weight: 800;
	text-align: center;
	box-shadow: var(--shadow-card);
}

.integration-flow > i {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-style: normal;
}

.integration-flow .landing-icon {
	width: 24px;
	height: 24px;
	color: var(--primary);
}

.integration-flow .is-veolog span {
	width: 34px;
	height: 34px;
	border-radius: 9px;
}

.integration-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.integration-chips span {
	min-height: 54px;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 8px 14px;
	border: 1px solid var(--border);
	border-radius: var(--radius-small);
	background: #fff;
	box-shadow: 0 8px 18px rgba(31, 56, 112, .04);
}

.integration-chips strong {
	color: #10204b;
}

.integration-chips small {
	padding: 3px 7px;
	border-radius: 999px;
	background: var(--primary-soft);
	color: var(--primary);
	font-size: 11px;
	font-weight: 800;
}

.dashboard-showcase {
	display: grid;
	grid-template-columns: 210px minmax(0, 1fr) 210px;
	gap: 24px;
	align-items: center;
	padding: 28px;
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	background: rgba(255, 255, 255, .94);
	box-shadow: var(--shadow-soft);
}

.dashboard-showcase-copy h2 {
	margin: 0;
	color: #10204b;
	font-size: 29px;
	line-height: 1.18;
}

.dashboard-showcase-copy p {
	margin: 16px 0 24px;
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.55;
}

.dashboard-showcase-mockup {
	min-width: 0;
}

.dashboard-showcase .product-mockup {
	grid-template-columns: 108px minmax(0, 1fr);
}

.dashboard-showcase .mockup-card--table {
	grid-column: auto;
}

.dashboard-showcase .mockup-card--bars {
	display: block;
}

.dashboard-showcase-callouts {
	display: grid;
	gap: 28px;
}

.callout-card {
	position: relative;
	padding: 18px;
}

.callout-card::before {
	content: "";
	position: absolute;
	top: 50%;
	width: 44px;
	border-top: 2px dashed rgba(61, 99, 255, .4);
}

.dashboard-showcase-callouts .callout-card::before {
	right: 100%;
}

.callout-card--left::before {
	left: 100%;
}

.callout-card strong {
	display: block;
	margin-top: 13px;
	color: #10204b;
	font-size: 15px;
	line-height: 1.28;
}

.callout-card small {
	display: block;
	margin-top: 8px;
	color: var(--text-muted);
	font-size: 13px;
	line-height: 1.5;
}

.business-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	max-width: 880px;
	margin: 30px auto 0;
}

.business-card {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	min-height: 138px;
	padding: 24px;
}

.business-card h3 {
	margin-top: 0;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	max-width: 880px;
	margin: 28px auto 0;
}

.testimonial-card {
	min-height: 190px;
	padding: 22px;
}

.placeholder-badge {
	display: inline-flex;
	min-height: 26px;
	align-items: center;
	padding: 0 10px;
	border-radius: 999px;
	background: #fff7ed;
	color: #c2410c;
	font-size: 12px;
	font-weight: 800;
}

.testimonial-card p {
	margin: 18px 0 24px;
	color: #334155;
	font-size: 15px;
	line-height: 1.62;
}

.testimonial-card strong,
.testimonial-card small {
	display: block;
}

.testimonial-card strong {
	color: #10204b;
}

.testimonial-card small {
	margin-top: 3px;
	color: var(--text-muted);
	font-size: 13px;
}

.intermediate-cta-section {
  padding: 54px 0 68px;
}

.blue-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 32px;
  align-items: center;
  padding: 48px 52px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background:
    linear-gradient(116deg, rgba(255, 255, 255, .11) 0 18%, transparent 18% 100%),
    linear-gradient(135deg, #4f5cff 0%, #4356f0 48%, #2438c9 100%);
  color: #fff;
  box-shadow: 0 24px 54px rgba(41, 58, 196, .25);
}

.blue-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 62%, rgba(121, 237, 198, .2) 62% 62.4%, transparent 62.4%),
    linear-gradient(90deg, transparent 0 72%, rgba(255, 255, 255, .13) 72% 72.3%, transparent 72.3%);
  opacity: .85;
  pointer-events: none;
}

.blue-cta::after {
  content: "V";
  position: absolute;
  left: 32px;
  bottom: -58px;
  color: rgba(255, 255, 255, .075);
  font-size: 220px;
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}

.blue-cta > * {
  position: relative;
  z-index: 1;
}

.blue-cta h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

.blue-cta p {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  line-height: 1.45;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.blue-cta .landing-button {
  min-width: 206px;
  min-height: 54px;
  justify-content: center;
  border-radius: 10px;
  font-weight: 800;
}

.blue-cta .landing-button--white {
  color: #3047ff;
  box-shadow: 0 16px 30px rgba(6, 14, 70, .18);
}

.blue-cta .landing-button--white svg,
.blue-cta .landing-button--white span {
  color: inherit;
}

.blue-cta .landing-button--outline-white {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.blue-cta .landing-button--outline-white:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .72);
}

.faq-list {
	margin-top: 44px;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	background: #fff;
	box-shadow: var(--shadow-card);
}

.faq-list details + details {
	border-top: 1px solid var(--border);
}

.faq-list summary {
	position: relative;
	min-height: 58px;
	display: flex;
	align-items: center;
	padding: 16px 56px 16px 24px;
	color: #10204b;
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}

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

.faq-list summary::after {
	content: "";
	position: absolute;
	right: 24px;
	width: 10px;
	height: 10px;
	border-right: 2px solid #10204b;
	border-bottom: 2px solid #10204b;
	transform: rotate(45deg);
	transition: transform .18s ease;
}

.faq-list details[open] summary {
	color: var(--primary);
}

.faq-list details[open] summary::after {
	transform: rotate(225deg);
	border-color: var(--primary);
}

.faq-list p {
	margin: -4px 0 0;
	padding: 0 24px 20px;
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.65;
}

.landing-footer {
	border-top: 1px solid var(--border);
	background: #fff;
}

.landing-footer-grid {
	display: grid;
	grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(120px, 1fr));
	gap: 36px;
	padding: 36px 0;
}

.landing-footer-brand img {
	width: 128px;
	height: auto;
	display: block;
}

.landing-footer-brand p {
	max-width: 290px;
	margin: 14px 0 0;
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.55;
}

.landing-footer nav {
	display: grid;
	align-content: start;
	gap: 9px;
}

.landing-footer h2 {
	margin: 0 0 5px;
	color: #10204b;
	font-size: 14px;
}

.landing-footer a {
	color: var(--text-muted);
	font-size: 14px;
	text-decoration: none;
}

.landing-footer a:hover {
	color: var(--primary);
}

.landing-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 16px 0 24px;
	border-top: 1px solid var(--border);
	color: var(--text-muted);
	font-size: 13px;
}

.reveal {
	opacity: 1;
	transform: none;
}

.landing-page.animations-ready .reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .55s ease, transform .55s ease;
}

.landing-page.animations-ready .reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.benefit-card,
.compact-benefit-card,
.business-card,
.testimonial-card,
.callout-card,
.integration-chips span {
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.benefit-card:hover,
.compact-benefit-card:hover,
.business-card:hover,
.testimonial-card:hover,
.callout-card:hover,
.integration-chips span:hover {
	transform: translateY(-3px);
	border-color: rgba(61, 99, 255, .32);
	box-shadow: 0 16px 36px rgba(31, 56, 112, .1);
}

@media (max-width: 1180px) {
	.landing-nav {
		gap: 17px;
	}

	.hero-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 30px;
	}

	.hero-signup-card {
		max-width: 520px;
		margin-inline: auto;
	}

	.hero-product {
		margin-top: 0;
		padding-top: 10px;
	}

	.product-mockup--hero {
		width: 100%;
		min-height: 430px;
	}

	.dashboard-showcase {
		grid-template-columns: 1fr;
	}

	.dashboard-showcase {
		align-items: stretch;
	}

	.dashboard-showcase-copy,
	.dashboard-showcase-callouts {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
		align-items: start;
	}

	.dashboard-showcase-copy h2,
	.dashboard-showcase-copy p {
		grid-column: 1 / -1;
	}

	.callout-card::before {
		display: none;
	}

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

	.freight-simulator-card {
		padding: 34px 40px 40px;
	}

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

	.freight-result-row {
		grid-template-columns: minmax(220px, 1fr) minmax(170px, .8fr) auto auto 24px;
		gap: 18px;
	}
}

@media (max-width: 980px) {
	.landing-header__inner {
		grid-template-columns: minmax(0, auto) minmax(0, 1fr);
	}

	.landing-nav,
	.landing-login {
		display: none;
	}

	.landing-header__actions {
		justify-self: end;
	}

	.landing-menu-button {
		display: inline-flex;
	}

	.hero-copy h1 {
		font-size: 46px;
	}

	.feature-tabs-shell {
		grid-template-columns: 1fr;
		padding: 24px;
	}

	.feature-tab-list {
		display: none;
	}

	.feature-panel {
		display: block;
		border-top: 1px solid var(--border);
	}

	.feature-panel:first-child {
		border-top: 0;
	}

	.feature-accordion-trigger {
		display: flex;
		justify-content: space-between;
		min-height: 58px;
		padding-inline: 0;
		border: 0;
		background: transparent;
	}

	.feature-accordion-trigger > span {
		display: inline-flex;
		align-items: center;
		gap: 10px;
	}

	.feature-accordion-trigger > .landing-icon {
		transition: transform .18s ease;
	}

	.feature-panel.is-active .feature-accordion-trigger > .landing-icon {
		transform: rotate(90deg);
	}

	.feature-panel-grid {
		display: none;
		grid-template-columns: 1fr;
		padding: 0 0 20px;
	}

	.feature-panel.is-active .feature-panel-grid {
		display: grid;
	}

	.quote-fields {
		grid-template-columns: 1fr 1fr;
	}

	.quote-fields button {
		grid-column: 1 / -1;
	}

	.integration-flow {
		grid-template-columns: 1fr;
	}

	.integration-flow > i .landing-icon {
		transform: rotate(90deg);
	}

	.business-grid,
	.testimonial-grid,
	.landing-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.landing-footer-brand {
		grid-column: 1 / -1;
	}

	.freight-simulator-heading h2 {
		font-size: 38px;
	}

	.freight-simulator-heading p {
		font-size: 18px;
	}

	.freight-cep-row {
		grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
		gap: 18px;
	}

	.freight-swap-button {
		width: 56px;
		height: 52px;
	}

	.freight-field input {
		height: 52px;
		font-size: 17px;
	}

	.freight-result-row {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 14px 18px;
	}

	.freight-deadline {
		grid-column: 1 / 2;
		padding-left: 68px;
	}

	.freight-best-badge {
		grid-column: 1 / 2;
		margin-left: 68px;
	}

	.freight-price {
		grid-column: 2 / 3;
		grid-row: 1 / 3;
		align-self: center;
	}

	.freight-result-arrow {
		grid-column: 2 / 3;
		grid-row: 3 / 4;
		justify-self: end;
	}
}

@media (max-width: 820px) {
	.landing-container,
	.landing-container--narrow,
	.landing-header__inner,
	.landing-mobile-menu {
		width: min(calc(100% - 28px), var(--container));
	}

	.hero-section {
		padding-top: 42px;
	}

	.hero-copy h1 {
		font-size: 39px;
	}

	.hero-lead {
		font-size: 17px;
	}

	.hero-actions,
	.cta-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.hero-actions .landing-button,
	.cta-actions .landing-button {
		width: 100%;
	}

	.hero-signup-card {
		max-width: none;
		padding: 28px 22px 24px;
		border-radius: 18px;
	}

	.hero-signup-heading h2 {
		font-size: 25px;
	}

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

	.product-mockup {
		grid-template-columns: 1fr;
	}

	.product-mockup--hero,
	.product-mockup--showcase {
		min-height: 0;
	}

	.mockup-sidebar {
		display: none;
	}

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

	.mockup-grid {
		grid-template-columns: 1fr;
	}

	.mockup-card--table,
	.dashboard-showcase .mockup-card--table {
		grid-column: auto;
		overflow-x: auto;
	}

	.mockup-donut-wrap {
		grid-template-columns: 1fr;
		justify-items: center;
	}

	.floating-card {
		position: relative;
		right: auto;
		bottom: auto;
		width: auto;
		margin-top: 12px;
		animation: none;
	}

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

	.trust-bar div + div {
		border-left: 0;
	}

	.trust-bar div:nth-child(2n) {
		border-left: 1px solid var(--border);
	}

	.trust-bar div:nth-child(n+3) {
		border-top: 1px solid var(--border);
	}

	.section-heading h2 {
		font-size: 29px;
	}

	.benefits-grid--primary,
	.benefits-grid--secondary {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.steps-row {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-top: 28px;
	}

	.steps-row::before {
		left: 38px;
		right: auto;
		top: 76px;
		bottom: 76px;
		height: auto;
		border-top: 0;
		border-left: 2px dashed rgba(61, 99, 255, .45);
	}

	.step-card {
		grid-template-columns: 76px minmax(0, 1fr);
	}

	.dashboard-showcase {
		padding: 18px;
	}

	.dashboard-showcase-copy,
	.dashboard-showcase-callouts {
		grid-template-columns: 1fr;
	}

	.blue-cta {
		grid-template-columns: 1fr;
		gap: 26px;
		padding: 34px;
	}

	.blue-cta::before {
		background:
			linear-gradient(90deg, transparent 0 78%, rgba(121, 237, 198, .18) 78% 78.5%, transparent 78.5%),
			linear-gradient(90deg, transparent 0 88%, rgba(255, 255, 255, .13) 88% 88.4%, transparent 88.4%);
	}

	.blue-cta h2 {
		font-size: 29px;
	}

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

	.freight-simulator-card {
		margin-top: 24px;
		padding: 26px 22px 30px;
		border-radius: 20px;
	}

	.freight-simulator-brand {
		gap: 14px;
		font-size: 17px;
	}

	.freight-simulator-brand img {
		width: 118px;
	}

	.freight-simulator-heading {
		margin-top: 24px;
	}

	.freight-simulator-heading h2 {
		font-size: 32px;
	}

	.freight-simulator-heading p {
		font-size: 16px;
	}

	.freight-simulator-form {
		margin-top: 24px;
	}

	.freight-cep-row {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.freight-swap-button {
		justify-self: center;
		width: 58px;
		height: 54px;
	}

	.freight-package-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
		margin-top: 22px;
	}

	.freight-field {
		font-size: 14px;
	}

	.freight-field input {
		height: 50px;
		font-size: 16px;
	}

	.freight-submit-button {
		width: 100%;
		min-height: 50px;
		font-size: 16px;
	}
}

@media (max-width: 560px) {
	body.landing-page {
		font-size: 15px;
	}

	.landing-header {
		padding: 8px 0;
	}

	.landing-header__inner {
		min-height: 60px;
		width: min(calc(100% - 16px), var(--container));
		padding: 0 8px;
		gap: 8px;
	}

	.landing-brand img {
		width: 102px;
	}

	.landing-header__actions {
		gap: 8px;
	}

	.landing-header-cta {
		flex: 0 1 126px;
		min-width: 0;
		width: auto;
		max-width: 126px;
		min-height: 42px;
		padding-inline: 10px;
		font-size: 13px;
	}

	.landing-header-cta .landing-button-icon {
		display: none;
	}

	.landing-menu-button {
		width: 42px;
		height: 42px;
	}

	.hero-copy h1 {
		font-size: 34px;
		line-height: 1.12;
	}

	.hero-copy h1,
	.hero-lead {
		max-width: 100%;
	}

	.hero-lead,
	.section-heading p,
	.blue-cta p {
		font-size: 16px;
	}

	.intermediate-cta-section {
		padding: 42px 0 54px;
	}

	.blue-cta {
		padding: 28px 22px;
		border-radius: 16px;
	}

	.blue-cta h2 {
		font-size: 28px;
	}

	.blue-cta .landing-button {
		min-width: 0;
	}

	.landing-section {
		padding: 42px 0;
	}

	.section-heading h2,
	.feature-tabs-copy h2,
	.dashboard-showcase-copy h2 {
		font-size: 25px;
	}

	.product-mockup {
		min-width: 680px;
	}

	.product-mockup--hero {
		width: 680px;
	}

	.hero-product,
	.dashboard-showcase-mockup {
		width: 100%;
		max-width: 100%;
		overflow-x: auto;
		padding-bottom: 8px;
		scrollbar-color: var(--primary) #dbe4f0;
	}

	.floating-card {
		min-width: 0;
	}

	.benefits-grid--primary,
	.benefits-grid--secondary,
	.business-grid,
	.testimonial-grid,
	.landing-footer-grid {
		grid-template-columns: 1fr;
	}

	.trust-bar div {
		min-height: 76px;
		flex-direction: column;
		gap: 8px;
		font-size: 13px;
	}

	.quote-table {
		overflow-x: auto;
	}

	.quote-table > div {
		min-width: 520px;
	}

	.integration-chips span {
		width: 100%;
		justify-content: space-between;
	}

	.faq-list summary {
		padding-left: 18px;
		padding-right: 48px;
		font-size: 15px;
	}

	.faq-list summary::after {
		right: 20px;
	}

	.faq-list p {
		padding-inline: 18px;
	}

	.faq-list {
		margin-top: 34px;
	}

	.landing-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.freight-simulator-card {
		padding: 20px 14px 22px;
	}

	.freight-simulator-brand {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.freight-simulator-brand span {
		display: none;
	}

	.freight-simulator-heading {
		margin-top: 20px;
	}

	.freight-simulator-heading h2 {
		font-size: 28px;
	}

	.freight-simulator-heading p {
		font-size: 16px;
	}

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

	.freight-package-grid .freight-field:last-child {
		grid-column: 1 / -1;
	}

	.freight-results {
		margin-top: 16px;
		padding-top: 18px;
	}

	.freight-result-row {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 14px;
	}

	.freight-deadline,
	.freight-best-badge,
	.freight-price,
	.freight-result-arrow {
		grid-column: auto;
		grid-row: auto;
		margin-left: 0;
		justify-self: start;
	}

	.freight-price {
		font-size: 24px;
	}

	.freight-result-arrow {
		display: none;
	}
}

@media (max-width: 420px) {
	.landing-brand img {
		width: 96px;
	}

	.hero-copy h1 {
		font-size: 30px;
	}

	.landing-button {
		width: 100%;
		white-space: normal;
	}

	.landing-header__actions {
		gap: 8px;
	}

	.landing-menu-button {
		display: inline-flex;
		width: 44px;
		height: 44px;
	}

	.landing-header-cta {
		flex-basis: 112px;
		width: auto;
		max-width: 112px;
		padding-inline: 8px;
		font-size: 12.5px;
	}

	.mockup-topbar {
		padding-inline: 12px;
	}

	.mockup-metrics strong {
		font-size: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .001ms !important;
	}

	.landing-page.animations-ready .reveal,
	.landing-page.animations-ready .reveal.is-visible {
		opacity: 1;
		transform: none;
	}
}

/* Premium landing refinement */
.hero-grid {
	grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
	align-items: center;
	gap: 44px;
}

.hero-product {
	grid-column: auto;
	margin-top: 0;
	padding: 0 0 22px;
}

.product-mockup--hero {
	width: 100%;
	min-height: 440px;
}

.hero-actions--email {
	display: grid;
	grid-template-columns: minmax(0, 480px) auto;
	align-items: end;
	gap: 14px;
	margin-top: 30px;
}

.hero-email-form {
	display: grid;
	gap: 9px;
	min-width: 0;
}

.hero-email-form label {
	color: #1f2a44;
	font-size: 13px;
	font-weight: 800;
}

.hero-email-control {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	min-width: 0;
	padding: 5px;
	border: 1px solid #cfd9ea;
	border-radius: 16px;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 14px 36px rgba(31, 56, 112, .08);
}

.hero-email-control:focus-within {
	border-color: rgba(61, 99, 255, .62);
	box-shadow: 0 0 0 4px rgba(61, 99, 255, .12), 0 18px 38px rgba(31, 56, 112, .1);
}

.hero-email-control input {
	width: 100%;
	min-width: 0;
	height: 48px;
	padding: 0 14px;
	border: 0;
	background: transparent;
	color: var(--text-main);
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	outline: 0;
}

.hero-email-control input::placeholder {
	color: #8b98b2;
}

.hero-email-control button {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 0 18px;
	border: 0;
	border-radius: 12px;
	background: var(--primary);
	color: #fff;
	font: inherit;
	font-size: 15px;
	font-weight: 800;
	white-space: nowrap;
	cursor: pointer;
	box-shadow: 0 12px 24px rgba(61, 99, 255, .22);
	transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.hero-email-control button:hover,
.hero-email-control button:focus-visible {
	background: var(--primary-dark);
	outline: 0;
}

.hero-email-control button:hover {
	transform: translateY(-1px);
}

.hero-email-form small {
	color: #64748b;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.45;
}

.hero-secondary-cta {
	min-height: 60px;
}

.simulator-section {
	padding-top: 20px;
}

.simulator-section .freight-simulator-card {
	margin-top: 0;
}

.simulator-section .freight-simulator-heading {
	margin-top: 24px;
}

.simulator-section .freight-simulator-heading h2 {
	font-size: 38px;
}

.feature-product-mockup {
	min-width: 0;
	padding: 20px;
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	background: #fff;
	box-shadow: var(--shadow-card);
}

.feature-product-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e4ebf5;
	color: #10204b;
	font-weight: 800;
}

.feature-product-head span {
	color: #64748b;
	font-size: 12px;
	font-weight: 800;
}

.batch-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 16px;
}

.batch-toolbar span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--success);
	font-size: 13px;
	font-weight: 800;
}

.batch-toolbar .landing-icon {
	width: 17px;
	height: 17px;
}

.batch-toolbar button,
.quote-fields button {
	border: 0;
}

.batch-toolbar button {
	min-height: 38px;
	padding: 0 14px;
	border-radius: var(--radius-small);
	background: var(--primary);
	color: #fff;
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	cursor: default;
}

.batch-list {
	display: grid;
	gap: 9px;
	margin-top: 14px;
}

.batch-list div {
	display: grid;
	grid-template-columns: 70px minmax(0, 1fr) minmax(100px, .8fr) auto;
	gap: 10px;
	align-items: center;
	min-height: 44px;
	padding: 0 12px;
	border: 1px solid #edf2f8;
	border-radius: var(--radius-small);
	background: #f8fbff;
	color: #334155;
	font-size: 12px;
	font-weight: 700;
}

.batch-list strong {
	color: var(--success);
	font-size: 12px;
}

.batch-footer {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	padding: 12px;
	border-radius: var(--radius-small);
	background: var(--primary-soft);
	color: #2547c7;
	font-size: 13px;
	font-weight: 800;
}

.batch-footer .landing-icon {
	width: 18px;
	height: 18px;
}

.tracking-timeline {
	display: grid;
	gap: 0;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.tracking-timeline li {
	position: relative;
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr);
	gap: 12px;
	padding-bottom: 20px;
}

.tracking-timeline li::before {
	content: "";
	position: absolute;
	left: 8px;
	top: 20px;
	bottom: 0;
	border-left: 2px solid #e4ebf5;
}

.tracking-timeline li:last-child {
	padding-bottom: 0;
}

.tracking-timeline li:last-child::before {
	display: none;
}

.tracking-timeline > li > span {
	position: relative;
	z-index: 1;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	border: 2px solid #cbd5e1;
	border-radius: 999px;
	background: #fff;
}

.tracking-timeline li.is-done > span,
.tracking-timeline li.is-current > span {
	border-color: var(--primary);
	background: var(--primary);
}

.tracking-timeline strong,
.connection-map strong {
	display: block;
	color: #10204b;
	font-size: 14px;
}

.tracking-timeline small,
.connection-map small {
	display: block;
	margin-top: 3px;
	color: #64748b;
	font-size: 12px;
	font-weight: 700;
}

.connection-map {
	display: grid;
	grid-template-columns: 1fr 28px 1fr 28px 1fr;
	gap: 10px;
	align-items: center;
	margin-top: 18px;
}

.connection-map > div {
	min-height: 108px;
	display: grid;
	place-items: center;
	gap: 6px;
	padding: 12px;
	border: 1px solid var(--border);
	border-radius: var(--radius-small);
	background: #f8fbff;
	text-align: center;
}

.connection-map > i {
	color: var(--primary);
	font-style: normal;
}

.connection-map .landing-icon {
	width: 22px;
	height: 22px;
	color: var(--primary);
}

.connection-map .is-center {
	background: var(--primary);
	color: #fff;
}

.connection-map .is-center span {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: rgba(255, 255, 255, .16);
	font-weight: 900;
}

.connection-map .is-center strong,
.connection-map .is-center small {
	color: #fff;
}

.connection-status {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.connection-status span {
	padding: 7px 10px;
	border-radius: 999px;
	background: #eef6ff;
	color: #2547c7;
	font-size: 12px;
	font-weight: 800;
}

.finance-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 18px;
}

.finance-metrics div {
	padding: 14px;
	border: 1px solid #edf2f8;
	border-radius: var(--radius-small);
	background: #f8fbff;
}

.finance-metrics span,
.finance-metrics small {
	display: block;
	color: #64748b;
	font-size: 12px;
	font-weight: 800;
}

.finance-metrics strong {
	display: block;
	margin: 8px 0 4px;
	color: #10204b;
	font-size: 20px;
}

.finance-metrics small {
	color: var(--success);
}

.finance-bars {
	display: grid;
	gap: 13px;
	margin-top: 18px;
}

.finance-bars span {
	position: relative;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding-top: 18px;
	color: #334155;
	font-size: 13px;
	font-weight: 800;
}

.finance-bars span::before,
.finance-bars span::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 8px;
	border-radius: 999px;
}

.finance-bars span::before {
	right: 0;
	background: #e8efff;
}

.finance-bars span::after {
	width: var(--bar);
	background: var(--primary);
}

.finance-bars em {
	color: #64748b;
	font-style: normal;
}

.integration-groups {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
	gap: 22px;
	margin-top: 28px;
}

.integration-groups h3 {
	margin: 0 0 12px;
	color: #10204b;
	font-size: 16px;
}

.integration-chips--soon span {
	opacity: .64;
	background: #f8fbff;
}

.integration-chips--soon small {
	background: #eef2f7;
	color: #64748b;
}

.integration-request {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 24px;
	padding: 18px;
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	background: #f8fbff;
}

.integration-request p {
	margin: 0;
	color: #334155;
	font-weight: 800;
}

.plans-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 32px;
}

.public-plan-card,
.plans-fallback {
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	background: rgba(255, 255, 255, .95);
	box-shadow: var(--shadow-card);
}

.public-plan-card {
	display: grid;
	gap: 20px;
	padding: 24px;
}

.public-plan-card.is-featured {
	border-color: rgba(61, 99, 255, .42);
	box-shadow: 0 22px 48px rgba(61, 99, 255, .12);
}

.public-plan-head {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}

.public-plan-head > span,
.plans-fallback > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--primary-soft);
	color: var(--primary);
}

.public-plan-head .landing-icon,
.plans-fallback > span .landing-icon {
	width: 24px;
	height: 24px;
}

.public-plan-card h3,
.plans-fallback h3 {
	margin: 0;
	color: #10204b;
	font-size: 20px;
	line-height: 1.25;
}

.public-plan-card p,
.plans-fallback p {
	margin: 8px 0 0;
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.55;
}

.public-plan-price {
	color: #10204b;
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
}

.public-plan-features,
.public-plan-details ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: #334155;
	font-size: 14px;
	font-weight: 700;
}

.public-plan-features li,
.public-plan-details li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.public-plan-features .landing-icon {
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
	margin-top: 2px;
	padding: 3px;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
}

.public-plan-card .landing-button {
	width: 100%;
}

.plans-fallback {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	margin-top: 32px;
	padding: 24px;
}

.plans-section .finance-plans-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 22px;
	margin-top: 30px;
}

.plans-section .plan-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 16px 36px rgba(31, 56, 112, .07);
	transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.plans-section .plan-card:hover {
	transform: translateY(-3px);
	border-color: rgba(61, 99, 255, .34);
	box-shadow: 0 20px 44px rgba(31, 56, 112, .11);
}

.plans-section .plan-card-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 18px 20px 16px;
	background: #f8fbff;
	text-align: center;
}

.plans-section .plan-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 4px;
	border-radius: 14px;
	background: var(--primary-soft);
	color: var(--primary);
}

.plans-section .plan-card-plan-icon {
	width: 23px;
	height: 23px;
}

.plans-section .plan-card-title {
	color: #10204b;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.2;
}

.plans-section .plan-card-price {
	color: #10204b;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.25;
}

.plans-section .plan-card-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	margin-top: 2px;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(61, 99, 255, .1);
	color: var(--primary);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.25;
}

.plans-section .plan-card-details {
	flex: 1;
}

.plans-section .plan-card-features,
.plans-section .plan-card-features ul {
	display: grid;
	gap: 13px;
	margin: 22px 18px 12px;
	padding: 0;
	list-style: none;
	color: #334155;
	font-size: 14px;
	font-weight: 700;
}

.plans-section .plan-card-features ul {
	margin: 0;
}

.plans-section .plan-card-features li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	line-height: 1.4;
}

.plans-section .plan-card-features svg.plan-li-icon {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin-top: 2px;
}

.plans-section svg.icon-check .check-bg {
	fill: var(--primary) !important;
	stroke: var(--primary) !important;
}

.plans-section svg.icon-check .check-mark {
	stroke: #fff !important;
}

.plans-section svg.icon-minus .minus-border,
.plans-section svg.icon-minus .minus-line {
	fill: none !important;
	stroke: #dc2626 !important;
	stroke-width: 2;
}

.plans-section .plan-card-footer {
	display: flex;
	justify-content: center;
	margin-top: auto;
	padding: 16px 20px 20px;
}

.plans-section .plan-card .landing-button.plan-btn {
	width: 100%;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
}

.plans-section .finance-subsection {
	margin-top: 30px;
}

.plans-section .finance-subtitle {
	margin: 0 0 14px;
	color: #10204b;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.2;
}

.plans-section .finance-plan-table-wrapper {
	overflow-x: auto;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 16px 36px rgba(31, 56, 112, .07);
}

.plans-section .finance-plan-table {
	width: 100%;
	min-width: 720px;
	border-collapse: collapse;
	font-size: 13px;
}

.plans-section .finance-plan-table th,
.plans-section .finance-plan-table td {
	padding: 14px 12px;
	border-bottom: 1px solid rgba(148, 163, 184, .28);
	text-align: center;
	white-space: nowrap;
}

.plans-section .finance-plan-table th:first-child,
.plans-section .finance-plan-table td:first-child {
	text-align: left;
	white-space: normal;
	min-width: 260px;
	color: #334155;
	font-weight: 800;
}

.plans-section .finance-plan-table thead th {
	background: #f8fbff;
	color: #52617a;
	font-weight: 900;
}

.plans-section .finance-plan-table tbody tr:nth-child(odd) {
	background: rgba(61, 99, 255, .025);
}

.plans-section .finance-plan-table td svg {
	width: 16px !important;
	height: 16px !important;
	vertical-align: middle;
}

.plans-section .finance-help {
	margin: 16px 0 0;
	color: var(--text-muted);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
}

.plans-section .finance-help a {
	color: var(--primary);
	font-weight: 900;
	text-decoration: none;
}

.plans-section .finance-help a:hover {
	text-decoration: underline;
}

.freight-result-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 4px;
	padding: 18px;
	border: 1px solid rgba(61, 99, 255, .24);
	border-radius: var(--radius-card);
	background: var(--primary-soft);
}

.freight-result-cta p {
	margin: 0;
	color: #2547c7;
	font-size: 14px;
	font-weight: 800;
}

.freight-result-cta a {
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
	border-radius: var(--radius-small);
	background: var(--primary);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.benefit-card:hover,
.compact-benefit-card:hover,
.business-card:hover,
.testimonial-card:hover,
.callout-card:hover,
.integration-chips span:hover,
.public-plan-card:hover {
	transform: translateY(-3px);
	border-color: rgba(61, 99, 255, .32);
	box-shadow: 0 16px 36px rgba(31, 56, 112, .1);
}

@media (max-width: 1180px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-product {
		padding-top: 8px;
	}

	.hero-actions--email {
		grid-template-columns: minmax(0, 520px) auto;
	}

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

@media (max-width: 980px) {
	.hero-actions--email,
	.integration-groups,
	.plans-fallback {
		grid-template-columns: 1fr;
	}

	.integration-request {
		align-items: flex-start;
		flex-direction: column;
	}

	.connection-map {
		grid-template-columns: 1fr;
	}

	.connection-map > i .landing-icon {
		transform: rotate(90deg);
	}
}

@media (max-width: 820px) {
	body.landing-page {
		overflow-x: hidden;
	}

	.landing-container,
	.landing-container--narrow,
	.landing-header__inner,
	.landing-mobile-menu {
		width: min(calc(100vw - 28px), var(--container));
		max-width: calc(100vw - 28px);
	}

	.hero-product {
		width: 100%;
		max-width: 100%;
		overflow: hidden;
		padding-bottom: 8px;
	}

	.hero-product .product-mockup,
	.hero-product .product-mockup--hero {
		width: 100%;
		min-width: 0;
	}

	.hero-email-control {
		grid-template-columns: 1fr;
		gap: 6px;
		padding: 6px;
	}

	.hero-email-control button,
	.hero-secondary-cta {
		width: 100%;
		min-height: 50px;
	}

	.plans-grid {
		grid-template-columns: 1fr;
	}

	.feature-product-mockup {
		padding: 16px;
	}

	.batch-list div {
		grid-template-columns: 58px minmax(0, 1fr);
		gap: 8px 10px;
	}

	.batch-list em,
	.batch-list strong {
		grid-column: 2;
	}

	.finance-metrics {
		grid-template-columns: 1fr;
	}

	.freight-result-cta {
		align-items: stretch;
		flex-direction: column;
	}
}

@media (max-width: 560px) {
	.landing-header__inner {
		position: relative;
		width: calc(100vw - 16px);
		max-width: calc(100vw - 16px);
	}

	.landing-header__actions {
		position: fixed;
		top: 17px;
		right: 16px;
		transform: none;
		max-width: 150px;
		gap: 6px;
		z-index: 95;
	}

	.landing-header-cta {
		flex: 0 0 92px;
		max-width: 92px;
		padding-inline: 8px;
		overflow: hidden;
	}

	.landing-header-cta span {
		font-size: 0;
	}

	.landing-header-cta span::before {
		content: "Começar";
		font-size: 12px;
	}

	.hero-actions--email {
		margin-top: 24px;
	}

	.hero-email-control input {
		height: 46px;
		font-size: 15px;
	}

	.product-mockup--hero {
		width: 100%;
		min-width: 0;
	}

	.public-plan-card,
	.plans-fallback {
		padding: 20px;
	}

	.public-plan-price {
		font-size: 26px;
	}

	.freight-result-cta a {
		width: 100%;
	}
}

@media (max-width: 420px) {
	.landing-header-cta {
		flex-basis: 92px;
		max-width: 92px;
		font-size: 12px;
	}
}

/* Freight simulator */
.simulator-section {
	padding: 64px 0 72px;
	background: #f3f7fc;
}

.simulator-section .freight-simulator-card {
	width: min(calc(100% - 48px), 1260px);
	margin-top: 0;
	padding: 42px 60px 56px;
	border: 1px solid #e4ebf6;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 24px 72px rgba(25, 42, 90, .1);
}

.simulator-section .freight-simulator-brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 14px;
	border-radius: 8px;
	background: #e6e8ff;
	color: var(--home-blue);
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
}

.simulator-section .freight-simulator-brand img,
.simulator-section .freight-simulator-brand > span {
	display: none;
}

.simulator-section .freight-simulator-heading {
	max-width: 590px;
	margin-top: 20px;
}

.simulator-section .freight-simulator-heading h2 {
	margin: 0;
	color: #071247;
	font-size: clamp(42px, 3.2vw, 54px);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: 0;
}

.simulator-section .freight-simulator-heading p {
	max-width: 560px;
	margin: 10px 0 0;
	color: #566389;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.45;
}

.simulator-section .freight-simulator-form {
	display: grid;
	gap: 30px;
	margin-top: 30px;
}

.simulator-section .freight-cep-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
	gap: 44px;
	align-items: end;
}

.simulator-section .freight-package-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 28px;
	margin-top: 2px;
}

.simulator-section .freight-field {
	position: relative;
	display: grid;
	gap: 10px;
	min-width: 0;
	color: #071247;
	font-size: 14px;
	font-weight: 800;
}

.simulator-section .freight-field input {
	width: 100%;
	min-width: 0;
	height: 58px;
	padding: 0 18px;
	border: 1px solid #d7e0ee;
	border-radius: 8px;
	background: #fff;
	color: #071247;
	font: inherit;
	font-size: 18px;
	font-weight: 600;
	box-shadow: none;
	transition: border-color .16s ease, box-shadow .16s ease;
}

.simulator-section .freight-cep-row .freight-field input {
	padding-right: 50px;
	font-size: 20px;
}

.simulator-section .freight-field input::placeholder {
	color: #98a4bf;
	font-weight: 600;
}

.simulator-section .freight-field input:focus {
	border-color: var(--home-blue);
	box-shadow: 0 0 0 4px rgba(36, 87, 255, .12);
	outline: 0;
}

.simulator-section .freight-field-icon {
	position: absolute;
	right: 17px;
	bottom: 17px;
	width: 22px;
	height: 22px;
	color: #5663a5;
	pointer-events: none;
}

.simulator-section .freight-swap-button {
	width: 58px;
	height: 58px;
	align-self: end;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #d7e0ee;
	border-radius: 8px;
	background: #fff;
	color: var(--home-blue);
	box-shadow: none;
	cursor: pointer;
	transition: border-color .16s ease, color .16s ease, background .16s ease;
}

.simulator-section .freight-swap-button:hover,
.simulator-section .freight-swap-button:focus-visible {
	border-color: rgba(36, 87, 255, .45);
	background: #f8faff;
	color: var(--home-blue);
	outline: 0;
}

.simulator-section .freight-swap-button .landing-icon {
	width: 24px;
	height: 24px;
}

.simulator-section .freight-submit-button {
	min-width: 266px;
	min-height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: center;
	gap: 14px;
	margin: 2px 0 0;
	padding: 0 28px;
	border: 0;
	border-radius: 9px;
	background: var(--home-blue);
	color: #fff;
	font: inherit;
	font-size: 18px;
	font-weight: 800;
	box-shadow: none;
	cursor: pointer;
	transition: background .16s ease, transform .16s ease;
}

.simulator-section .freight-submit-button::after {
	content: "\2192";
	font-size: 25px;
	font-weight: 500;
	line-height: 1;
}

.simulator-section .freight-submit-button:hover,
.simulator-section .freight-submit-button:focus-visible {
	background: #1748ef;
	box-shadow: none;
	outline: 0;
}

.simulator-section .freight-submit-button:hover {
	transform: translateY(-1px);
}

.simulator-section .freight-submit-button:disabled {
	cursor: wait;
	opacity: .74;
	transform: none;
}

.simulator-section .freight-submit-button:disabled::after {
	content: "";
}

.simulator-section .freight-simulator-status {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.simulator-section .freight-results {
	display: grid;
	gap: 18px;
	margin-top: 52px;
	padding-top: 34px;
	border-top: 1px solid #dfe6f1;
}

.simulator-section .freight-results.is-empty {
	display: grid;
}

.simulator-section .freight-results.is-empty:not(.has-message) {
	display: none;
}

.simulator-section .freight-results-empty {
	margin: 0;
	padding: 18px;
	border: 1px dashed #cfd9ea;
	border-radius: 10px;
	background: #f8fbff;
	color: #64748b;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.simulator-section .freight-result-row {
	display: grid;
	grid-template-columns: minmax(260px, 1.35fr) minmax(210px, .75fr) auto 30px;
	gap: 26px;
	align-items: center;
	min-height: 92px;
	padding: 22px 26px;
	border: 1px solid #dfe7f3;
	border-radius: 10px;
	background: #fff;
	box-shadow: none;
	transition: border-color .16s ease, transform .16s ease;
}

.simulator-section .freight-result-row:hover {
	border-color: rgba(36, 87, 255, .35);
	box-shadow: none;
	transform: translateY(-1px);
}

.simulator-section .freight-result-row.is-best {
	border-color: #dfe7f3;
	box-shadow: none;
}

.simulator-section .freight-carrier {
	display: flex;
	align-items: center;
	gap: 24px;
	min-width: 0;
}

.simulator-section .freight-carrier strong,
.simulator-section .freight-deadline strong {
	display: block;
	color: #071247;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
}

.simulator-section .freight-carrier small,
.simulator-section .freight-best-badge {
	display: none;
}

.simulator-section .carrier-service {
	margin-left: 8px;
	color: #111827;
	font-size: 18px;
	font-weight: 700;
}

.simulator-section .carrier-mark {
	position: relative;
	width: 66px;
	height: 44px;
	flex: 0 0 auto;
}

.simulator-section .carrier-mark--jadlog {
	width: 50px;
	height: 50px;
	border-radius: 10px;
	background: linear-gradient(145deg, #ff3151, #d90f2f);
	box-shadow: inset -10px -10px 0 rgba(122, 10, 35, .18);
	clip-path: polygon(50% 0, 94% 24%, 94% 76%, 50% 100%, 6% 76%, 6% 24%);
}

.simulator-section .carrier-mark--jadlog::before {
	left: 27px;
	top: 9px;
	width: 4px;
	height: 39px;
}

.simulator-section .carrier-mark--jadlog::after {
	left: 27px;
	top: 9px;
	width: 4px;
	height: 39px;
}

.simulator-section .carrier-mark--correios::before,
.simulator-section .carrier-mark--correios::after {
	width: 38px;
	height: 22px;
	border-radius: 4px;
	box-shadow: none;
}

.simulator-section .carrier-mark--correios::before {
	left: 3px;
	top: 19px;
}

.simulator-section .carrier-mark--correios::after {
	right: 3px;
	top: 7px;
}

.simulator-section .carrier-mark--generic {
	width: 50px;
	height: 50px;
	border-radius: 12px;
}

.simulator-section .freight-deadline {
	position: relative;
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	min-width: 0;
}

.simulator-section .freight-deadline::before {
	content: "";
	grid-row: 1 / span 2;
	width: 22px;
	height: 22px;
	border: 2px solid #59649f;
	border-top-width: 6px;
	border-radius: 5px;
	box-sizing: border-box;
}

.simulator-section .freight-deadline span {
	display: block;
	margin: 0;
	color: #66709b;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.15;
}

.simulator-section .freight-deadline strong {
	font-size: 17px;
	font-weight: 700;
}

.simulator-section .freight-price {
	justify-self: end;
	color: var(--home-blue);
	font-size: 22px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.simulator-section .freight-result-arrow {
	justify-self: end;
	color: #4b5795;
}

.simulator-section .freight-result-arrow .landing-icon {
	width: 24px;
	height: 24px;
}

.simulator-section .freight-result-cta {
	display: none;
}

@media (max-width: 1180px) {
	.simulator-section .freight-simulator-card {
		width: min(calc(100% - 48px), var(--container));
		padding-inline: 42px;
	}

	.simulator-section .freight-cep-row {
		gap: 26px;
	}

	.simulator-section .freight-package-grid {
		gap: 18px;
	}

	.simulator-section .freight-result-row {
		grid-template-columns: minmax(240px, 1.2fr) minmax(190px, .75fr) auto 28px;
		gap: 20px;
	}
}

@media (max-width: 980px) {
	.simulator-section {
		padding: 48px 0 56px;
	}

	.simulator-section .freight-simulator-card {
		width: min(calc(100% - 32px), 820px);
		padding: 32px 28px 38px;
	}

	.simulator-section .freight-simulator-heading h2 {
		font-size: clamp(34px, 7vw, 44px);
	}

	.simulator-section .freight-cep-row {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.simulator-section .freight-swap-button {
		justify-self: center;
	}

	.simulator-section .freight-package-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.simulator-section .freight-package-grid .freight-field:last-child {
		grid-column: 1 / -1;
	}

	.simulator-section .freight-result-row {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 14px 18px;
		padding: 18px;
	}

	.simulator-section .freight-deadline {
		grid-column: 1 / 2;
		padding-left: 74px;
	}

	.simulator-section .freight-price {
		grid-column: 2 / 3;
		grid-row: 1 / 3;
		align-self: center;
	}

	.simulator-section .freight-result-arrow {
		grid-column: 2 / 3;
		grid-row: 3 / 4;
	}
}

@media (max-width: 560px) {
	.simulator-section .freight-simulator-card {
		width: calc(100% - 20px);
		padding: 24px 16px 28px;
		border-radius: 16px;
	}

	.simulator-section .freight-simulator-brand {
		min-height: 28px;
		font-size: 14px;
	}

	.simulator-section .freight-simulator-heading h2 {
		font-size: 32px;
	}

	.simulator-section .freight-simulator-heading p {
		font-size: 16px;
	}

	.simulator-section .freight-field input,
	.simulator-section .freight-cep-row .freight-field input,
	.simulator-section .freight-swap-button {
		height: 52px;
		font-size: 16px;
	}

	.simulator-section .freight-field-icon {
		bottom: 15px;
		width: 20px;
		height: 20px;
	}

	.simulator-section .freight-package-grid {
		grid-template-columns: 1fr;
	}

	.simulator-section .freight-submit-button {
		width: 100%;
		min-width: 0;
		min-height: 52px;
		font-size: 16px;
	}

	.simulator-section .freight-results {
		padding-top: 24px;
	}

	.simulator-section .freight-result-row {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 16px;
	}

	.simulator-section .freight-carrier {
		gap: 16px;
	}

	.simulator-section .freight-carrier strong {
		font-size: 18px;
	}

	.simulator-section .carrier-service {
		font-size: 16px;
	}

	.simulator-section .freight-deadline,
	.simulator-section .freight-price,
	.simulator-section .freight-result-arrow {
		grid-column: auto;
		grid-row: auto;
		padding-left: 0;
		justify-self: start;
	}
}

/* Home hero aligned to current brand composition */
body.landing-page {
	background: linear-gradient(180deg, #f9fbff 0%, #ffffff 34%, #f4f7fd 100%);
}

.landing-header {
	padding: 24px 0 0;
	border-bottom: 0;
	background: transparent;
	backdrop-filter: none;
}

.landing-header__inner {
	width: min(calc(100% - 48px), var(--container));
	min-height: 98px;
	gap: 24px;
	padding: 0 18px 0 36px;
	border: 0;
	border-radius: 18px;
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 22px 58px rgba(36, 56, 112, .08);
}

.landing-brand img {
	width: 162px;
}

.landing-nav {
	gap: clamp(18px, 2vw, 34px);
}

.landing-nav a,
.landing-login,
.landing-mobile-menu a {
	color: #030936;
	font-size: 17px;
	font-weight: 500;
}

.landing-header__actions {
	gap: 24px;
}

.landing-header-cta {
	min-width: 204px;
	min-height: 60px;
	padding-inline: 25px;
	border-radius: 9px;
	background: linear-gradient(180deg, var(--accent) 0%, var(--accent-3) 100%);
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	box-shadow: 0 16px 28px color-mix(in srgb, var(--accent) 28%, transparent);
}

.landing-header-cta:hover {
	background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 88%, #ffffff) 0%, var(--accent-3) 100%);
}

.hero-section {
	isolation: isolate;
	padding: 50px 0 50px;
	background:
		radial-gradient(circle at 72% 16%, rgba(77, 104, 255, .1), transparent 28%),
		linear-gradient(180deg, #f8fbff 0%, #ffffff 70%, #f8fbff 100%);
}

.hero-section .landing-container {
	width: min(calc(100% - 48px), var(--container));
}

.hero-grid {
	grid-template-columns: minmax(430px, .84fr) minmax(0, 1.16fr);
	align-items: start;
	gap: 24px;
}

.hero-copy {
	padding-top: 34px;
}

.hero-copy h1 {
	max-width: 560px;
	color: #050b3d;
	font-size: clamp(44px, 3.25vw, 56px);
	line-height: 1.16;
	font-weight: 600;
}

.hero-copy h1 span {
	color: var(--accent);
	white-space: nowrap;
}

.hero-lead {
	max-width: 540px;
	margin-top: 32px;
	color: #31406b;
	font-size: 21px;
	line-height: 1.48;
	font-weight: 400;
}

.hero-actions--email {
	display: block;
	width: min(100%, 562px);
	margin-top: 34px;
}

.hero-email-form {
	display: block;
}

.hero-email-label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.hero-email-control {
	grid-template-columns: 28px minmax(0, 1fr) 207px;
	align-items: center;
	gap: 12px;
	height: 62px;
	padding: 0 4px 0 17px;
	border: 1px solid #e8eef8;
	border-radius: 10px;
	background: rgba(255, 255, 255, .98);
	box-shadow: 0 16px 42px rgba(33, 54, 112, .09);
}

.hero-email-control:focus-within {
	border-color: color-mix(in srgb, var(--accent) 45%, transparent);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 10%, transparent), 0 18px 44px rgba(33, 54, 112, .11);
}

.hero-email-icon {
	width: 24px;
	height: 24px;
	color: #6f7b9e;
}

.hero-email-control input {
	height: 58px;
	padding: 0;
	color: #0a123f;
	font-size: 17px;
	font-weight: 400;
}

.hero-email-control input::placeholder {
	color: #4d597c;
	font-weight: 400;
}

.hero-email-control button {
	min-height: 56px;
	padding: 0 20px;
	border-radius: 8px;
	background: linear-gradient(180deg, var(--accent) 0%, var(--accent-3) 100%);
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	box-shadow: 0 12px 24px color-mix(in srgb, var(--accent) 28%, transparent);
}

.hero-email-control button,
.hero-email-control button span,
.hero-email-control button .landing-button-icon {
	color: #fff;
}

.hero-email-control button:hover,
.hero-email-control button:focus-visible {
	background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 88%, #ffffff) 0%, var(--accent-3) 100%);
}

.hero-trust-list {
	flex-wrap: nowrap;
	gap: 26px;
	margin-top: 41px;
	color: #35436d;
	font-size: 15px;
	font-weight: 400;
}

.hero-trust-list .landing-icon {
	width: 22px;
	height: 22px;
	padding: 5px;
	background: linear-gradient(180deg, var(--accent) 0%, var(--accent-3) 100%);
}

.hero-trust-list li {
	white-space: nowrap;
}

.hero-product {
	padding: 0;
}

.hero-label-scene {
	position: relative;
	width: min(100%, 805px);
	min-height: 610px;
	margin-left: auto;
}

.hero-label-board {
	position: absolute;
	top: 0;
	right: 88px;
	z-index: 2;
	width: 500px;
	height: 385px;
	padding: 16px;
	border: 1.5px solid transparent;
	border-radius: 36px;
	background:
		linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) padding-box,
		linear-gradient(112deg, var(--accent) 0%, var(--accent-2) 100%) border-box;
	box-shadow: 0 28px 80px rgba(31, 47, 94, .1);
	transform: rotate(4deg);
}

.hero-label-sheet {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 27px;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(229, 234, 244, .72);
}

.hero-label-logo {
	position: absolute;
	top: 31px;
	left: 50px;
	width: 142px;
	height: auto;
}

.hero-generate-button {
	position: absolute;
	top: 30px;
	right: -76px;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 210px;
	height: 64px;
	border-radius: 11px;
	background: linear-gradient(180deg, var(--accent) 0%, var(--accent-3) 100%);
	color: #fff;
	font-size: 21px;
	font-weight: 500;
	box-shadow: 0 18px 34px color-mix(in srgb, var(--accent) 28%, transparent);
	transform: rotate(1.5deg);
}

.label-line,
.label-stamp,
.label-barcode {
	position: absolute;
	display: block;
	border-radius: 999px;
	background: #e1e4eb;
}

.label-line--one {
	top: 104px;
	left: 48px;
	width: 184px;
	height: 12px;
}

.label-line--two {
	top: 128px;
	left: 47px;
	width: 198px;
	height: 12px;
}

.label-line--three {
	top: 152px;
	left: 47px;
	width: 123px;
	height: 12px;
}

.label-stamp {
	top: 128px;
	right: 56px;
	width: 56px;
	height: 64px;
	border-radius: 7px;
	background: linear-gradient(180deg, #edf0f5, #e5e8ef);
}

.label-barcode {
	left: 50px;
	right: 58px;
	top: 205px;
	height: 86px;
	border-radius: 0;
	background:
		repeating-linear-gradient(
			90deg,
			#d7dbe5 0 3px,
			transparent 3px 8px,
			#d7dbe5 8px 10px,
			transparent 10px 15px,
			#d7dbe5 15px 19px,
			transparent 19px 25px
		);
}

.label-line--four {
	left: 46px;
	bottom: 64px;
	width: 248px;
	height: 10px;
}

.label-line--five {
	left: 46px;
	bottom: 42px;
	width: 126px;
	height: 10px;
}

.label-line--six {
	right: 58px;
	bottom: 42px;
	width: 174px;
	height: 10px;
}

.hero-rate-card {
	position: absolute;
	z-index: 5;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	width: 188px;
	min-height: 108px;
	padding: 18px 20px;
	border: 1px solid rgba(229, 235, 246, .8);
	border-radius: 13px;
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 24px 52px rgba(28, 43, 88, .1);
}

.hero-rate-card img {
	width: 48px;
	height: auto;
}

.hero-rate-card span {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.hero-rate-card strong {
	color: #06103f;
	font-size: 18px;
	line-height: 1.1;
	font-weight: 700;
}

.hero-rate-card small {
	color: #7380a2;
	font-size: 12px;
	font-weight: 400;
}

.hero-rate-card b {
	color: var(--accent);
	font-size: 18px;
	line-height: 1.12;
	font-weight: 700;
}

.hero-rate-card--correios {
	top: 20px;
	left: 2px;
}

.hero-rate-card--jadlog {
	top: 224px;
	left: -5px;
	transform: rotate(4deg);
}

.hero-rate-card--loggi {
	right: 2px;
	bottom: 166px;
	grid-template-columns: 48px minmax(0, 1fr);
	width: 158px;
	min-height: 102px;
	padding: 16px 18px;
}

.loggi-mark {
	position: relative;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: linear-gradient(140deg, #12c8ff 0%, #0a8fe7 62%, #0967df 100%);
	clip-path: polygon(0 18%, 78% 0, 100% 32%, 74% 38%, 93% 58%, 65% 100%, 53% 76%, 20% 82%, 0 57%);
}

.hero-route-pill {
	position: absolute;
	left: 186px;
	bottom: 67px;
	z-index: 7;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	width: 420px;
	min-height: 58px;
	padding: 0 26px;
	border: 1px solid #e8eef8;
	border-radius: 13px;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 20px 42px rgba(31, 47, 94, .1);
	color: #071040;
}

.hero-route-pill .landing-icon {
	width: 25px;
	height: 25px;
	color: var(--accent);
}

.hero-route-pill strong {
	font-size: 16px;
	font-weight: 500;
	white-space: nowrap;
}

.hero-box {
	position: absolute;
	z-index: 3;
	width: 146px;
	height: 96px;
	border-radius: 3px;
	background:
		linear-gradient(90deg, rgba(103, 55, 16, .14), transparent 26%),
		linear-gradient(145deg, #dfa366 0%, #c98749 56%, #a96634 100%);
	box-shadow: 0 28px 28px rgba(77, 46, 24, .16);
	transform-style: preserve-3d;
}

.hero-box::before,
.hero-box::after,
.hero-box span,
.hero-box i {
	content: "";
	position: absolute;
	display: block;
}

.hero-box::before {
	left: 0;
	top: -28px;
	width: 100%;
	height: 28px;
	border-radius: 4px 4px 0 0;
	background: linear-gradient(160deg, #f1be82, #d99958);
	transform: skewX(-28deg);
	transform-origin: left bottom;
}

.hero-box::after {
	right: -34px;
	top: -13px;
	width: 34px;
	height: 95px;
	border-radius: 0 3px 3px 0;
	background: linear-gradient(160deg, #c37a3d, #9b5a2a);
	transform: skewY(-22deg);
	transform-origin: left top;
}

.hero-box span {
	top: -25px;
	left: 54px;
	width: 34px;
	height: 120px;
	background: linear-gradient(180deg, rgba(125, 75, 35, .38), rgba(125, 75, 35, .12));
}

.hero-box i {
	right: 16px;
	bottom: 12px;
	width: 30px;
	height: 27px;
	border: 2px solid rgba(82, 48, 23, .42);
	border-top: 0;
	opacity: .55;
}

.hero-box i::before,
.hero-box i::after {
	content: "";
	position: absolute;
	top: -7px;
	width: 7px;
	height: 7px;
	border: 2px solid rgba(82, 48, 23, .42);
	border-bottom: 0;
}

.hero-box i::before {
	left: 2px;
}

.hero-box i::after {
	right: 2px;
}

.hero-box--left {
	left: 20px;
	bottom: 98px;
	transform: rotate(-1deg) scale(.98);
}

.hero-box-stack {
	position: absolute;
	right: 10px;
	bottom: 28px;
	z-index: 4;
	width: 190px;
	height: 142px;
}

.hero-box--right {
	right: 44px;
	bottom: 18px;
}

.hero-box--small {
	right: -3px;
	bottom: 7px;
	width: 84px;
	height: 72px;
	transform: scale(.9);
}

.hero-box--small::before {
	top: -21px;
	height: 21px;
}

.hero-box--small::after {
	right: -25px;
	top: -10px;
	width: 25px;
	height: 72px;
}

.hero-box--small span {
	top: -19px;
	left: 30px;
	width: 22px;
	height: 90px;
}

.hero-box--small i {
	right: 8px;
	bottom: 8px;
	width: 20px;
	height: 21px;
}

.trust-bar-section {
	padding-top: 10px;
}

@media (max-width: 1360px) {
	.landing-header__inner {
		width: min(calc(100% - 48px), var(--container));
	}

	.landing-nav {
		gap: 18px;
	}

	.landing-header-cta {
		min-width: 184px;
	}

	.hero-section .landing-container {
		width: min(calc(100% - 48px), var(--container));
	}

	.hero-grid {
		grid-template-columns: minmax(410px, .82fr) minmax(0, 1.18fr);
		gap: 22px;
	}

	.hero-label-scene {
		transform: scale(.86);
		transform-origin: top right;
		margin-bottom: -86px;
	}
}

@media (max-width: 1180px) {
	.landing-header__inner {
		min-height: 82px;
		padding-inline: 24px;
	}

	.landing-brand img {
		width: 140px;
	}

	.landing-nav {
		gap: 16px;
	}

	.landing-nav a,
	.landing-login {
		font-size: 15px;
	}

	.landing-header-cta {
		min-width: 160px;
		min-height: 52px;
		font-size: 15px;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.hero-copy {
		max-width: 720px;
		padding-top: 42px;
	}

	.hero-label-scene {
		width: 805px;
		max-width: 100%;
		margin-inline: auto;
		transform: none;
	}
}

@media (max-width: 980px) {
	.landing-header {
		padding-top: 14px;
	}

	.landing-header__inner {
		width: min(calc(100% - 28px), 940px);
		grid-template-columns: minmax(0, auto) auto;
	}

	.landing-header__actions {
		gap: 10px;
	}

	.landing-menu-button {
		width: 52px;
		height: 52px;
	}

	.hero-section {
		padding-top: 38px;
	}

	.hero-section .landing-container {
		width: min(calc(100% - 32px), 820px);
	}

	.hero-copy {
		padding-top: 0;
	}

	.hero-copy h1 {
		font-size: clamp(42px, 8vw, 58px);
	}

	.hero-copy h1 span {
		white-space: normal;
	}

	.hero-label-scene {
		min-height: 560px;
		transform: scale(.9);
		transform-origin: top center;
		margin-bottom: -54px;
	}
}

@media (max-width: 820px) {
	.hero-email-control {
		grid-template-columns: 28px minmax(0, 1fr);
		height: auto;
		padding: 12px;
	}

	.hero-email-control button {
		grid-column: 1 / -1;
		width: 100%;
	}

	.hero-trust-list {
		grid-template-columns: 1fr;
		gap: 13px;
	}

	.hero-label-scene {
		left: 50%;
		width: 760px;
		max-width: none;
		min-height: 515px;
		transform: translateX(-50%) scale(.72);
		transform-origin: top center;
		margin-bottom: -136px;
	}

	.hero-product {
		overflow: hidden;
	}
}

@media (max-width: 560px) {
	.landing-header__inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: calc(100vw - 18px);
		max-width: calc(100vw - 18px);
		min-height: 68px;
		padding: 0 10px 0 14px;
		border-radius: 15px;
	}

	.landing-header__actions {
		position: static;
		margin-left: auto;
		max-width: none;
		gap: 8px;
		z-index: auto;
	}

	.landing-brand img {
		width: 108px;
	}

	.landing-header-cta {
		display: none;
	}

	.landing-menu-button {
		display: inline-flex;
		width: 44px;
		height: 44px;
	}

	.hero-section {
		padding-top: 32px;
		padding-bottom: 36px;
	}

	.hero-section .landing-container {
		width: calc(100vw - 28px);
		max-width: calc(100vw - 28px);
	}

	.hero-grid {
		max-width: calc(100vw - 28px);
	}

	.hero-copy h1 {
		font-size: clamp(34px, 9.8vw, 42px);
	}

	.hero-lead {
		max-width: 100%;
		margin-top: 20px;
		font-size: 17px;
		overflow-wrap: break-word;
	}

	.hero-copy,
	.hero-actions--email,
	.hero-email-form,
	.hero-email-control {
		width: 100%;
		max-width: calc(100vw - 28px);
	}

	.hero-copy {
		overflow: hidden;
	}

	.hero-email-control input {
		height: 46px;
	}

	.hero-email-control button {
		max-width: 100%;
	}

	.hero-label-scene {
		width: 700px;
		min-height: 492px;
		transform: translateX(-50%) scale(.58);
		margin-top: 18px;
		margin-bottom: -188px;
	}

	.hero-rate-card--jadlog {
		left: 10px;
	}

	.hero-rate-card--loggi {
		right: 40px;
	}
}

@media (max-width: 420px) {
	.hero-label-scene {
		transform: translateX(-50%) scale(.5);
		margin-bottom: -228px;
	}

	.hero-route-pill {
		left: 160px;
		width: 430px;
	}
}

/* Hero raster composition using provided separated assets */
.hero-asset-scene {
	position: relative;
	width: min(100%, 640px);
	min-height: 500px;
	margin-left: auto;
}

.hero-asset {
	position: absolute;
	display: block;
	max-width: none;
	height: auto;
	pointer-events: none;
	user-select: none;
}

.hero-asset--label {
	top: 0;
	right: 0;
	z-index: 2;
	width: 520px;
}

.hero-asset--correios {
	top: 44px;
	left: 78px;
	z-index: 5;
	width: 122px;
}

.hero-asset--jadlog {
	top: 206px;
	left: 112px;
	z-index: 5;
	width: 148px;
	transform: rotate(4deg);
	transform-origin: center;
}

.hero-asset--boxes {
	right: 0;
	bottom: 0;
	z-index: 3;
	width: 435px;
}

.hero-asset--route {
	right: 26px;
	bottom: 55px;
	z-index: 7;
	width: 358px;
}

.hero-asset--loggi {
	right: 58px;
	top: 298px;
	z-index: 6;
	width: 128px;
}

.hero-asset--correios,
.hero-asset--jadlog,
.hero-asset--loggi {
	border: 1px solid rgba(224, 231, 245, .86);
	border-radius: 14px;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 22px 46px rgba(26, 42, 92, .11);
}

.hero-asset--route {
	border: 1px solid rgba(224, 231, 245, .92);
	border-radius: 36px;
	background: rgba(255, 255, 255, .98);
	box-shadow: 0 18px 42px rgba(26, 42, 92, .1);
}

@media (max-width: 1360px) {
	.hero-asset-scene {
		width: min(100%, 620px);
	}
}

@media (max-width: 1180px) {
	.hero-asset-scene {
		width: 640px;
		max-width: 100%;
		margin-inline: auto;
	}
}

@media (max-width: 980px) {
	.hero-asset-scene {
		left: 50%;
		width: 640px;
		max-width: none;
		min-height: 470px;
		transform: translateX(-50%) scale(.9);
		transform-origin: top center;
		margin-bottom: -30px;
	}
}

@media (max-width: 820px) {
	.hero-asset-scene {
		transform: translateX(-50%) scale(.78);
		margin-bottom: -110px;
	}
}

@media (max-width: 560px) {
	.hero-asset-scene {
		width: 640px;
		min-height: 445px;
		margin-top: 18px;
		margin-bottom: -208px;
		transform: translateX(-50%) scale(.56);
	}

	.landing-header__actions {
		display: flex !important;
		align-items: center;
		justify-content: flex-end;
	}

	.landing-menu-button {
		display: inline-flex !important;
		color: #030936;
	}

	.hero-copy {
		overflow: visible;
	}

	.hero-lead {
		width: 100%;
		white-space: normal !important;
	}
}

@media (max-width: 420px) {
	.hero-asset-scene {
		transform: translateX(-50%) scale(.5);
		margin-bottom: -245px;
	}
}

/* Home hero matching the signup-first composition */
:root {
	--home-shell: min(calc(100% - 48px), var(--container));
	--home-blue: #2457ff;
	--home-blue-dark: #1746f2;
	--home-ink: #050936;
	--home-muted: #566487;
}

body.landing-page {
	background: #f8fbff;
}

body.landing-page::before {
	display: none;
}

.landing-header {
	position: relative;
	top: auto;
	width: 100%;
	padding: 0;
	background: rgba(255, 255, 255, .98);
	border-bottom: 1px solid rgba(226, 232, 242, .9);
	backdrop-filter: none;
}

.landing-header__inner {
	width: var(--home-shell);
	min-height: 82px;
	grid-template-columns: minmax(150px, auto) minmax(0, 1fr) auto;
	gap: 24px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.landing-brand img {
	width: 156px;
	height: auto;
}

.landing-nav {
	gap: clamp(28px, 3vw, 52px);
}

.landing-nav a,
.landing-login,
.landing-mobile-menu a {
	color: var(--home-ink);
	font-size: 17px;
	font-weight: 500;
	line-height: 1;
}

.landing-header__actions {
	gap: 24px;
}

.landing-header-cta {
	min-width: 168px;
	min-height: 46px;
	padding-inline: 18px;
	border-radius: 7px;
	background: var(--home-blue);
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	box-shadow: none;
}

.landing-header-cta:hover,
.landing-header-cta:focus-visible {
	background: var(--home-blue);
	box-shadow: none;
}

.landing-button--text {
	min-height: 60px;
	padding: 0;
	background: transparent;
	color: var(--home-blue);
	box-shadow: none;
	font-weight: 600;
}

.landing-button--text:hover {
	background: transparent;
	color: var(--home-blue-dark);
	box-shadow: none;
}

.hero-section {
	min-height: calc(100vh - 104px);
	padding: 28px 0 40px;
	background: #f8fbff;
	overflow: visible;
}

.hero-section .landing-container {
	width: var(--home-shell);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(580px, 780px) minmax(400px, 450px);
	justify-content: start;
	align-items: start;
	gap: clamp(44px, 4vw, 68px);
}

.hero-copy {
	width: 100%;
	max-width: 800px;
	padding-top: clamp(92px, 11vh, 140px);
	padding-left: 0;
}

.hero-copy h1 {
	max-width: 780px;
	color: var(--home-ink);
	font-size: clamp(44px, 3.15vw, 58px);
	line-height: 1.18;
	font-weight: 700;
	letter-spacing: 0;
	text-wrap: initial;
}

.hero-copy h1 span {
	color: var(--home-blue);
	white-space: nowrap;
}

.hero-copy h1 .hero-title-line {
	color: var(--home-ink);
	white-space: nowrap;
}

.hero-copy h1 .hero-title-line span {
	color: var(--home-blue);
}

.hero-lead {
	max-width: 700px;
	margin-top: 28px;
	color: var(--home-muted);
	font-size: clamp(16px, 1vw, 19px);
	line-height: 1.42;
	font-weight: 400;
}

.hero-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 36px;
}

.hero-primary-cta {
	min-width: 178px;
	min-height: 48px;
	padding-inline: 22px;
	border-radius: 7px;
	background: var(--home-blue);
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	box-shadow: none;
}

.hero-primary-cta:hover,
.hero-primary-cta:focus-visible {
	background: var(--home-blue);
	box-shadow: none;
}

.hero-primary-cta,
.hero-primary-cta:visited,
.hero-primary-cta span,
.hero-primary-cta .landing-button-icon {
	color: #fff;
}

.hero-demo-cta {
	min-height: 48px;
	font-size: 15px;
}

.hero-trust-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 30px;
	margin-top: 52px;
	color: #435174;
	font-size: 14px;
	font-weight: 500;
}

.hero-trust-list li {
	white-space: normal;
}

.hero-trust-list .landing-icon {
	width: 26px;
	height: 26px;
	padding: 5px;
	background: linear-gradient(180deg, var(--home-blue) 0%, var(--home-blue-dark) 100%);
}

.hero-product {
	grid-column: auto;
	width: 100%;
	margin-top: 0;
	padding: 0;
	overflow: visible;
}

.hero-signup-card {
	width: min(100%, 450px);
	min-width: 0;
	margin-left: auto;
	padding: 24px 28px 42px;
	border: 1px solid rgba(226, 232, 242, .92);
	border-radius: 14px;
	background: rgba(255, 255, 255, .98);
	box-shadow: 0 18px 44px rgba(34, 52, 95, .09);
}

.hero-signup-title {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.hero-signup-form {
	display: grid;
	gap: 15px;
	margin-top: 0;
}

.hero-signup-field {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.hero-signup-field span {
	color: #2f3a5d;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
}

.hero-signup-field input {
	width: 100%;
	height: 42px;
	padding: 0 14px;
	border: 1px solid #d8e0ed;
	border-radius: 8px;
	background: #fff;
	color: var(--home-ink);
	font: inherit;
	font-size: 14px;
	font-weight: 400;
	box-shadow: inset 0 1px 0 rgba(16, 24, 40, .02);
	transition: border-color .16s ease, box-shadow .16s ease;
}

.hero-signup-field input::placeholder {
	color: #8b98b5;
	opacity: 1;
}

.hero-signup-field input:focus {
	border-color: var(--home-blue);
	box-shadow: 0 0 0 3px rgba(36, 87, 255, .13);
	outline: 0;
}

.hero-signup-terms {
	display: block;
	margin: 2px 0 0;
	color: #4b5b7d;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
}

.hero-signup-terms a,
.hero-signup-login a {
	color: var(--home-blue);
	font-weight: 600;
	text-decoration: none;
}

.hero-signup-submit {
	width: 100%;
	min-height: 46px;
	margin-top: 0;
	border: 0;
	border-radius: 7px;
	background: linear-gradient(180deg, var(--home-blue) 0%, var(--home-blue-dark) 100%);
	color: #fff;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
	cursor: pointer;
	box-shadow: 0 14px 28px rgba(36, 87, 255, .23);
	transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.hero-signup-submit:hover {
	background: linear-gradient(180deg, #3264ff 0%, var(--home-blue-dark) 100%);
	transform: translateY(-1px);
}

.hero-signup-login {
	margin: 18px 0 0;
	color: #4b5b7d;
	font-size: 13px;
	font-weight: 500;
	text-align: center;
}

.trust-bar-section {
	padding-top: 44px;
}

/* Base full-width section backgrounds. */
#conteudo {
	background: #f8fbff;
}

.hero-section {
	background: #f8fbff;
}

.simulator-section {
	background: #f3f7fc;
}

.features-tabs-section {
	background: #ffffff;
}

.integrations-section {
	background: #f5f9f6;
}

.how-section {
	background: #f7f6ff;
}

.plans-section {
	background: #f4f8ff;
}

.logistics-simple-section {
	background: #f8fbff;
}

.about-section {
	background: #f8fbff;
}

.intermediate-cta-section {
	background: #ffffff;
}

.faq-section {
	background: #f7fafc;
}

.landing-footer {
	background: #f3f6fb;
}

/* Discount freight calculator */
.simulator-section {
	padding: 54px 0 68px;
	background: #f3f7fc;
}

.simulator-section .freight-simulator-shell {
	width: min(calc(100% - 48px), var(--container));
}

.simulator-section .freight-simulator-heading {
	max-width: 900px;
	margin: 0 auto 30px;
	text-align: center;
}

.simulator-section .freight-simulator-eyebrow {
	margin: 0 0 14px;
	color: var(--home-blue);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .22em;
	line-height: 1.2;
}

.simulator-section .freight-simulator-heading h2 {
	margin: 0;
	color: #071247;
	font-size: clamp(38px, 3.6vw, 52px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: 0;
}

.simulator-section .freight-simulator-heading > p:not(.freight-simulator-eyebrow) {
	max-width: 760px;
	margin: 14px auto 0;
	color: #5f6b8f;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.45;
}

.simulator-section .freight-discount-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(250px, 294px);
	gap: 44px;
	align-items: center;
	width: 100%;
	min-height: 210px;
	padding: 32px 48px;
	border: 2px solid transparent;
	border-radius: 18px;
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(100deg, #2457ff 0%, #4fe0a5 100%) border-box;
	box-shadow: 0 20px 54px rgba(31, 56, 112, .08);
}

.simulator-section .freight-discount-copy span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 14px;
	border: 1px solid rgba(36, 87, 255, .28);
	border-radius: 999px;
	background: #f1f4ff;
	color: var(--home-blue);
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
}

.simulator-section .freight-discount-copy h3 {
	margin: 24px 0 0;
	color: #071247;
	font-size: clamp(26px, 2.4vw, 34px);
	font-weight: 800;
	line-height: 1.14;
	letter-spacing: 0;
}

.simulator-section .freight-discount-copy p {
	max-width: 660px;
	margin: 16px 0 0;
	color: #65708f;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.45;
}

.simulator-section .freight-coupon-box {
	display: grid;
	gap: 12px;
	justify-items: center;
	padding: 20px 24px 24px;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 18px 40px rgba(31, 56, 112, .1);
}

.simulator-section .freight-coupon-box > span {
	color: #697397;
	font-size: 15px;
	font-weight: 700;
}

.simulator-section .freight-coupon-box strong {
	width: 100%;
	min-height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px dashed #9cadcf;
	border-radius: 8px;
	color: var(--home-blue);
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 0;
}

.simulator-section .freight-coupon-box button {
	width: 100%;
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 0;
	border-radius: 8px;
	background: var(--home-blue);
	color: #fff;
	font: inherit;
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
	box-shadow: none;
}

.simulator-section .freight-coupon-box button .landing-icon {
	width: 18px;
	height: 18px;
}

.simulator-section .freight-simulator-card {
	width: 100%;
	margin-top: 16px;
	padding: 26px 38px 36px;
	border: 1px solid #e2e9f4;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 22px 58px rgba(31, 56, 112, .09);
}

.simulator-section .freight-simulator-form {
	display: grid;
	gap: 24px;
	margin-top: 0;
}

.simulator-section .freight-cep-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 50px minmax(0, 1fr);
	gap: 42px;
	align-items: end;
}

.simulator-section .freight-package-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 30px;
	margin-top: 0;
}

.simulator-section .freight-field {
	position: relative;
	display: grid;
	gap: 9px;
	min-width: 0;
	color: #071247;
	font-size: 14px;
	font-weight: 800;
}

.simulator-section .freight-field input {
	width: 100%;
	min-width: 0;
	height: 50px;
	padding: 0 17px;
	border: 1px solid #d5deec;
	border-radius: 8px;
	background: #fff;
	color: #071247;
	font: inherit;
	font-size: 17px;
	font-weight: 600;
	box-shadow: none;
}

.simulator-section .freight-cep-row .freight-field input {
	height: 50px;
	padding-right: 46px;
	font-size: 18px;
}

.simulator-section .freight-field input::placeholder {
	color: #7c89a9;
	font-weight: 600;
}

.simulator-section .freight-field-icon {
	position: absolute;
	right: 16px;
	bottom: 14px;
	width: 20px;
	height: 20px;
	color: #5b66a0;
	pointer-events: none;
}

.simulator-section .freight-swap-button {
	width: 50px;
	height: 50px;
	align-self: end;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #d5deec;
	border-radius: 8px;
	background: #fff;
	color: var(--home-blue);
	box-shadow: none;
}

.simulator-section .freight-swap-button .landing-icon {
	width: 23px;
	height: 23px;
}

.simulator-section .freight-submit-button {
	min-width: 260px;
	min-height: 48px;
	justify-self: center;
	margin: 0;
	padding: 0 28px;
	border-radius: 8px;
	background: var(--home-blue);
	color: #fff;
	font-size: 17px;
	font-weight: 800;
	box-shadow: none;
}

.simulator-section .freight-submit-button::after {
	content: none;
}

.simulator-section .freight-results {
	display: grid;
	gap: 0;
	margin-top: 22px;
	padding-top: 0;
	border-top: 0;
}

.simulator-section .freight-results.is-empty:not(.has-message) {
	display: none;
}

.simulator-section .freight-results-empty {
	margin: 0;
	padding: 14px 16px;
	border: 1px dashed #cfd9ea;
	border-radius: 8px;
	background: #f8fbff;
	color: #64748b;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.simulator-section .freight-result-row {
	display: grid;
	grid-template-columns: minmax(260px, 1.25fr) minmax(220px, .8fr) auto 26px;
	gap: 22px;
	align-items: center;
	min-height: 70px;
	padding: 11px 22px;
	border: 1px solid #dfe7f3;
	border-radius: 8px;
	background: #fff;
	box-shadow: none;
}

.simulator-section .freight-result-row + .freight-result-row {
	margin-top: -1px;
}

.simulator-section .freight-carrier {
	gap: 20px;
}

.simulator-section .freight-carrier strong {
	font-size: 18px;
	font-weight: 800;
}

.simulator-section .carrier-service {
	margin-left: 8px;
	font-size: 14px;
	font-weight: 700;
}

.simulator-section .carrier-mark {
	width: 58px;
	height: 38px;
}

.simulator-section .carrier-mark--jadlog {
	width: 38px;
	height: 38px;
}

.simulator-section .carrier-mark--jadlog::before,
.simulator-section .carrier-mark--jadlog::after {
	left: 20px;
	top: 7px;
	height: 29px;
}

.simulator-section .carrier-mark--correios::before,
.simulator-section .carrier-mark--correios::after {
	width: 32px;
	height: 18px;
}

.simulator-section .carrier-mark--correios::before {
	left: 2px;
	top: 18px;
}

.simulator-section .carrier-mark--correios::after {
	right: 2px;
	top: 7px;
}

.simulator-section .freight-deadline {
	grid-template-columns: 30px minmax(0, 1fr);
	gap: 12px;
}

.simulator-section .freight-deadline::before {
	width: 22px;
	height: 22px;
	border: 2px solid #677299;
	border-top-width: 5px;
	border-radius: 5px;
}

.simulator-section .freight-deadline span {
	color: #657095;
	font-size: 12px;
	font-weight: 700;
}

.simulator-section .freight-deadline strong {
	font-size: 16px;
	font-weight: 700;
}

.simulator-section .freight-price {
	color: var(--home-blue);
	font-size: 18px;
	font-weight: 800;
}

.simulator-section .freight-result-arrow .landing-icon {
	width: 22px;
	height: 22px;
}

@media (max-width: 980px) {
	.simulator-section .freight-discount-card {
		grid-template-columns: 1fr;
		padding: 28px;
	}

	.simulator-section .freight-coupon-box {
		max-width: 320px;
	}

	.simulator-section .freight-cep-row {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.simulator-section .freight-swap-button {
		justify-self: center;
	}

	.simulator-section .freight-package-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.simulator-section .freight-package-grid .freight-field:last-child {
		grid-column: 1 / -1;
	}

	.simulator-section .freight-result-row {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.simulator-section .freight-deadline {
		grid-column: 1 / 2;
		padding-left: 58px;
	}

	.simulator-section .freight-price {
		grid-column: 2 / 3;
		grid-row: 1 / 3;
	}

	.simulator-section .freight-result-arrow {
		grid-column: 2 / 3;
		grid-row: 3 / 4;
	}
}

@media (max-width: 560px) {
	.simulator-section {
		padding: 42px 0 52px;
	}

	.simulator-section .freight-simulator-shell {
		width: calc(100% - 20px);
	}

	.simulator-section .freight-simulator-eyebrow {
		font-size: 12px;
	}

	.simulator-section .freight-simulator-heading h2 {
		font-size: 31px;
	}

	.simulator-section .freight-simulator-heading > p:not(.freight-simulator-eyebrow),
	.simulator-section .freight-discount-copy p {
		font-size: 16px;
	}

	.simulator-section .freight-discount-card,
	.simulator-section .freight-simulator-card {
		padding: 22px 16px;
		border-radius: 14px;
	}

	.simulator-section .freight-discount-copy h3 {
		font-size: 24px;
	}

	.simulator-section .freight-coupon-box strong {
		font-size: 24px;
	}

	.simulator-section .freight-package-grid {
		grid-template-columns: 1fr;
	}

	.simulator-section .freight-submit-button {
		width: 100%;
		min-width: 0;
	}

	.simulator-section .freight-result-row {
		grid-template-columns: 1fr;
		padding: 14px;
	}

	.simulator-section .freight-deadline,
	.simulator-section .freight-price,
	.simulator-section .freight-result-arrow {
		grid-column: auto;
		grid-row: auto;
		padding-left: 0;
		justify-self: start;
	}
}

@media (min-width: 1181px) and (max-width: 1800px) {
	.landing-header {
		padding-top: 0;
	}

	.landing-header__inner {
		min-height: 82px;
		gap: 24px;
		padding: 0;
	}

	.landing-brand img {
		width: 156px;
	}

	.landing-nav {
		gap: clamp(28px, 3vw, 52px);
	}

	.landing-nav a,
	.landing-login {
		font-size: 17px;
	}

	.landing-header__actions {
		gap: 24px;
	}

	.landing-header-cta {
		min-width: 168px;
		min-height: 46px;
		font-size: 15px;
	}

	.hero-section {
		min-height: calc(100vh - 104px);
		padding-top: 28px;
	}

	.hero-grid {
		grid-template-columns: minmax(580px, 780px) minmax(400px, 450px);
		gap: clamp(44px, 4vw, 68px);
	}

	.hero-copy {
		max-width: 800px;
		padding-top: clamp(92px, 11vh, 140px);
		padding-left: 0;
	}

	.hero-copy h1 {
		max-width: 780px;
		font-size: clamp(44px, 3.15vw, 58px);
	}

	.hero-lead {
		max-width: 700px;
		margin-top: 28px;
		font-size: clamp(16px, 1vw, 19px);
	}

	.hero-actions {
		margin-top: 36px;
	}

	.hero-primary-cta {
		min-width: 178px;
		min-height: 48px;
		font-size: 15px;
	}

	.hero-demo-cta {
		min-height: 48px;
		font-size: 15px;
	}

	.hero-trust-list {
		gap: 16px 30px;
		margin-top: 52px;
		font-size: 14px;
	}

	.hero-signup-card {
		width: min(100%, 450px);
		padding: 24px 28px 42px;
	}

	.hero-signup-form {
		gap: 15px;
	}

	.hero-signup-field span {
		font-size: 14px;
	}

	.hero-signup-field input {
		height: 42px;
		font-size: 14px;
	}

	.hero-signup-terms,
	.hero-signup-login {
		font-size: 13px;
	}

	.hero-signup-submit {
		min-height: 46px;
		font-size: 14px;
	}

	.hero-signup-login {
		margin-top: 18px;
	}
}

@media (max-width: 1360px) {
	.landing-header__inner {
		gap: 24px;
		padding: 0;
	}

	.landing-brand img {
		width: 158px;
	}

	.landing-nav {
		gap: 28px;
	}

	.landing-nav a,
	.landing-login {
		font-size: 17px;
	}

	.landing-header__actions {
		gap: 18px;
	}

	.landing-header-cta {
		min-width: 190px;
		min-height: 60px;
		font-size: 17px;
	}

	.hero-grid {
		grid-template-columns: minmax(520px, 700px) minmax(500px, 560px);
	}

	.hero-copy {
		padding-left: clamp(0px, 2.2vw, 38px);
	}

	.hero-trust-list {
		gap: 14px 24px;
	}
}

@media (max-width: 1180px) {
	.hero-section {
		min-height: 0;
		padding-top: 48px;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.hero-copy {
		max-width: 760px;
		padding-top: 34px;
		padding-left: 0;
	}

	.hero-signup-card {
		margin-inline: 0;
	}
}

@media (max-width: 980px) {
	.landing-header {
		padding-top: 0;
	}

	.landing-header__inner {
		width: min(calc(100% - 28px), 940px);
		min-height: 76px;
		grid-template-columns: minmax(0, auto) auto;
		padding: 0;
	}

	.landing-brand img {
		width: 132px;
	}

	.landing-menu-button {
		display: inline-flex;
	}

	.hero-section .landing-container {
		width: min(calc(100% - 32px), 820px);
	}

	.hero-copy h1 {
		font-size: clamp(42px, 8vw, 58px);
	}

	.hero-copy h1 span {
		white-space: normal;
	}

	.hero-copy h1 .hero-title-line {
		white-space: normal;
	}

	.hero-actions {
		gap: 14px;
	}

	.hero-primary-cta,
	.hero-demo-cta {
		min-height: 62px;
	}
}

@media (max-width: 820px) {
	.hero-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.hero-actions .landing-button {
		width: 100%;
	}

	.hero-demo-cta {
		justify-self: start;
		width: auto;
	}

	.hero-trust-list {
		display: grid;
		grid-template-columns: 1fr;
		gap: 13px;
		margin-top: 32px;
	}
}

@media (max-width: 560px) {
	body.landing-page {
		width: 100%;
		max-width: 100%;
		overflow-x: hidden;
	}

	.landing-header__inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: calc(100vw - 18px);
		max-width: calc(100vw - 18px);
		min-height: 68px;
		gap: 12px;
		overflow: visible;
	}

	.landing-brand img {
		width: 108px;
	}

	.landing-header__actions {
		position: static;
		display: flex !important;
		align-items: center;
		justify-content: flex-end;
		margin-left: auto;
		gap: 8px;
	}

	.landing-login,
	.landing-header-cta {
		display: none !important;
	}

	.landing-menu-button {
		display: inline-flex !important;
		width: 44px;
		height: 44px;
	}

	.hero-section {
		padding-top: 30px;
		padding-bottom: 36px;
	}

	.hero-section .landing-container {
		width: 100%;
		max-width: 100%;
		padding-inline: 14px;
	}

	.hero-grid,
	.hero-copy,
	.hero-product,
	.hero-signup-card,
	.hero-actions,
	.hero-trust-list {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.hero-copy h1 {
		font-size: clamp(30px, 8.4vw, 34px);
		overflow-wrap: anywhere;
	}

	.hero-lead {
		max-width: 100%;
		margin-top: 20px;
		font-size: 17px;
	}

	.hero-actions {
		margin-top: 24px;
	}

	.hero-primary-cta {
		min-width: 0;
		min-height: 56px;
		font-size: 16px;
	}

	.hero-demo-cta {
		min-height: 44px;
		font-size: 16px;
	}

	.hero-signup-card {
		padding: 24px 18px;
		border-radius: 14px;
	}

	.hero-signup-form {
		gap: 15px;
	}

	.hero-signup-field input {
		height: 48px;
	}

}

@media (min-width: 561px) {
	.hero-signup-field input {
		height: 46px;
	}
}

@media (min-width: 561px) and (max-width: 1180px) {
	.hero-signup-card {
		width: min(100%, 560px);
		margin-inline: auto;
	}
}

/* Freight simulator final alignment */
.simulator-section {
	padding: 38px 0 64px;
}

.simulator-section .freight-simulator-shell {
	width: min(calc(100% - 96px), 1080px);
}

.simulator-section .freight-simulator-heading {
	max-width: 860px;
	margin: 0 auto 48px;
	text-align: center;
}

.simulator-section .freight-simulator-eyebrow {
	margin: 0 0 16px;
	color: #2457ff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .24em;
	line-height: 1.2;
}

.simulator-section .freight-simulator-heading h2 {
	font-size: clamp(36px, 3.15vw, 48px);
	line-height: 1.06;
}

.simulator-section .freight-simulator-heading > p:not(.freight-simulator-eyebrow) {
	max-width: 720px;
	margin-top: 12px;
	font-size: 17px;
	line-height: 1.45;
}

.simulator-section .freight-discount-card {
	grid-template-columns: minmax(0, 1fr) 294px;
	gap: 44px;
	min-height: 262px;
	padding: 32px 48px;
}

.simulator-section .freight-discount-copy span {
	min-height: 30px;
	padding-inline: 14px;
	font-size: 14px;
}

.simulator-section .freight-discount-copy h3 {
	margin-top: 24px;
	font-size: clamp(27px, 2.35vw, 33px);
	line-height: 1.14;
}

.simulator-section .freight-discount-copy p {
	margin-top: 16px;
	font-size: 17px;
	line-height: 1.45;
}

.simulator-section .freight-coupon-box {
	padding: 20px 24px 24px;
}

.simulator-section .freight-coupon-box strong {
	min-height: 58px;
	font-size: 28px;
}

.simulator-section .freight-coupon-box button {
	min-height: 48px;
	font-size: 16px;
}

.simulator-section .freight-simulator-card {
	margin-top: 14px;
	padding: 27px 38px 36px;
}

.simulator-section .freight-simulator-form {
	gap: 24px;
}

.simulator-section .freight-cep-row {
	grid-template-columns: minmax(0, 1fr) 50px minmax(0, 1fr);
	gap: 42px;
}

.simulator-section .freight-package-grid {
	gap: 30px;
}

.simulator-section .freight-field {
	gap: 9px;
	font-size: 14px;
}

.simulator-section .freight-field input,
.simulator-section .freight-cep-row .freight-field input,
.simulator-section .freight-swap-button {
	height: 50px;
}

.simulator-section .freight-field input {
	font-size: 17px;
}

.simulator-section .freight-cep-row .freight-field input {
	font-size: 18px;
}

.simulator-section .freight-submit-button {
	min-width: 260px;
	min-height: 48px;
	font-size: 17px;
}

.simulator-section .freight-results {
	margin-top: 18px;
}

.simulator-section .freight-result-row {
	min-height: 70px;
	padding: 11px 22px;
}

@media (max-width: 1180px) {
	.simulator-section .freight-simulator-shell {
		width: min(calc(100% - 48px), 1080px);
	}
}

@media (max-width: 980px) {
	.simulator-section {
		padding: 44px 0 56px;
	}

	.simulator-section .freight-simulator-shell {
		width: min(calc(100% - 32px), 820px);
	}

	.simulator-section .freight-simulator-heading h2 {
		font-size: clamp(32px, 6.6vw, 42px);
	}

	.simulator-section .freight-discount-card {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 28px;
	}

	.simulator-section .freight-cep-row {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.simulator-section .freight-swap-button {
		justify-self: center;
	}

	.simulator-section .freight-package-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
}

@media (max-width: 560px) {
	.simulator-section .freight-simulator-shell {
		width: calc(100% - 20px);
	}

	.simulator-section .freight-simulator-eyebrow {
		font-size: 12px;
	}

	.simulator-section .freight-simulator-heading h2 {
		font-size: 30px;
	}

	.simulator-section .freight-simulator-heading > p:not(.freight-simulator-eyebrow),
	.simulator-section .freight-discount-copy p {
		font-size: 16px;
	}

	.simulator-section .freight-discount-card,
	.simulator-section .freight-simulator-card {
		padding: 22px 16px;
		border-radius: 14px;
	}

	.simulator-section .freight-discount-copy h3 {
		font-size: 24px;
	}

	.simulator-section .freight-coupon-box strong {
		font-size: 24px;
	}

	.simulator-section .freight-package-grid {
		grid-template-columns: 1fr;
	}
}

/* Freight simulator single-panel layout */
.simulator-section {
	padding: 34px 0 64px;
	background: #f3f7fc;
}

.simulator-section .freight-simulator-shell {
	width: min(calc(100% - 96px), 1120px);
}

.simulator-section .freight-simulator-heading {
	max-width: 1120px;
	margin: 0 auto 22px;
}

.simulator-section .freight-simulator-eyebrow {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	color: var(--home-blue, #2457ff);
	font-size: 15px;
	letter-spacing: .2em;
	text-align: center;
}

.simulator-section .freight-simulator-heading h2 {
	font-size: clamp(29px, 2.7vw, 35px);
	line-height: 1.12;
}

.simulator-section .freight-simulator-heading > p:not(.freight-simulator-eyebrow) {
	max-width: 1000px;
	margin-top: 12px;
	font-size: 20px;
	line-height: 1.4;
}

.simulator-section .freight-simulator-panel {
	padding: 32px 48px 24px;
	border: 2px solid transparent;
	border-radius: 18px;
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(100deg, #2457ff 0%, #4fe0a5 100%) border-box;
	box-shadow: 0 24px 64px rgba(31, 56, 112, .1);
}

.simulator-section .freight-discount-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 336px;
	gap: 56px;
	align-items: center;
	min-height: 0;
	padding: 0 0 34px;
	border: 0;
	border-bottom: 1px solid #dfe6f1;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.simulator-section .freight-discount-copy span {
	display: none;
}

.simulator-section .freight-discount-copy h3 {
	margin: 0;
	font-size: clamp(29px, 2.7vw, 35px);
	line-height: 1.12;
}

.simulator-section .freight-discount-copy p {
	margin-top: 20px;
	font-size: 20px;
	line-height: 1.45;
}

.simulator-section .freight-discount-copy .freight-discount-note {
	max-width: 560px;
	margin-top: 24px;
	font-size: 13px;
	line-height: 1.45;
}

.simulator-section .freight-discount-note a {
	color: #2457ff;
	font-weight: 700;
	text-decoration: none;
}

.simulator-section .freight-discount-note a:hover,
.simulator-section .freight-discount-note a:focus-visible {
	text-decoration: underline;
}

.simulator-section .freight-coupon-box {
	gap: 14px;
	padding: 22px 34px 24px;
	border-radius: 14px;
}

.simulator-section .freight-coupon-box > span {
	font-size: 16px;
}

.simulator-section .freight-coupon-box strong {
	min-height: 64px;
	font-size: 34px;
}

.simulator-section .freight-coupon-box button {
	min-height: 52px;
	font-size: 19px;
}

.simulator-section .freight-coupon-box button .landing-icon {
	width: 22px;
	height: 22px;
}

.simulator-section .freight-simulator-card {
	margin-top: 0;
	padding: 26px 16px 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.simulator-section .freight-simulator-form {
	gap: 26px;
}

.simulator-section .freight-cep-row {
	grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
	gap: 40px;
}

.simulator-section .freight-package-grid {
	gap: 30px;
}

.simulator-section .freight-field {
	gap: 10px;
	font-size: 15px;
}

.simulator-section .freight-field input,
.simulator-section .freight-cep-row .freight-field input {
	height: 46px;
	font-size: 18px;
}

.simulator-section .freight-cep-row .freight-field input {
	font-size: 19px;
}

.simulator-section .freight-swap-button {
	width: 58px;
	height: 46px;
}

.simulator-section .freight-field-icon {
	bottom: 12px;
	width: 22px;
	height: 22px;
}

.simulator-section .freight-submit-button {
	min-width: 270px;
	min-height: 54px;
	font-size: 20px;
}

.simulator-section .freight-results {
	gap: 0;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid #dfe6f1;
}

.simulator-section .freight-results.is-empty:not(.has-message) {
	display: none;
}

.simulator-section .freight-result-row {
	display: grid;
	grid-template-columns: minmax(300px, 1.2fr) minmax(210px, .75fr) auto 28px;
	gap: 24px;
	min-height: 78px;
	padding: 12px 22px;
	border: 0;
	border-bottom: 1px solid #dfe6f1;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.simulator-section .freight-result-row:last-of-type {
	border-bottom: 0;
}

.simulator-section .freight-result-row + .freight-result-row {
	margin-top: 0;
}

.simulator-section .freight-result-row:hover {
	border-color: #dfe6f1;
	box-shadow: none;
	transform: none;
}

.simulator-section .freight-carrier {
	gap: 22px;
}

.simulator-section .freight-carrier strong {
	font-size: 20px;
}

.simulator-section .carrier-service {
	font-size: 15px;
}

.simulator-section .carrier-mark {
	width: 62px;
	height: 42px;
}

.simulator-section .carrier-mark--jadlog {
	width: 42px;
	height: 42px;
}

.simulator-section .freight-deadline span {
	font-size: 13px;
}

.simulator-section .freight-deadline strong {
	font-size: 18px;
}

.simulator-section .freight-price {
	font-size: 20px;
}

@media (max-width: 1180px) {
	.simulator-section .freight-simulator-shell {
		width: min(calc(100% - 48px), 1120px);
	}
}

@media (max-width: 980px) {
	.simulator-section .freight-simulator-heading h2 {
		font-size: clamp(34px, 7vw, 44px);
	}

	.simulator-section .freight-simulator-heading > p:not(.freight-simulator-eyebrow) {
		font-size: 18px;
	}

	.simulator-section .freight-simulator-panel {
		padding: 28px;
	}

	.simulator-section .freight-discount-card {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.simulator-section .freight-cep-row {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.simulator-section .freight-package-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.simulator-section .freight-result-row {
		grid-template-columns: minmax(0, 1fr) auto;
	}
}

@media (max-width: 560px) {
	.simulator-section .freight-simulator-shell {
		width: calc(100% - 20px);
	}

	.simulator-section .freight-simulator-eyebrow {
		font-size: 12px;
	}

	.simulator-section .freight-simulator-heading h2 {
		font-size: 30px;
	}

	.simulator-section .freight-simulator-panel {
		padding: 22px 16px;
		border-radius: 14px;
	}

	.simulator-section .freight-discount-copy h3 {
		font-size: 24px;
	}

	.simulator-section .freight-discount-copy .freight-discount-note {
		font-size: 12px;
	}

	.simulator-section .freight-coupon-box strong {
		font-size: 24px;
	}

	.simulator-section .freight-simulator-card {
		padding-inline: 0;
	}

	.simulator-section .freight-package-grid {
		grid-template-columns: 1fr;
	}

	.simulator-section .freight-submit-button {
		width: 100%;
		min-width: 0;
	}
}

.simulator-section .freight-simulator-heading {
	text-align: center;
}

.simulator-section .freight-simulator-eyebrow {
	width: max-content;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	color: #2457ff;
	text-align: center;
}

/* Freight quote links and carrier logos */
.simulator-section .freight-simulator-heading h2,
.simulator-section .freight-discount-copy h3 {
	font-size: clamp(29px, 2.7vw, 35px);
	line-height: 1.12;
}

.simulator-section .freight-result-row {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

.simulator-section .freight-result-row:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--accent) 28%, transparent);
	outline-offset: 4px;
}

.simulator-section .carrier-logo {
	width: 92px;
	height: 44px;
	flex: 0 0 92px;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
}

.simulator-section .carrier-logo img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 42px;
	object-fit: contain;
}

.simulator-section .carrier-logo--correios img {
	max-width: 72px;
}

.simulator-section .carrier-logo--jadlog img {
	max-width: 100px;
}

@media (max-width: 560px) {
	.simulator-section .freight-simulator-heading h2,
	.simulator-section .freight-discount-copy h3 {
		font-size: 24px;
	}

	.simulator-section .carrier-logo {
		width: 78px;
		flex-basis: 78px;
	}
}

/* Final correction for freight simulator eyebrow alignment/color. */
.simulator-section .freight-simulator-heading {
	text-align: center !important;
}

.simulator-section .freight-simulator-eyebrow {
	display: table !important;
	width: auto !important;
	margin: 0 auto 20px !important;
	color: #2457ff !important;
	font-size: 17px;
	font-weight: 800;
	text-align: center !important;
}

/* Freight simulator final target layout. */
.simulator-section {
	padding: 28px 0 64px;
}

.simulator-section .freight-simulator-shell {
	width: min(calc(100% - 96px), 1260px);
}

.simulator-section .freight-simulator-heading {
	max-width: 1040px;
	margin: 0 auto 22px;
	text-align: center !important;
}

.simulator-section .freight-simulator-eyebrow {
	margin: 0 auto 10px !important;
	color: #2457ff !important;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: .34em;
	line-height: 1.1;
}

.simulator-section .freight-simulator-heading h2,
.simulator-section .freight-discount-copy h3 {
	color: #071247;
	font-size: clamp(30px, 2.35vw, 38px);
	font-weight: 800;
	line-height: 1.12;
}

.simulator-section .freight-simulator-heading > p:not(.freight-simulator-eyebrow) {
	max-width: 880px;
	margin: 12px auto 0;
	color: #5f6b8f;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.35;
}

.simulator-section .freight-simulator-panel {
	padding: 48px 54px 30px;
	border: 2px solid transparent;
	border-radius: 18px;
	background:
		linear-gradient(105deg, #f7f8ff 0%, #fbfcff 24%, #ffffff 48%, #fbfffd 74%, #f6fffb 100%) padding-box,
		linear-gradient(100deg, #2457ff 0%, #4fe0a5 100%) border-box;
	box-shadow: 0 24px 68px rgba(31, 56, 112, .1);
}

.simulator-section .freight-discount-card {
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 70px;
	padding: 0 0 42px;
	border-bottom: 1px dashed #dfe6f1;
}

.simulator-section .freight-discount-copy h3 {
	margin: 0;
}

.simulator-section .freight-discount-copy p {
	max-width: 760px;
	margin-top: 18px;
	color: #59668c;
	font-size: 18px;
	line-height: 1.45;
}

.simulator-section .freight-discount-copy .freight-discount-note {
	max-width: 590px;
	margin-top: 20px;
	font-size: 14px;
	line-height: 1.45;
}

.simulator-section .freight-coupon-box {
	gap: 12px;
	padding: 22px 28px 24px;
	border-radius: 12px;
	box-shadow: 0 18px 42px rgba(31, 56, 112, .09);
}

.simulator-section .freight-coupon-box > span {
	font-size: 15px;
}

.simulator-section .freight-coupon-box strong {
	min-height: 58px;
	font-size: 34px;
}

.simulator-section .freight-coupon-box button {
	min-height: 48px;
	border-radius: 6px;
	font-size: 18px;
}

.simulator-section .freight-simulator-card {
	padding: 28px 8px 0;
}

.simulator-section .freight-simulator-form {
	gap: 28px;
}

.simulator-section .freight-cep-row {
	grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
	gap: 40px;
	align-items: end;
}

.simulator-section .freight-package-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 30px;
}

.simulator-section .freight-field {
	gap: 8px;
	color: #071247;
	font-size: 14px;
	font-weight: 800;
}

.simulator-section .freight-field input,
.simulator-section .freight-cep-row .freight-field input {
	height: 46px;
	padding-inline: 16px 44px;
	border-color: #d9e2f0;
	border-radius: 7px;
	color: #071247;
	font-size: 17px;
	font-weight: 700;
}

.simulator-section .freight-package-grid .freight-field input {
	padding-inline: 16px;
}

.simulator-section .freight-field input::placeholder {
	color: #7683ad;
}

.simulator-section .freight-swap-button {
	width: 58px;
	height: 46px;
	border-radius: 7px;
}

.simulator-section .freight-field-icon {
	right: 15px;
	bottom: 11px;
	width: 22px;
	height: 22px;
}

.simulator-section .freight-simulator-card.is-calculated .freight-simulator-status {
	display: none;
}

.simulator-section .freight-submit-button {
	min-width: 248px;
	min-height: 48px;
	font-size: 17px;
}

.simulator-section .freight-results {
	display: grid;
	gap: 10px;
	margin-top: 28px;
	padding-top: 0;
	border-top: 0;
}

.simulator-section .freight-results.is-empty:not(.has-message) {
	display: none;
}

.simulator-section .freight-result-row {
	display: grid;
	grid-template-columns: minmax(360px, 1.3fr) minmax(220px, .7fr) minmax(120px, auto) 112px;
	align-items: center;
	gap: 24px;
	min-height: 78px;
	padding: 13px 18px 13px 22px;
	border: 1px solid #dce4f0;
	border-radius: 8px;
	background: #fff;
	color: #071247;
	box-shadow: none;
	text-decoration: none;
}

.simulator-section .freight-result-row + .freight-result-row {
	margin-top: 0;
}

.simulator-section .freight-result-row:hover,
.simulator-section .freight-result-row:focus-visible {
	border-color: rgba(36, 87, 255, .55);
	box-shadow: 0 8px 24px rgba(36, 87, 255, .08);
	transform: none;
	outline: 0;
}

.simulator-section .freight-carrier {
	display: flex;
	align-items: center;
	gap: 22px;
	min-width: 0;
}

.simulator-section .carrier-logo {
	width: 132px;
	height: 44px;
	flex: 0 0 132px;
	justify-content: flex-start;
}

.simulator-section .carrier-logo img {
	max-width: 128px;
	max-height: 42px;
}

.simulator-section .carrier-logo--correios img {
	max-width: 126px;
}

.simulator-section .carrier-logo--jadlog img {
	max-width: 118px;
}

.simulator-section .freight-carrier strong {
	color: #071247;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.2;
}

.simulator-section .freight-carrier small,
.simulator-section .freight-best-badge {
	display: none;
}

.simulator-section .freight-deadline {
	display: grid;
	grid-template-columns: 1fr !important;
	gap: 2px;
	justify-items: start;
	color: #071247;
	min-width: 180px;
}

.simulator-section .freight-deadline::before {
	display: none !important;
}

.simulator-section .freight-deadline span {
	color: #5f6b8f;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
}

.simulator-section .freight-deadline strong {
	color: #071247;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.25;
	white-space: nowrap;
}

.simulator-section .freight-price {
	justify-self: end;
	color: #071247;
	font-size: 18px;
	font-weight: 800;
	white-space: nowrap;
}

.simulator-section .freight-select-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 17px;
	border: 1px solid #2457ff;
	border-radius: 6px;
	color: #2457ff;
	background: #fff;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.simulator-section .freight-result-row:hover .freight-select-button,
.simulator-section .freight-result-row:focus-visible .freight-select-button {
	background: #2457ff;
	color: #fff;
}

@media (max-width: 1180px) {
	.simulator-section .freight-simulator-shell {
		width: min(calc(100% - 48px), 1260px);
	}

	.simulator-section .freight-result-row {
		grid-template-columns: minmax(280px, 1.2fr) minmax(170px, .7fr) minmax(110px, auto) 110px;
	}
}

@media (max-width: 980px) {
	.simulator-section .freight-simulator-panel {
		padding: 28px;
	}

	.simulator-section .freight-discount-card {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.simulator-section .freight-cep-row,
	.simulator-section .freight-package-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.simulator-section .freight-result-row {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 14px 18px;
	}

	.simulator-section .freight-deadline,
	.simulator-section .freight-price {
		justify-self: start;
	}
}

@media (max-width: 560px) {
	.simulator-section .freight-simulator-shell {
		width: calc(100% - 20px);
	}

	.simulator-section .freight-simulator-heading h2,
	.simulator-section .freight-discount-copy h3 {
		font-size: 24px;
	}

	.simulator-section .freight-simulator-heading > p:not(.freight-simulator-eyebrow),
	.simulator-section .freight-discount-copy p {
		font-size: 15px;
	}

	.simulator-section .freight-simulator-panel {
		padding: 22px 16px;
	}

	.simulator-section .carrier-logo {
		width: 100px;
		flex-basis: 100px;
	}

	.simulator-section .carrier-logo img {
		max-width: 96px;
	}

	.simulator-section .freight-result-row {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.simulator-section .freight-select-button {
		width: 100%;
	}
}

/* Keep the calculator action and the last quote border visible after results load. */
.simulator-section .freight-simulator-card.is-calculated .freight-submit-button {
	display: inline-flex !important;
}

.simulator-section .freight-results {
	padding-bottom: 1px;
}

.simulator-section .freight-result-row:last-of-type {
	border: 1px solid #dce4f0 !important;
}

/* Landing sections must share the same content width. */
.simulator-section .freight-simulator-shell {
	width: min(calc(100% - 48px), var(--container)) !important;
}

@media (max-width: 560px) {
	.simulator-section .freight-simulator-shell {
		width: calc(100% - 20px) !important;
	}
}

/* Pricing cards matching the public landing composition. */
.plans-section {
	padding: 68px 0 76px;
	background: #f4f8ff;
}

.plans-section .landing-container {
	width: min(calc(100% - 48px), var(--container));
}

.plans-section .section-heading,
.logistics-simple-section .section-heading,
.about-section .section-heading,
.faq-section .section-heading {
	max-width: 1040px;
	margin-inline: auto;
}

.plans-section .section-heading .plans-eyebrow,
.logistics-simple-section .section-heading .plans-eyebrow,
.about-section .section-heading .plans-eyebrow,
.faq-section .section-heading .plans-eyebrow {
	display: table;
	width: auto;
	max-width: 100%;
	margin: 0 auto 10px;
	color: #2457ff;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: .34em;
	line-height: 1.1;
	text-align: center;
}

.plans-section .section-heading h2,
.logistics-simple-section .section-heading h2,
.about-section .section-heading h2,
.faq-section .section-heading h2 {
	max-width: 1040px;
	margin-inline: auto;
	color: #071247;
	font-size: clamp(30px, 2.35vw, 38px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: 0;
}

.plans-section .section-heading p:not(.plans-eyebrow),
.logistics-simple-section .section-heading p:not(.plans-eyebrow),
.about-section .section-heading p:not(.plans-eyebrow),
.faq-section .section-heading p:not(.plans-eyebrow) {
	max-width: 880px;
	margin: 12px auto 0;
	color: #5f6b8f;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.35;
}

.plans-section .finance-plans-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	align-items: stretch;
	margin-top: 58px;
}

.plans-section .landing-plan-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 620px;
	overflow: visible;
	padding: 28px 24px 24px;
	border: 1px solid rgba(220, 228, 240, .95);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(31, 56, 112, .08);
}

.plans-section .landing-plan-card:hover {
	transform: translateY(-2px);
	border-color: rgba(36, 87, 255, .28);
	box-shadow: 0 22px 54px rgba(31, 56, 112, .11);
}

.plans-section .landing-plan-card--featured {
	border: 2px solid transparent;
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(145deg, #2457ff 0%, #4fe0a5 100%) border-box;
	box-shadow: 0 22px 58px rgba(36, 87, 255, .13);
}

.plans-section .plan-card-choice {
	position: absolute;
	top: -17px;
	left: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 34px;
	padding: 0 18px;
	border-radius: 8px;
	background: linear-gradient(180deg, #2d67ff 0%, #2457ff 100%);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
	box-shadow: 0 10px 24px rgba(36, 87, 255, .24);
	transform: translateX(-50%);
}

.plans-section .plan-card-choice-icon {
	width: 15px;
	height: 15px;
	fill: currentColor;
	stroke: currentColor;
}

.plans-section .landing-plan-card .plan-card-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	padding: 0 0 26px;
	border-bottom: 1px solid #dfe6f1;
	background: transparent;
	text-align: center;
}

.plans-section .landing-plan-card .plan-card-icon {
	width: 52px;
	height: 52px;
	margin: 0 0 18px;
	border-radius: 12px;
	background: #edf3ff;
	color: #2457ff;
}

.plans-section .landing-plan-card .plan-card-plan-icon {
	width: 26px;
	height: 26px;
}

.plans-section .landing-plan-card .plan-card-title {
	color: #071247;
	font-size: 26px;
	font-weight: 900;
	line-height: 1.12;
}

.plans-section .landing-plan-card--featured .plan-card-title {
	color: #2457ff;
}

.plans-section .landing-plan-card .plan-card-badge {
	margin: 14px auto 24px;
	padding: 5px 12px;
	border-radius: 8px;
	background: #eaf1ff;
	color: #2457ff;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.1;
}

.plans-section .landing-plan-card .plan-card-price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 6px;
	width: 100%;
	color: #071247;
	line-height: 1;
}

.plans-section .plan-card-price-currency {
	font-size: 18px;
	font-weight: 500;
}

.plans-section .landing-plan-card .plan-card-price strong {
	color: #071247;
	font-size: 46px;
	font-weight: 900;
	letter-spacing: 0;
}

.plans-section .plan-card-price-cents {
	margin-left: -3px;
	font-size: 31px;
	font-weight: 900;
}

.plans-section .plan-card-price-period {
	color: #26315d;
	font-size: 18px;
	font-weight: 500;
}

.plans-section .landing-plan-card .plan-card-details {
	flex: 1;
	padding-top: 24px;
}

.plans-section .landing-plan-card .plan-card-features {
	display: grid;
	gap: 15px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: #071247;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
}

.plans-section .landing-plan-card .plan-card-features li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.plans-section .landing-plan-card .plan-card-features svg.plan-li-icon {
	width: 18px;
	height: 18px;
	margin-top: 2px;
}

.plans-section .landing-plan-card .plan-card-footer {
	margin-top: auto;
	padding: 24px 0 0;
}

.plans-section .landing-plan-card .landing-button.plan-btn {
	width: 100%;
	min-height: 54px;
	border: 0;
	border-radius: 8px;
	background: #2457ff;
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	letter-spacing: 0;
	text-align: center;
	box-shadow: 0 14px 28px rgba(36, 87, 255, .22);
	transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}

.plans-section .landing-plan-card .landing-button.plan-btn:hover,
.plans-section .landing-plan-card .landing-button.plan-btn:focus-visible {
	background: #1746f2;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 18px 34px rgba(36, 87, 255, .26);
}

.plans-section .landing-plan-card .landing-button--secondary.plan-btn {
	border: 2px solid #2457ff;
	background: #fff;
	color: #2457ff;
	box-shadow: none;
}

.plans-section .landing-plan-card .landing-button--secondary.plan-btn:hover,
.plans-section .landing-plan-card .landing-button--secondary.plan-btn:focus-visible {
	background: #2457ff;
	border-color: #2457ff;
	color: #fff;
	box-shadow: 0 14px 28px rgba(36, 87, 255, .16);
}

.plans-section .plans-compare-actions {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.plans-section .plans-compare-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 46px;
	padding: 0 20px;
	border: 1px solid rgba(36, 87, 255, .45);
	border-radius: 999px;
	background: #fff;
	color: #2457ff;
	font: inherit;
	font-size: 14px;
	font-weight: 900;
	cursor: pointer;
	box-shadow: 0 12px 26px rgba(31, 56, 112, .06);
	transition: background .16s ease, color .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.plans-section .plans-compare-toggle:hover,
.plans-section .plans-compare-toggle:focus-visible {
	border-color: #2457ff;
	background: #eef4ff;
	box-shadow: 0 16px 30px rgba(36, 87, 255, .12);
	transform: translateY(-1px);
	outline: 0;
}

.plans-section .plans-compare-toggle-icon {
	width: 18px;
	height: 18px;
	transition: transform .16s ease;
}

.plans-section .plans-compare-toggle.is-open .plans-compare-toggle-icon {
	transform: rotate(90deg);
}

.plans-section .finance-subsection {
	margin-top: 28px;
}

.plans-section .finance-subsection[hidden] {
	display: none !important;
}

@media (max-width: 1180px) {
	.plans-section .finance-plans-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.plans-section {
		padding: 54px 0 62px;
	}

	.plans-section .landing-container {
		width: min(calc(100% - 28px), var(--container));
	}

	.plans-section .section-heading h2,
	.logistics-simple-section .section-heading h2,
	.about-section .section-heading h2,
	.faq-section .section-heading h2 {
		font-size: 30px;
	}

	.plans-section .section-heading .plans-eyebrow,
	.logistics-simple-section .section-heading .plans-eyebrow,
	.about-section .section-heading .plans-eyebrow,
	.faq-section .section-heading .plans-eyebrow {
		font-size: 12px;
	}

	.plans-section .section-heading p:not(.plans-eyebrow),
	.logistics-simple-section .section-heading p:not(.plans-eyebrow),
	.about-section .section-heading p:not(.plans-eyebrow),
	.faq-section .section-heading p:not(.plans-eyebrow) {
		font-size: 16px;
	}

	.plans-section .finance-plans-grid {
		grid-template-columns: 1fr;
		margin-top: 42px;
	}

	.plans-section .landing-plan-card {
		min-height: 0;
	}
}

/* Expanded plan comparison table. */
.plans-section .finance-subsection {
	max-width: var(--container);
	margin: 44px auto 0;
}

.plans-section .finance-subtitle {
	margin: 0 0 24px;
	color: #071247;
	font-size: clamp(26px, 2.5vw, 36px);
	font-weight: 900;
	line-height: 1.08;
	text-align: left;
}

.plans-section .finance-plan-table-wrapper {
	overflow-x: auto;
	padding-top: 28px;
	border: 1px solid #dfe6f1;
	border-bottom: 0;
	border-radius: 16px 16px 0 0;
	background: #fff;
	box-shadow: 0 20px 52px rgba(31, 56, 112, .08);
}

.plans-section .finance-plan-table {
	width: 100%;
	min-width: 980px;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
	color: #071247;
	font-size: 14px;
}

.plans-section .finance-plan-table th,
.plans-section .finance-plan-table td {
	position: relative;
	padding: 14px 16px;
	border-bottom: 1px solid #e1e7f0;
	background: #fff;
	text-align: center;
	vertical-align: middle;
	white-space: normal;
}

.plans-section .finance-plan-table thead th {
	padding-top: 18px;
	padding-bottom: 20px;
	background: #fff;
	color: #071247;
	font-size: 16px;
	font-weight: 900;
}

.plans-section .finance-plan-table th:first-child,
.plans-section .finance-plan-table td:first-child {
	width: 31%;
	padding-left: 26px;
	text-align: left;
	color: #071247;
	font-weight: 800;
	line-height: 1.35;
}

.plans-section .finance-plan-table thead th strong {
	display: block;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.1;
}

.plans-section .finance-plan-table thead th small {
	display: block;
	margin-top: 7px;
	color: #5d6680;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.1;
}

.plans-section .finance-plan-table tbody td {
	color: #071247;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
}

.plans-section .finance-plan-table tbody td:not(:first-child) {
	font-size: 14px;
}

.plans-section .finance-plan-table tbody tr:nth-child(odd) {
	background: transparent;
}

.plans-section .finance-plan-table .is-featured-plan {
	border-left: 2px solid #2457ff;
	border-right: 2px solid #2457ff;
	background: linear-gradient(180deg, rgba(36, 87, 255, .035), rgba(36, 87, 255, .015));
	color: #2457ff;
}

.plans-section .finance-plan-table thead .is-featured-plan {
	border-top: 2px solid #2457ff;
	border-radius: 12px 12px 0 0;
}

.plans-section .finance-plan-table tbody tr:last-child .is-featured-plan {
	border-bottom: 2px solid #2457ff;
	border-radius: 0 0 12px 12px;
}

.plans-section .finance-plan-table .is-featured-plan strong,
.plans-section .finance-plan-table .is-featured-plan small {
	color: #2457ff;
}

.plans-section .plan-comparison-choice {
	position: absolute;
	top: -25px;
	left: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 28px;
	padding: 0 12px;
	border-radius: 6px;
	background: linear-gradient(180deg, #2d67ff 0%, #2457ff 100%);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	white-space: nowrap;
	box-shadow: 0 10px 24px rgba(36, 87, 255, .22);
	transform: translateX(-50%);
}

.plans-section .plan-comparison-choice-icon {
	width: 13px;
	height: 13px;
	fill: currentColor;
	stroke: currentColor;
}

.plans-section .finance-plan-table td svg {
	width: 18px !important;
	height: 18px !important;
	vertical-align: middle;
}

.plans-section .finance-plan-table svg.icon-check .check-bg {
	fill: #2457ff !important;
	stroke: #2457ff !important;
}

.plans-section .finance-plan-table svg.icon-check .check-mark {
	stroke: #fff !important;
}

.plans-section .finance-plan-table svg.icon-minus .minus-border,
.plans-section .finance-plan-table svg.icon-minus .minus-line {
	stroke: #ff3b2f !important;
	stroke-width: 2;
}

.plans-section .finance-help-bottom {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 0;
	padding: 14px 26px 16px;
	border: 1px solid #dfe6f1;
	border-top: 0;
	border-radius: 0 0 16px 16px;
	background: #fff;
	color: #5d6680;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	box-shadow: 0 22px 52px rgba(31, 56, 112, .08);
}

.plans-section .finance-help-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border: 1px solid #e1e7f0;
	border-radius: 10px;
	color: #2457ff;
	background: #fff;
}

.plans-section .finance-help-icon .icon {
	width: 22px;
	height: 22px;
}

.plans-section .finance-help-bottom a {
	color: #2457ff;
	font-weight: 900;
	text-decoration: none;
}

.plans-section .finance-help-bottom a:hover,
.plans-section .finance-help-bottom a:focus-visible {
	text-decoration: underline;
}

@media (max-width: 720px) {
	.plans-section .finance-subtitle {
		font-size: 24px;
	}

	.plans-section .finance-plan-table {
		min-width: 880px;
	}

	.plans-section .finance-help-bottom {
		align-items: flex-start;
		padding-inline: 18px;
	}
}

/* Integrated logistics showcase after pricing. */
.logistics-simple-section {
	position: relative;
	overflow: hidden;
	padding: 70px 0 84px;
	background:
		linear-gradient(180deg, #f4f8ff 0%, #fbfdff 28%, #ffffff 100%);
}

.logistics-simple-section .landing-container {
	width: min(calc(100% - 48px), 1260px);
}

.logistics-simple-grid {
	display: grid;
	align-items: center;
	gap: 54px;
	min-width: 0;
	margin-top: 44px;
}

.logistics-simple-grid--labels {
	grid-template-columns: minmax(320px, .78fr) minmax(600px, 1.22fr);
}

.logistics-simple-grid--integrations {
	grid-template-columns: minmax(640px, 1.18fr) minmax(330px, .82fr);
	margin-top: 72px;
}

.logistics-simple-copy {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 0 28px;
	min-width: 0;
}

.logistics-simple-icon {
	grid-row: 1 / 6;
	width: 64px;
	height: 64px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: #edf2ff;
	color: #2457ff;
}

.logistics-simple-grid--integrations .logistics-simple-icon {
	background: #e8fbf5;
	color: #14c8a3;
}

.logistics-simple-icon .landing-icon {
	width: 31px;
	height: 31px;
}

.logistics-simple-copy h3 {
	margin: 8px 0 0;
	color: #071247;
	font-size: clamp(25px, 2.15vw, 34px);
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: 0;
}

.logistics-simple-copy i {
	width: 46px;
	height: 3px;
	display: block;
	margin: 24px 0 20px;
	border-radius: 999px;
	background: var(--home-blue, #2457ff);
}

.logistics-simple-copy strong {
	color: #071247;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.35;
}

.logistics-simple-copy p {
	max-width: 470px;
	margin: 12px 0 0;
	color: #5f6b8f;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.55;
}

.logistics-label-visual {
	position: relative;
	display: block;
	min-width: 0;
	min-height: 455px;
	isolation: isolate;
}

.logistics-label-scene {
	position: relative;
	width: min(100%, 620px);
	min-height: 455px;
	margin-inline: auto;
	border-radius: 32px;
	background: transparent;
}

.logistics-label-scene::before {
	content: none;
}

.logistics-label-scene-card,
.logistics-label-scene-quote,
.logistics-label-scene-boxes,
.logistics-label-scene-route {
	position: absolute;
	display: block;
	user-select: none;
	pointer-events: none;
}

.logistics-label-scene-card {
	left: 54%;
	top: 22px;
	z-index: 2;
	width: min(66%, 430px);
	max-width: none;
	transform: translateX(-50%) rotate(4deg);
	filter: drop-shadow(0 26px 46px rgba(31, 56, 112, .11));
}

.logistics-label-scene-quote {
	z-index: 7;
	max-width: none;
	border-radius: 18px;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 18px 34px rgba(31, 56, 112, .12);
	filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .7));
}

.logistics-label-scene-quote--correios {
	left: 18px;
	top: 68px;
	width: 145px;
}

.logistics-label-scene-quote--jadlog {
	right: 6px;
	top: 188px;
	width: 136px;
}

.logistics-label-scene-quote--loggi {
	left: 22px;
	top: 304px;
	width: 132px;
}

.logistics-label-scene-boxes {
	left: 23%;
	bottom: 48px;
	z-index: 5;
	width: 58%;
	max-width: none;
	filter: drop-shadow(0 18px 24px rgba(78, 52, 18, .13));
}

.logistics-label-scene-route {
	left: 50%;
	bottom: 0;
	z-index: 6;
	width: 62%;
	max-width: none;
	border-radius: 999px;
	transform: translateX(-50%);
	filter: drop-shadow(0 16px 30px rgba(31, 56, 112, .11));
}

.logistics-rate-stack {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 15px;
	min-width: 0;
}

.logistics-rate-card {
	min-height: 58px;
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	padding: 0 17px;
	border: 1px solid #e3e9f3;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(31, 56, 112, .1);
}

.logistics-rate-card img,
.logistics-carrier-row img {
	width: 32px;
	height: 24px;
	object-fit: contain;
}

.logistics-rate-card strong {
	min-width: 0;
	color: #071247;
	font-size: 16px;
	font-weight: 900;
	overflow-wrap: anywhere;
}

.logistics-rate-card span:last-child {
	color: var(--home-blue, #2457ff);
	font-size: 15px;
	font-weight: 900;
	white-space: nowrap;
}

.logistics-rate-card span:last-child.is-green {
	color: #10a66b;
}

.logistics-loggi-logo {
	width: 34px;
	height: 28px;
	display: block;
	flex: 0 0 auto;
}

.logistics-loggi-logo .loggi-wing {
	fill: #6ea2ff;
}

.logistics-loggi-logo .loggi-body {
	fill: #4c86f7;
}

.logistics-loggi-logo .loggi-tail {
	fill: #2f76e9;
}

.logistics-quote-link {
	position: absolute;
	left: clamp(222px, 32%, 286px);
	top: 50%;
	width: 88px;
	height: 110px;
	border: 2px solid #c4cbff;
	border-left: 0;
	border-radius: 0 70px 70px 0;
	transform: translateY(-50%);
}

.logistics-quote-link::before {
	content: "";
	position: absolute;
	left: -7px;
	top: 50%;
	width: 13px;
	height: 13px;
	border: 3px solid #c4cbff;
	border-radius: 50%;
	background: #fff;
	transform: translateY(-50%);
}

.logistics-label-card {
	position: relative;
	z-index: 1;
	min-height: 240px;
	padding: 26px 28px 24px;
	border: 2px solid transparent;
	border-radius: 20px;
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(135deg, #6c77ff 0%, #63d9aa 100%) border-box;
	box-shadow: 0 20px 48px rgba(31, 56, 112, .1);
}

.logistics-label-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-width: 0;
}

.logistics-label-head img {
	width: 124px;
	height: auto;
	object-fit: contain;
}

.logistics-label-action {
	min-height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 0 22px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(180deg, #4d61ff 0%, #303cf6 100%);
	color: #fff;
	font: inherit;
	font-size: 14px;
	font-weight: 900;
	white-space: nowrap;
	box-shadow: 0 14px 28px rgba(48, 60, 246, .24);
}

.logistics-label-action .landing-icon {
	width: 18px;
	height: 18px;
}

.logistics-label-lines {
	display: grid;
	grid-template-columns: .8fr .95fr .55fr;
	gap: 12px 18px;
	margin-top: 24px;
}

.logistics-label-lines span {
	height: 9px;
	border-radius: 999px;
	background: #c7ccd5;
}

.logistics-label-lines span:nth-child(4) {
	grid-column: 1 / 2;
}

.logistics-label-barcode {
	width: min(100%, 280px);
	height: 60px;
	margin: 22px 0 0;
	background:
		repeating-linear-gradient(90deg, #27304d 0 2px, transparent 2px 5px, #27304d 5px 6px, transparent 6px 9px, #27304d 9px 12px, transparent 12px 16px);
	opacity: .72;
}

.logistics-label-lines--footer {
	grid-template-columns: .9fr .62fr .72fr;
	margin-top: 18px;
}

.logistics-integrations-visual {
	position: relative;
	display: grid;
	grid-template-columns: 180px 34px minmax(420px, 1fr);
	align-items: center;
	gap: 18px;
	min-width: 0;
}

.logistics-source-stack {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 16px;
	min-width: 0;
}

.logistics-source-stack div {
	min-height: 58px;
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 0 16px;
	border: 1px solid #e3e9f3;
	border-radius: 8px;
	background: #fff;
	color: #071247;
	font-size: 13px;
	font-weight: 800;
	box-shadow: 0 12px 28px rgba(31, 56, 112, .09);
}

.logistics-source-stack .landing-icon {
	width: 22px;
	height: 22px;
	color: #2f76ff;
}

.logistics-source-link {
	position: relative;
	width: 100%;
	height: 2px;
	background: #c4cbff;
}

.logistics-source-link::before,
.logistics-source-link::after {
	content: "";
	position: absolute;
	top: 50%;
	border-radius: 50%;
	background: #fff;
	transform: translateY(-50%);
}

.logistics-source-link::before {
	left: -7px;
	width: 12px;
	height: 12px;
	border: 2px solid #c4cbff;
}

.logistics-source-link::after {
	right: -7px;
	width: 15px;
	height: 15px;
	border: 4px solid #6672ff;
}

.logistics-carrier-panel {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	min-width: 0;
	padding: 8px;
	border: 2px solid transparent;
	border-radius: 20px;
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(135deg, #6c77ff 0%, #63d9aa 100%) border-box;
	box-shadow: 0 20px 48px rgba(31, 56, 112, .1);
}

.logistics-panel-rail {
	display: grid;
	justify-items: center;
	align-content: start;
	gap: 12px;
	padding: 10px 8px;
	border-radius: 12px 0 0 12px;
	background: linear-gradient(180deg, #4d61ff 0%, #8693ff 100%);
}

.logistics-panel-rail span {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	color: #fff;
}

.logistics-panel-rail span.is-active {
	background: #fff;
	color: var(--home-blue, #2457ff);
	box-shadow: 0 10px 20px rgba(31, 56, 112, .12);
}

.logistics-panel-rail .landing-icon {
	width: 19px;
	height: 19px;
}

.logistics-panel-main {
	min-width: 0;
	padding: 20px 22px;
}

.logistics-panel-title {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	margin-bottom: 16px;
	color: #071247;
}

.logistics-panel-title strong {
	font-size: 14px;
	font-weight: 900;
}

.logistics-panel-title small {
	min-height: 28px;
	display: inline-flex;
	align-items: center;
	padding: 0 13px;
	border-radius: 999px;
	background: #edf1ff;
	color: var(--home-blue, #2457ff);
	font-size: 13px;
	font-weight: 900;
	white-space: nowrap;
}

.logistics-carrier-row {
	display: grid;
	grid-template-columns: 34px minmax(78px, 1fr) 94px 74px 18px;
	align-items: center;
	gap: 10px;
	min-height: 56px;
	padding: 0 12px;
	border: 1px solid #e4eaf4;
	border-radius: 8px;
	background: #fff;
	color: #071247;
	box-shadow: 0 9px 18px rgba(31, 56, 112, .05);
}

.logistics-carrier-row + .logistics-carrier-row {
	margin-top: 10px;
}

.logistics-carrier-row strong {
	min-width: 0;
	font-size: 15px;
	font-weight: 900;
	overflow-wrap: anywhere;
}

.logistics-carrier-row > span:not(.logistics-loggi-logo) {
	justify-self: center;
	min-height: 24px;
	display: inline-flex;
	align-items: center;
	padding: 0 10px;
	border-radius: 999px;
	background: #dff8e8;
	color: #18a463;
	font-size: 11px;
	font-weight: 900;
	white-space: nowrap;
}

.logistics-carrier-row em {
	display: grid;
	gap: 1px;
	color: #071247;
	font-style: normal;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.05;
	text-align: right;
	white-space: nowrap;
}

.logistics-carrier-row em small {
	color: #6b7288;
	font-size: 10px;
	font-weight: 700;
}

.logistics-carrier-row .landing-icon {
	width: 16px;
	height: 16px;
	color: #071247;
}

.about-section {
	position: relative;
	overflow: hidden;
	padding: 86px 0 78px;
	background:
		linear-gradient(180deg, #ffffff 0%, #f7f9ff 42%, #ffffff 100%);
}

.about-section .landing-container {
	width: min(calc(100% - 48px), 1260px);
}

.about-story-grid {
	display: grid;
	grid-template-columns: minmax(360px, .86fr) minmax(480px, 1fr);
	align-items: center;
	gap: 72px;
	margin-top: 28px;
}

.about-copy {
	justify-self: end;
	max-width: 520px;
	text-align: left;
}

.about-copy p {
	margin: 0;
	color: #071247;
	font-size: clamp(17px, 1.25vw, 20px);
	font-weight: 500;
	line-height: 1.58;
}

.about-copy p + p {
	margin-top: 30px;
}

.about-visual {
	justify-self: start;
	width: min(100%, 650px);
}

.about-visual-frame {
	position: relative;
	aspect-ratio: 1448 / 1086;
	background: transparent;
	filter: drop-shadow(0 24px 46px rgba(31, 56, 112, .12));
}

.about-visual-frame img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	object-position: center;
}

.about-pillars {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px;
	margin-top: 42px;
}

.about-pillar-card {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: #071247;
	text-align: left;
}

.about-pillar-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--home-blue, #2457ff);
}

.about-pillar-icon .landing-icon {
	width: 34px;
	height: 34px;
	stroke-width: 1.8;
}

.about-pillar-card strong {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0;
	white-space: nowrap;
}

@media (max-width: 1180px) {
	.logistics-simple-grid--labels,
	.logistics-simple-grid--integrations {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.logistics-simple-copy {
		max-width: 700px;
	}

	.logistics-simple-grid--integrations .logistics-simple-copy {
		justify-self: end;
	}

	.logistics-label-visual,
	.logistics-integrations-visual {
		width: min(100%, 860px);
		margin-inline: auto;
	}

	.about-story-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 44px;
	}

	.about-copy {
		justify-self: center;
		max-width: 680px;
	}

	.about-visual {
		justify-self: center;
		width: min(100%, 680px);
	}

	.about-pillars {
		gap: 16px;
	}
}

@media (max-width: 1100px) {
	.about-pillars {
		grid-template-columns: 1fr;
		max-width: 520px;
		margin-inline: auto;
	}

	.about-pillar-card {
		justify-content: flex-start;
	}
}

@media (max-width: 820px) {
	.logistics-simple-section {
		padding: 58px 0 66px;
	}

	.logistics-simple-section .landing-container {
		width: min(calc(100% - 28px), var(--container));
	}

	.logistics-simple-copy {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.logistics-simple-grid--integrations .logistics-simple-copy {
		order: -1;
		justify-self: start;
	}

	.logistics-simple-grid--integrations .logistics-integrations-visual {
		order: 1;
	}

	.logistics-simple-icon {
		grid-row: auto;
		margin-bottom: 18px;
	}

	.logistics-label-visual {
		min-height: 450px;
	}

	.logistics-label-scene {
		min-height: 450px;
	}

	.logistics-label-scene-card {
		top: 28px;
		width: 78%;
	}

	.logistics-rate-stack {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px;
	}

	.logistics-rate-card {
		grid-template-columns: 1fr;
		justify-items: center;
		min-height: 118px;
		padding: 14px 10px;
		text-align: center;
	}

	.logistics-label-scene-quote--correios {
		left: 0;
		top: 56px;
		width: 152px;
	}

	.logistics-label-scene-quote--jadlog {
		right: 0;
		top: 168px;
		width: 142px;
	}

	.logistics-label-scene-quote--loggi {
		left: 8px;
		top: 284px;
		width: 142px;
	}

	.logistics-label-scene-boxes {
		left: 16%;
		bottom: 42px;
		width: 70%;
	}

	.logistics-label-scene-route {
		width: 74%;
	}

	.logistics-quote-link,
	.logistics-source-link {
		display: none;
	}

	.logistics-integrations-visual {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.logistics-source-stack {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px;
	}

	.logistics-source-stack div {
		justify-content: center;
		padding: 12px;
		text-align: center;
	}

	.about-section {
		padding: 64px 0 60px;
	}

	.about-section .landing-container {
		width: min(calc(100% - 28px), var(--container));
	}

	.about-copy p {
		font-size: 16px;
		line-height: 1.56;
	}

	.about-copy p + p {
		margin-top: 22px;
	}

	.about-pillars {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 30px;
	}

	.about-pillar-card {
		justify-content: flex-start;
		gap: 14px;
	}
}

@media (max-width: 640px) {
	.logistics-simple-grid {
		margin-top: 36px;
	}

	.logistics-simple-grid--integrations {
		margin-top: 58px;
	}

	.logistics-simple-copy h3 {
		font-size: 27px;
	}

	.logistics-simple-copy strong {
		font-size: 17px;
	}

	.logistics-simple-copy p {
		font-size: 16px;
	}

	.logistics-rate-stack {
		grid-template-columns: 1fr;
	}

	.logistics-integrations-visual {
		--integration-card-inset: 54px;
		--integration-line-x: 18px;
		--integration-panel-offset: 54px;
		width: min(100%, 430px);
		align-items: stretch;
		gap: 0;
		margin-inline: auto;
		padding-left: var(--integration-card-inset);
		overflow: visible;
	}

	.logistics-source-stack {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.logistics-source-stack::before {
		content: "";
		position: absolute;
		left: calc(var(--integration-line-x) - var(--integration-card-inset));
		top: 38px;
		bottom: -56px;
		width: 3px;
		border-radius: 999px;
		background: #5665ff;
	}

	.logistics-source-stack div {
		position: relative;
		min-height: 76px;
		justify-content: center;
		gap: 16px;
		padding: 0 18px;
		border-radius: 14px;
		font-size: 21px;
		font-weight: 900;
		text-align: center;
		box-shadow: 0 16px 36px rgba(31, 56, 112, .1);
	}

	.logistics-source-stack div::before,
	.logistics-source-stack div::after {
		content: "";
		position: absolute;
		top: 50%;
		background: #5665ff;
		transform: translateY(-50%);
	}

	.logistics-source-stack div::before {
		left: calc(var(--integration-line-x) - var(--integration-card-inset));
		width: calc(var(--integration-card-inset) - var(--integration-line-x));
		height: 3px;
		border-radius: 999px;
	}

	.logistics-source-stack div::after {
		left: calc(var(--integration-line-x) - var(--integration-card-inset));
		width: 13px;
		height: 13px;
		border-radius: 50%;
		transform: translate(-50%, -50%);
	}

	.logistics-source-stack .landing-icon {
		width: 27px;
		height: 27px;
		stroke-width: 2.2;
	}

	.logistics-rate-card {
		grid-template-columns: 34px minmax(0, 1fr) auto;
		justify-items: initial;
		min-height: 58px;
		padding: 0 14px;
		text-align: left;
	}

	.logistics-label-visual {
		min-height: 400px;
		margin-inline: -8px;
	}

	.logistics-label-scene {
		min-height: 400px;
		border-radius: 24px;
	}

	.logistics-label-scene-card {
		top: 34px;
		width: 78%;
	}

	.logistics-label-scene-quote--correios {
		left: 0;
		top: 42px;
		width: 118px;
	}

	.logistics-label-scene-quote--jadlog {
		right: 0;
		top: 164px;
		width: 110px;
	}

	.logistics-label-scene-quote--loggi {
		left: 8px;
		top: 262px;
		width: 112px;
	}

	.logistics-label-scene-boxes {
		left: 12%;
		bottom: 48px;
		width: 78%;
	}

	.logistics-label-scene-route {
		bottom: 8px;
		width: 84%;
	}

	.logistics-label-card {
		padding: 20px 16px;
		border-radius: 16px;
	}

	.logistics-label-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.logistics-label-action {
		width: 100%;
	}

	.logistics-label-lines {
		grid-template-columns: 1fr .8fr;
	}

	.logistics-label-lines span:nth-child(4) {
		grid-column: auto;
	}

	.logistics-label-barcode {
		width: 100%;
	}

	.logistics-carrier-panel {
		position: relative;
		grid-template-columns: 1fr;
		width: calc(100% + var(--integration-panel-offset));
		margin-top: 54px;
		margin-left: calc(-1 * var(--integration-panel-offset));
		padding: 9px;
		border-radius: 18px;
	}

	.logistics-carrier-panel::before {
		content: none;
	}

	.logistics-panel-rail {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		border-radius: 12px 12px 0 0;
		gap: 8px;
		padding: 10px 12px;
		background: linear-gradient(90deg, #555bff 0%, #736cff 100%);
	}

	.logistics-panel-rail span {
		width: 43px;
		height: 43px;
		border-radius: 10px;
	}

	.logistics-panel-rail .landing-icon {
		width: 23px;
		height: 23px;
		stroke-width: 2.1;
	}

	.logistics-panel-main {
		padding: 22px 14px 16px;
	}

	.logistics-panel-title {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 18px;
	}

	.logistics-panel-title small {
		min-height: 44px;
		padding: 0 18px;
		font-size: clamp(15px, 4vw, 18px);
		box-shadow: 0 12px 24px rgba(31, 56, 112, .08);
	}

	.logistics-carrier-row {
		grid-template-columns: 46px minmax(0, 1fr) minmax(72px, auto);
		grid-template-rows: auto auto;
		gap: 8px 12px;
		min-height: 104px;
		padding: 15px 12px;
		border-radius: 12px;
		box-shadow: 0 12px 24px rgba(31, 56, 112, .06);
	}

	.logistics-carrier-row + .logistics-carrier-row {
		margin-top: 14px;
	}

	.logistics-carrier-row img,
	.logistics-loggi-logo {
		grid-row: 1 / 3;
		align-self: start;
		width: 38px;
		height: 32px;
		margin-top: 3px;
	}

	.logistics-carrier-row strong {
		font-size: clamp(19px, 5.6vw, 23px);
		line-height: 1.05;
	}

	.logistics-carrier-row > span:not(.logistics-loggi-logo) {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
		justify-self: start;
		min-height: 34px;
		padding: 0 17px;
		font-size: clamp(13px, 3.8vw, 15px);
	}

	.logistics-carrier-row em {
		grid-column: 3 / 4;
		grid-row: 1 / 3;
		align-self: center;
		font-size: clamp(18px, 5vw, 22px);
		line-height: 1.06;
	}

	.logistics-carrier-row em small {
		font-size: clamp(11px, 3vw, 13px);
		line-height: 1.08;
	}

	.logistics-carrier-row .landing-icon {
		display: none;
	}

	.about-section {
		padding: 54px 0 52px;
	}

	.about-story-grid {
		gap: 30px;
		margin-top: 22px;
	}

	.about-visual-frame img {
		object-position: center;
	}

	.about-pillar-icon .landing-icon {
		width: 34px;
		height: 34px;
	}

	.about-pillar-card strong {
		font-size: 16px;
	}
}

@media (max-width: 420px) {
	.about-pillar-card {
		gap: 10px;
	}

	.about-pillar-icon .landing-icon {
		width: 28px;
		height: 28px;
	}

	.about-pillar-card strong {
		font-size: 13px;
	}
}

/* Final subtle background pass by section. */
#conteudo {
	background: #f8fbff;
}

.hero-section {
	background:
		linear-gradient(180deg, #f8fbff 0%, #eef4ff 52%, #f8fbff 100%);
}

.simulator-section {
	background:
		linear-gradient(180deg, #f8fbff 0%, #e9f8f2 52%, #f8fbff 100%);
}

.plans-section {
	background:
		linear-gradient(180deg, #f8fbff 0%, #e9f0ff 52%, #f8fbff 100%);
}

.logistics-simple-section {
	background:
		linear-gradient(180deg, #f8fbff 0%, #e9f8f5 50%, #f8fbff 100%);
}

.about-section {
	background:
		linear-gradient(180deg, #f8fbff 0%, #ffffff 50%, #f8fbff 100%);
}

.intermediate-cta-section {
	background:
		linear-gradient(180deg, #f8fbff 0%, #ffffff 48%, #f8fbff 100%);
}

.faq-section {
	background:
		linear-gradient(180deg, #f8fbff 0%, #f6f9fe 50%, #f8fbff 100%);
}

.landing-footer {
	background:
		linear-gradient(180deg, #f8fbff 0%, #f3f6fb 42%, #f4f7fb 100%);
}

/* Final vertical rhythm for public home sections. */
.hero-section {
	padding-top: 42px;
	padding-bottom: 72px;
}

.simulator-section,
.plans-section,
.logistics-simple-section,
.about-section,
.intermediate-cta-section,
.faq-section {
	padding-top: 76px;
	padding-bottom: 84px;
}

.plans-section .section-heading .plans-eyebrow,
.logistics-simple-section .section-heading .plans-eyebrow,
.about-section .section-heading .plans-eyebrow,
.faq-section .section-heading .plans-eyebrow,
.simulator-section .freight-simulator-eyebrow {
	margin-bottom: 22px !important;
}

.simulator-section .freight-simulator-heading {
	max-width: 1040px;
	margin-inline: auto;
	text-align: center !important;
}

.simulator-section .freight-simulator-heading .freight-simulator-eyebrow {
	display: table;
	width: auto;
	max-width: 100%;
	margin: 0 auto 22px !important;
	color: #2457ff !important;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: .34em;
	line-height: 1.1;
	text-align: center;
}

.simulator-section .freight-simulator-heading h2 {
	max-width: 1040px;
	margin-inline: auto;
	color: #071247;
	font-size: clamp(30px, 2.35vw, 38px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: 0;
}

.simulator-section .freight-simulator-heading > p:not(.freight-simulator-eyebrow) {
	max-width: 880px;
	margin: 12px auto 0;
	color: #5f6b8f;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.35;
}

@media (max-width: 820px) {
	.hero-section {
		padding-top: 32px;
		padding-bottom: 54px;
	}

	.simulator-section,
	.plans-section,
	.logistics-simple-section,
	.about-section,
	.intermediate-cta-section,
	.faq-section {
		padding-top: 58px;
		padding-bottom: 64px;
	}

	.plans-section .section-heading .plans-eyebrow,
	.logistics-simple-section .section-heading .plans-eyebrow,
	.about-section .section-heading .plans-eyebrow,
	.faq-section .section-heading .plans-eyebrow,
	.simulator-section .freight-simulator-heading .freight-simulator-eyebrow {
		margin-bottom: 18px !important;
	}
}

@media (max-width: 560px) {
	.hero-section {
		padding-top: 30px;
		padding-bottom: 46px;
	}

	.simulator-section,
	.plans-section,
	.logistics-simple-section,
	.about-section,
	.intermediate-cta-section,
	.faq-section {
		padding-top: 48px;
		padding-bottom: 54px;
	}

	.plans-section .section-heading .plans-eyebrow,
	.logistics-simple-section .section-heading .plans-eyebrow,
	.about-section .section-heading .plans-eyebrow,
	.faq-section .section-heading .plans-eyebrow,
	.simulator-section .freight-simulator-heading .freight-simulator-eyebrow {
		margin-bottom: 16px !important;
	}
}

/* Final intermediate CTA banner treatment. */
.intermediate-cta-section .landing-container {
	width: min(calc(100% - 48px), var(--container));
	max-width: var(--container);
}

.intermediate-cta-section .blue-cta {
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(24px, 3vw, 42px);
	min-height: clamp(156px, 11vw, 190px);
	align-items: center;
	padding: clamp(24px, 2.35vw, 34px) clamp(28px, 3.35vw, 52px);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: clamp(16px, 1.2vw, 22px);
	background:
		radial-gradient(circle at 14% 22%, rgba(53, 117, 255, .7) 0, transparent 36%),
		radial-gradient(circle at 88% 18%, rgba(31, 238, 160, .5) 0, transparent 38%),
		linear-gradient(116deg, #086dff 0%, #08a5ed 47%, #16df9c 100%);
	box-shadow: 0 18px 42px rgba(21, 118, 191, .18);
}

.intermediate-cta-section .blue-cta::before,
.intermediate-cta-section .blue-cta::after {
	content: none;
}

.intermediate-cta-section .blue-cta h2 {
	max-width: 580px;
	font-size: clamp(28px, 2.05vw, 36px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: 0;
}

.intermediate-cta-section .blue-cta p {
	max-width: 680px;
	margin-top: 8px;
	color: rgba(255, 255, 255, .92);
	font-size: clamp(16px, 1.15vw, 19px);
	font-weight: 400;
	line-height: 1.36;
}

.intermediate-cta-section .cta-actions {
	flex-wrap: nowrap;
	gap: clamp(14px, 1.2vw, 18px);
	justify-content: flex-end;
	align-items: center;
	padding-left: clamp(24px, 2.5vw, 38px);
	border-left: 1px solid rgba(255, 255, 255, .3);
}

.intermediate-cta-section .blue-cta .landing-button {
	min-width: clamp(184px, 12.5vw, 220px);
	min-height: clamp(46px, 3.1vw, 54px);
	padding-inline: clamp(20px, 1.6vw, 28px);
	border-radius: 12px;
	font-size: clamp(16px, 1.05vw, 18px);
	font-weight: 800;
	line-height: 1.1;
}

.intermediate-cta-section .blue-cta .landing-button-icon {
	display: block;
	width: 20px;
	height: 20px;
	stroke-width: 2.4;
}

.intermediate-cta-section .blue-cta .landing-button--white {
	background: #fff;
	color: #0870ff;
	box-shadow: 0 14px 30px rgba(7, 93, 174, .16);
}

.intermediate-cta-section .blue-cta .landing-button--outline-white {
	min-width: clamp(220px, 15vw, 250px);
	border-width: 2px;
	border-color: rgba(255, 255, 255, .72);
	background: rgba(255, 255, 255, .05);
	color: #fff;
	box-shadow: none;
}

@media (max-width: 1180px) {
	.intermediate-cta-section .landing-container {
		width: min(calc(100% - 48px), var(--container));
	}

	.intermediate-cta-section .blue-cta {
		grid-template-columns: 1fr;
		gap: 20px;
		min-height: auto;
		padding: 30px 30px;
	}

	.intermediate-cta-section .cta-actions {
		justify-content: flex-start;
		padding-left: 0;
		border-left: 0;
	}
}

@media (max-width: 640px) {
	.intermediate-cta-section .landing-container {
		width: min(calc(100% - 28px), var(--container));
	}

	.intermediate-cta-section .blue-cta {
		gap: 18px;
		padding: 24px 20px;
		border-radius: 18px;
	}

	.intermediate-cta-section .blue-cta h2 {
		font-size: 25px;
	}

	.intermediate-cta-section .blue-cta p {
		margin-top: 8px;
		font-size: 15px;
		line-height: 1.45;
	}

	.intermediate-cta-section .cta-actions {
		width: 100%;
		flex-direction: column;
		gap: 12px;
	}

	.intermediate-cta-section .blue-cta .landing-button {
		width: 100%;
		min-width: 0;
		min-height: 48px;
		font-size: 15px;
	}
}

/* Inline errors for the public freight simulator. */
.freight-input-wrap {
	position: relative;
	display: block;
	min-width: 0;
}

.freight-input-wrap .freight-field-icon,
.simulator-section .freight-input-wrap .freight-field-icon {
	top: 50%;
	right: 15px;
	bottom: auto;
	transform: translateY(-50%);
}

.freight-field-error {
	min-height: 16px;
	margin-top: -2px;
	color: var(--danger);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
}

.freight-field-error:empty {
	display: none;
}

.freight-cep-info {
	min-height: 0;
	margin-top: 0;
	color: var(--accent);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.25;
	text-align: right;
	overflow-wrap: anywhere;
}

.freight-cep-info.is-loading {
	color: #64748b;
}

.freight-cep-info.is-success {
	color: var(--accent);
}

.freight-cep-info:empty {
	display: none;
}

.freight-field.has-error input,
.simulator-section .freight-field.has-error input {
	border-color: var(--danger);
	background: #fff7f7;
}

.freight-field.has-error input:focus,
.simulator-section .freight-field.has-error input:focus {
	border-color: var(--danger);
	box-shadow: 0 0 0 4px rgba(239, 68, 68, .14);
}

.freight-field.has-error .freight-field-icon,
.simulator-section .freight-field.has-error .freight-field-icon {
	color: var(--danger);
}

.freight-cep-row,
.simulator-section .freight-cep-row {
	align-items: start;
}

.freight-cep-row .freight-swap-button,
.simulator-section .freight-cep-row .freight-swap-button {
	align-self: start;
	margin-top: 29px;
}

@media (max-width: 820px) {
	.freight-cep-row .freight-swap-button,
	.simulator-section .freight-cep-row .freight-swap-button {
		margin-top: 0;
	}
}

.simulator-section .freight-price {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	line-height: 1.1;
}

.simulator-section .freight-price-original {
	color: #8a94ad;
	font-size: 13px;
	font-weight: 400;
	text-decoration: line-through;
	text-decoration-thickness: 1px;
}

.simulator-section .freight-price-current {
	color: #071247;
	font-size: 18px;
	font-weight: 800;
}

@media (max-width: 980px) {
	.simulator-section .freight-price {
		align-items: flex-start;
	}
}

/* Mobile header fix: keep the menu control and its SVG visible on iOS/Safari. */
@media (max-width: 980px) {
	.landing-header__actions {
		display: flex !important;
		align-items: center;
		justify-content: flex-end;
		margin-left: auto;
	}

	.landing-login,
	.landing-header-cta {
		display: none !important;
	}

	.landing-menu-button {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		min-width: 44px;
		min-height: 44px;
		padding: 0;
		color: var(--home-ink, #030936);
		line-height: 1;
	}

	.landing-menu-button svg {
		display: block;
		width: 24px;
		height: 24px;
		min-width: 24px;
		min-height: 24px;
		max-width: none;
		color: currentColor;
		stroke: currentColor;
		opacity: 1;
		visibility: visible;
	}

	.landing-menu-button .landing-menu-open {
		display: block !important;
	}

	.landing-menu-button .landing-menu-close {
		display: none !important;
	}

	.landing-header.is-menu-open .landing-menu-button .landing-menu-open {
		display: none !important;
	}

	.landing-header.is-menu-open .landing-menu-button .landing-menu-close {
		display: block !important;
	}
}
