:root {
	--bg: #f6f8f7;
	--surface: #ffffff;
	--surface-soft: #eef5f1;
	--surface-warm: #fff8ee;
	--ink: #132033;
	--muted: #5f6f7d;
	--line: #d9e3e0;
	--navy: #102a43;
	--blue: #2457a6;
	--green: #1f8a70;
	--amber: #d79a2b;
	--coral: #d9604c;
	--shadow: 0 22px 70px rgba(16, 42, 67, 0.16);
	--radius: 8px;
	--header-height: 88px;
	color-scheme: light;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
	top: 32px;
}

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

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

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

button {
	cursor: pointer;
}

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

.skip-link:focus {
	top: 12px;
	left: 12px;
	z-index: 999;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--surface);
	color: var(--ink);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	height: var(--header-height);
	background: rgba(16, 42, 67, 0.08);
	backdrop-filter: blur(18px);
	transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled,
body:not(.home):not(.front-page) .site-header {
	background: rgba(16, 42, 67, 0.94);
	border-color: rgba(255, 255, 255, 0.16);
	box-shadow: 0 12px 35px rgba(16, 42, 67, 0.2);
}

.site-nav-shell {
	width: min(1180px, calc(100% - 40px));
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	color: #ffffff;
}

.site-brand-logo {
	flex: 0 0 auto;
	gap: 0;
}

.site-header.is-scrolled .site-brand,
body:not(.home):not(.front-page) .site-brand {
	color: #ffffff;
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: var(--radius);
	background: linear-gradient(135deg, var(--green), var(--blue));
	color: #ffffff;
	font-weight: 800;
	font-size: 0.92rem;
	letter-spacing: 0;
	box-shadow: 0 14px 28px rgba(16, 42, 67, 0.18);
}

.brand-logo-mark {
	background: transparent;
	object-fit: contain;
}

.brand-full-logo {
	display: block;
	width: clamp(230px, 22vw, 280px);
	height: auto;
	border-radius: var(--radius);
	object-fit: contain;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo {
	display: block;
	width: auto;
	max-width: min(280px, 54vw);
	max-height: 86px;
	border-radius: var(--radius);
	object-fit: contain;
}

.brand-copy {
	display: grid;
	line-height: 1.15;
}

.brand-copy strong {
	color: #ffffff;
	font-size: 0.98rem;
	font-weight: 800;
	letter-spacing: 0;
}

.brand-copy small {
	font-size: 0.76rem;
	color: rgba(255, 255, 255, 0.72);
}

.site-header.is-scrolled .brand-copy small,
body:not(.home):not(.front-page) .brand-copy small {
	color: rgba(255, 255, 255, 0.72);
}

.site-navigation {
	display: flex;
	align-items: center;
	gap: 18px;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 8px 12px;
	border-radius: var(--radius);
	color: rgba(255, 255, 255, 0.82);
	font-weight: 700;
	font-size: 0.91rem;
	letter-spacing: 0;
}

.primary-menu a:hover,
.primary-menu a:focus {
	background: rgba(255, 255, 255, 0.13);
	color: #ffffff;
}

.site-header.is-scrolled .primary-menu a,
body:not(.home):not(.front-page) .primary-menu a {
	color: rgba(255, 255, 255, 0.82);
}

.site-header.is-scrolled .primary-menu a:hover,
.site-header.is-scrolled .primary-menu a:focus,
body:not(.home):not(.front-page) .primary-menu a:hover,
body:not(.home):not(.front-page) .primary-menu a:focus {
	background: rgba(255, 255, 255, 0.13);
	color: #ffffff;
}

.nav-cta,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border-radius: var(--radius);
	padding: 12px 18px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta {
	background: #ffffff;
	color: var(--navy);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.site-header.is-scrolled .nav-cta,
body:not(.home):not(.front-page) .nav-cta {
	background: #ffffff;
	color: var(--navy);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.button:hover,
.button:focus,
.nav-cta:hover,
.nav-cta:focus {
	transform: translateY(-1px);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

.site-header.is-scrolled .nav-toggle,
body:not(.home):not(.front-page) .nav-toggle {
	border-color: rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
	display: block;
	width: 18px;
	height: 2px;
	margin: 0 auto;
	background: currentColor;
	border-radius: 2px;
	content: "";
}

.nav-toggle-line::before {
	transform: translateY(-6px);
}

.nav-toggle-line::after {
	transform: translateY(4px);
}

.section {
	padding: 96px 0;
}

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

.hero-section {
	position: relative;
	min-height: 88svh;
	max-height: 900px;
	overflow: hidden;
	display: flex;
	align-items: center;
	background: var(--navy);
	color: #ffffff;
}

.hero-media,
.hero-shade {
	position: absolute;
	inset: 0;
}

.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(0.94) contrast(1.04);
	transform: scale(1.02);
}

.hero-shade {
	background:
		linear-gradient(90deg, rgba(10, 28, 49, 0.94) 0%, rgba(10, 28, 49, 0.74) 42%, rgba(10, 28, 49, 0.28) 100%),
		linear-gradient(0deg, rgba(10, 28, 49, 0.74) 0%, rgba(10, 28, 49, 0.1) 42%);
}

.hero-inner {
	position: relative;
	z-index: 2;
	padding: 118px 0 80px;
}

.kicker {
	margin: 0 0 12px;
	color: var(--green);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.hero-section .kicker,
.band-dark .kicker {
	color: #8ee4cb;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1 {
	max-width: 820px;
	margin-bottom: 18px;
	font-size: 6rem;
	line-height: 0.94;
	letter-spacing: 0;
}

h2 {
	margin-bottom: 18px;
	font-size: 3.1rem;
	line-height: 1.04;
	letter-spacing: 0;
}

h3 {
	margin-bottom: 8px;
	font-size: 1.18rem;
	line-height: 1.22;
	letter-spacing: 0;
}

.hero-lede {
	max-width: 680px;
	margin-bottom: 28px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.22rem;
	line-height: 1.65;
}

.site-tagline {
	max-width: 720px;
	margin-bottom: 18px;
	color: #8ee4cb;
	font-size: 1.65rem;
	font-weight: 900;
	line-height: 1.2;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 34px;
}

.button-primary {
	background: var(--green);
	color: #ffffff;
	box-shadow: 0 14px 32px rgba(31, 138, 112, 0.28);
}

.button-primary:hover,
.button-primary:focus {
	background: #176c58;
}

.button-secondary {
	border: 1px solid rgba(255, 255, 255, 0.32);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.button-secondary.light,
.contact-section .button-secondary {
	border-color: var(--line);
	background: var(--surface);
	color: var(--ink);
}

.hero-proof {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	width: min(760px, 100%);
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero-proof li {
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--radius);
	padding: 14px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
}

.hero-proof strong,
.hero-proof span {
	display: block;
}

.hero-proof strong {
	font-size: 0.98rem;
}

.hero-proof span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.82rem;
	line-height: 1.35;
}

.hero-scroll {
	position: absolute;
	left: 50%;
	bottom: 22px;
	z-index: 2;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.86rem;
	font-weight: 800;
}

.band-light {
	background: var(--surface);
}

.band-muted {
	background: var(--surface-soft);
}

.band-dark {
	background: var(--navy);
	color: #ffffff;
}

.overview-grid,
.workflow-grid,
.trust-grid,
.contact-inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 64px;
	align-items: start;
}

.overview-copy,
.workflow-copy,
.trust-copy {
	color: var(--muted);
	font-size: 1.04rem;
}

.band-dark .trust-copy {
	color: rgba(255, 255, 255, 0.76);
}

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

.section-heading p {
	color: var(--muted);
	font-size: 1.04rem;
}

.product-section {
	background: linear-gradient(180deg, var(--surface-warm) 0%, var(--surface) 100%);
}

.product-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.24fr) minmax(0, 0.76fr);
	gap: 20px;
	align-items: stretch;
}

.product-grid-standalone {
	grid-template-columns: minmax(0, 1.38fr) minmax(320px, 0.62fr);
}

.product-card {
	display: grid;
	gap: 22px;
	align-content: space-between;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px;
	background: var(--surface);
	box-shadow: 0 14px 34px rgba(16, 42, 67, 0.06);
	overflow: hidden;
}

.product-card-primary {
	grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
	align-items: center;
	background: #f9fcfb;
}

.product-card h3 {
	font-size: 2rem;
	line-height: 1.08;
}

.product-card p {
	color: var(--muted);
}

.product-card img {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface-soft);
	box-shadow: 0 18px 42px rgba(16, 42, 67, 0.12);
}

.product-card-primary img {
	height: 360px;
	object-fit: cover;
	object-position: left center;
}

.product-card:not(.product-card-primary) img {
	max-height: 420px;
	object-fit: contain;
	padding: 12px;
}

.product-points {
	display: grid;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.product-points li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--ink);
	font-weight: 800;
}

.product-points li::before {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--green);
	content: "";
	flex: 0 0 auto;
}

.product-actions {
	margin-top: 24px;
}

.showcase-grid {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 22px;
	align-items: start;
}

.showcase-controls {
	position: sticky;
	top: calc(var(--header-height) + 24px);
	display: grid;
	gap: 10px;
}

.shot-tab {
	width: 100%;
	min-height: 52px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	color: var(--muted);
	padding: 12px 14px;
	text-align: left;
	font-weight: 800;
}

.shot-tab:hover,
.shot-tab:focus,
.shot-tab.is-active {
	border-color: rgba(31, 138, 112, 0.42);
	background: var(--surface-soft);
	color: var(--ink);
}

.shot-stage {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.shot-panel {
	margin: 0;
}

.shot-panel img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.shot-panel[data-shot-panel="connect"] img,
.shot-panel[data-shot-panel="driver-app"] img,
.shot-panel[data-shot-panel="driver-ticket"] img {
	aspect-ratio: 16 / 10;
	object-fit: contain;
	background: #eaf0ee;
}

.shot-panel figcaption {
	padding: 16px 18px 18px;
	color: var(--muted);
	font-size: 0.94rem;
}

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

.feature-card {
	min-height: 250px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
	background: var(--surface);
	box-shadow: 0 14px 34px rgba(16, 42, 67, 0.05);
}

.feature-icon {
	position: relative;
	display: block;
	width: 44px;
	height: 44px;
	margin-bottom: 24px;
	border-radius: var(--radius);
	background: var(--surface-warm);
	color: var(--amber);
	overflow: hidden;
}

.feature-card:nth-child(2n) .feature-icon {
	background: #eaf3ff;
	color: var(--blue);
}

.feature-card:nth-child(3n) .feature-icon {
	background: #e7f7f2;
	color: var(--green);
}

.feature-icon::before,
.feature-icon::after,
.feature-icon span,
.feature-icon span::before,
.feature-icon span::after {
	position: absolute;
	display: block;
	content: "";
}

.feature-icon-route::before {
	left: 11px;
	right: 11px;
	top: 21px;
	height: 3px;
	background: currentColor;
	border-radius: 999px;
	transform: rotate(-18deg);
}

.feature-icon-route::after,
.feature-icon-route span::before {
	width: 11px;
	height: 11px;
	border: 3px solid currentColor;
	border-radius: 50% 50% 50% 0;
	background: var(--surface);
	transform: rotate(-45deg);
}

.feature-icon-route::after {
	left: 8px;
	top: 24px;
}

.feature-icon-route span::before {
	right: 8px;
	top: 8px;
}

.feature-icon-booking::before,
.feature-icon-ticket::before {
	left: 12px;
	top: 8px;
	width: 21px;
	height: 28px;
	border: 3px solid currentColor;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.62);
}

.feature-icon-booking::after {
	left: 17px;
	top: 16px;
	width: 11px;
	height: 3px;
	border-radius: 999px;
	background: currentColor;
	box-shadow: 0 7px 0 currentColor, 0 14px 0 currentColor;
}

.feature-icon-allocation::before {
	left: 9px;
	top: 9px;
	width: 7px;
	height: 26px;
	border-radius: 999px;
	background: currentColor;
	box-shadow: 10px 0 0 currentColor, 20px 0 0 currentColor;
	opacity: 0.22;
}

.feature-icon-allocation::after {
	left: 7px;
	top: 13px;
	width: 11px;
	height: 8px;
	border-radius: 3px;
	background: currentColor;
	box-shadow: 10px 10px 0 currentColor, 20px 3px 0 currentColor;
}

.feature-icon-compliance::before {
	left: 11px;
	top: 7px;
	width: 22px;
	height: 28px;
	border: 3px solid currentColor;
	border-radius: 12px 12px 16px 16px;
	background: rgba(255, 255, 255, 0.62);
}

.feature-icon-compliance::after {
	left: 17px;
	top: 20px;
	width: 13px;
	height: 7px;
	border-left: 3px solid currentColor;
	border-bottom: 3px solid currentColor;
	transform: rotate(-45deg);
}

.feature-icon-ticket::before {
	border-style: dashed;
}

.feature-icon-ticket::after {
	left: 18px;
	top: 15px;
	width: 10px;
	height: 3px;
	border-radius: 999px;
	background: currentColor;
	box-shadow: 0 8px 0 currentColor;
}

.feature-icon-invoice::before {
	left: 10px;
	bottom: 10px;
	width: 5px;
	height: 13px;
	border-radius: 3px 3px 0 0;
	background: currentColor;
	box-shadow: 9px -7px 0 currentColor, 18px -2px 0 currentColor;
}

.feature-icon-invoice::after {
	left: 9px;
	right: 8px;
	bottom: 9px;
	height: 3px;
	border-radius: 999px;
	background: currentColor;
}

.feature-card p {
	margin-bottom: 0;
	color: var(--muted);
}

.connect-detail,
.driver-detail {
	background: var(--surface);
}

.driver-detail {
	background: var(--surface-soft);
}

.connect-grid,
.driver-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
	gap: 54px;
	align-items: center;
}

.driver-grid {
	grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
}

.connect-copy > p,
.driver-copy > p {
	color: var(--muted);
	font-size: 1.05rem;
}

.connect-feature-list {
	display: grid;
	gap: 12px;
	margin: 28px 0 30px;
}

.connect-feature-list > div {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 18px;
	background: var(--surface-soft);
}

.connect-feature-list h3 {
	font-size: 1.05rem;
}

.connect-feature-list p {
	margin-bottom: 0;
	color: var(--muted);
}

.connect-visual,
.driver-visual {
	display: grid;
	place-items: center;
	border-radius: var(--radius);
	background: #eaf0ee;
	padding: 22px;
	box-shadow: var(--shadow);
}

.connect-visual img {
	max-height: 680px;
	object-fit: contain;
}

.driver-visual {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	background: #edf4f8;
}

.driver-visual img {
	width: 100%;
	max-height: 640px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	object-fit: contain;
	box-shadow: 0 12px 30px rgba(16, 42, 67, 0.12);
}

.workflow-list {
	display: grid;
	gap: 14px;
}

.workflow-item {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px;
	background: var(--surface);
}

.workflow-item span {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: var(--radius);
	background: var(--navy);
	color: #ffffff;
	font-weight: 900;
}

.workflow-item p {
	margin-bottom: 0;
	color: var(--muted);
}

.check-list {
	display: grid;
	gap: 12px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 28px;
}

.check-list li::before {
	position: absolute;
	left: 0;
	top: 0.2em;
	width: 16px;
	height: 16px;
	border-radius: var(--radius);
	background: var(--green);
	content: "";
}

.contact-section {
	background: var(--surface-warm);
}

.contact-inner {
	align-items: end;
}

.contact-inner h2 {
	margin-bottom: 0;
}

.contact-actions {
	justify-content: flex-end;
	margin-bottom: 0;
}

.site-footer {
	background: #0b1d30;
	color: rgba(255, 255, 255, 0.74);
	padding: 38px 0;
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
}

.footer-brand {
	color: #ffffff;
}

.footer-full-logo {
	width: min(280px, 62vw);
}

.site-footer p {
	max-width: 460px;
	margin: 0;
}

.site-footer a:not(.site-brand) {
	color: #ffffff;
	font-weight: 800;
}

.content-narrow {
	max-width: 800px;
	padding-top: 80px;
}

.content-article {
	border-radius: var(--radius);
	background: var(--surface);
	padding: 42px;
	box-shadow: var(--shadow);
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

@media (max-width: 1120px) {
	body.admin-bar .site-header {
		top: 46px;
	}

	.nav-toggle {
		display: grid;
		place-items: center;
	}

	.site-navigation {
		position: absolute;
		top: calc(var(--header-height) - 8px);
		left: 20px;
		right: 20px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		padding: 16px;
		border: 1px solid var(--line);
		border-radius: var(--radius);
		background: rgba(255, 255, 255, 0.98);
		box-shadow: var(--shadow);
	}

	.site-navigation.is-open {
		display: flex;
	}

	.primary-menu {
		display: grid;
		gap: 4px;
	}

	.primary-menu a,
	.site-header .primary-menu a,
	body:not(.home):not(.front-page) .primary-menu a {
		width: 100%;
		color: var(--muted);
	}

	.nav-cta,
	.site-header .nav-cta,
	body:not(.home):not(.front-page) .nav-cta {
		width: 100%;
		background: var(--navy);
		color: #ffffff;
		box-shadow: none;
	}

	h1 {
		font-size: 4.6rem;
	}

	h2 {
		font-size: 2.45rem;
	}

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

	.overview-grid,
	.workflow-grid,
	.trust-grid,
	.contact-inner,
	.driver-grid,
	.connect-grid,
	.showcase-grid,
	.product-card-primary,
	.product-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.showcase-controls {
		position: static;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.shot-tab {
		text-align: center;
	}

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

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

@media (max-width: 640px) {
	:root {
		--header-height: 76px;
	}

	body {
		font-size: 15px;
	}

	.site-nav-shell,
	.section-inner {
		width: min(100% - 28px, 1180px);
	}

	.brand-mark {
		width: 42px;
		height: 42px;
	}

	.brand-full-logo {
		width: min(214px, 58vw);
	}

	.custom-logo {
		max-width: min(220px, 58vw);
		max-height: 46px;
	}

	.brand-copy strong {
		font-size: 0.9rem;
	}

	.brand-copy small {
		font-size: 0.7rem;
	}

	.section {
		padding: 70px 0;
	}

	.hero-section {
		min-height: 92svh;
	}

	.hero-media img {
		opacity: 0.76;
	}

	.hero-shade {
		background:
			linear-gradient(90deg, rgba(10, 28, 49, 0.98) 0%, rgba(10, 28, 49, 0.86) 58%, rgba(10, 28, 49, 0.58) 100%),
			linear-gradient(0deg, rgba(10, 28, 49, 0.82) 0%, rgba(10, 28, 49, 0.22) 42%);
	}

	.hero-inner {
		padding: 130px 0 76px;
	}

	h1 {
		font-size: 3.5rem;
		line-height: 0.98;
	}

	h2 {
		font-size: 2rem;
	}

	.hero-lede {
		font-size: 1.04rem;
	}

	.site-tagline {
		font-size: 1.25rem;
	}

	.hero-actions,
	.contact-actions {
		display: grid;
	}

	.button {
		width: 100%;
	}

	.hero-proof,
	.feature-grid,
	.product-grid,
	.showcase-controls,
	.driver-visual {
		grid-template-columns: 1fr;
	}

	.product-card {
		padding: 22px;
	}

	.product-card h3 {
		font-size: 1.65rem;
	}

	.product-card-primary img {
		height: auto;
	}

	.feature-card {
		min-height: auto;
	}

	.workflow-item {
		grid-template-columns: 1fr;
	}

	.content-article {
		padding: 28px;
	}
}
