:root {
	--a2b-bg: #010101;
	--a2b-card: #131315;
	--a2b-input: #1a1a1d;
	--a2b-text: #f3f5f7;
	--a2b-muted: #cacaca;
	--a2b-accent: #ff6a1a;
	--a2b-line: rgba(255, 255, 255, 0.12);
	--a2b-max: 1287px;
	--a2b-font: "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--a2b-bg);
	color: var(--a2b-text);
	font-family: var(--a2b-font);
	font-size: 16px;
	line-height: 24px;
}

img {
	display: block;
}

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

button,
input {
	font: inherit;
}

p,
h1,
h2,
h3,
ul {
	margin: 0;
}

.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;
}

.a2b-logo {
	display: inline-flex;
	align-items: center;
	color: var(--a2b-text);
	line-height: 0;
}

.a2b-logo img {
	display: block;
	width: auto;
	height: 56px;
}

.a2b-logo__mark {
	color: var(--a2b-accent);
}

.a2b-header {
	padding: 8px 80px;
}

.a2b-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	max-width: var(--a2b-max);
	min-height: 51px;
	margin: 0 auto;
	gap: 24px;
}

.a2b-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	padding: 0;
	list-style: none;
}

.a2b-nav__link {
	display: inline-flex;
	align-items: center;
	padding: 12px 0;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	border-bottom: 3px solid transparent;
}

.a2b-nav__link.is-current {
	border-bottom-color: var(--a2b-accent);
}

.a2b-header__actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
}

.a2b-nav-toggle {
	display: none;
	width: 40px;
	height: 40px;
	padding: 10px 8px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.a2b-nav-toggle span {
	display: block;
	height: 2px;
	margin: 4px 0;
	background: #fff;
	border-radius: 2px;
}

.a2b-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	white-space: nowrap;
	cursor: pointer;
}

.a2b-btn--fill {
	border: 0;
	background: var(--a2b-accent);
	color: #fff;
}

.a2b-btn--fill:hover,
.a2b-btn--fill:focus-visible {
	background: #ff7d38;
}

.a2b-btn--line {
	border: 1px solid var(--a2b-accent);
	background: transparent;
	color: var(--a2b-text);
}

.a2b-btn--line:hover,
.a2b-btn--line:focus-visible {
	background: rgba(255, 106, 26, 0.08);
}

.a2b-btn:focus-visible,
.a2b-nav__link:focus-visible {
	outline: 2px solid var(--a2b-accent);
	outline-offset: 2px;
}

.a2b-hero {
	position: relative;
	height: 433px;
	overflow: hidden;
}

.a2b-hero__media {
	position: absolute;
	top: -94px;
	right: 100px;
	width: 662px;
	height: 527px;
	overflow: hidden;
}

.a2b-hero__media img {
	position: absolute;
	top: -7.75%;
	left: -4.4%;
	width: 106.07%;
	height: 107.75%;
	max-width: none;
}

.a2b-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(270deg, #010101 0%, rgba(1, 1, 1, 0) 19.029%),
		linear-gradient(270deg, rgba(1, 1, 1, 0) 82.938%, #010101 100%),
		linear-gradient(180deg, #010101 0%, rgba(1, 1, 1, 0) 17.961%),
		linear-gradient(180deg, rgba(1, 1, 1, 0) 83.486%, #010101 100%);
}

.a2b-hero__copy {
	position: absolute;
	top: 64px;
	left: max(86px, calc((100% - var(--a2b-max)) / 2 + 6px));
	width: min(559px, calc(100% - 120px));
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.a2b-kicker {
	color: var(--a2b-accent);
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
}

.a2b-hero h1 {
	font-size: 56px;
	font-weight: 800;
	line-height: 64px;
	letter-spacing: -1px;
}

.a2b-hero h1 span {
	color: var(--a2b-accent);
}

.a2b-hero__lead {
	max-width: 559px;
	color: var(--a2b-muted);
}

.a2b-hero__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.a2b-stack {
	display: flex;
	flex-direction: column;
	gap: 120px;
	width: min(var(--a2b-max), calc(100% - 160px));
	margin: 0 auto;
}

.a2b-icon {
	display: inline-flex;
	flex: 0 0 40px;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
}

.a2b-trust,
.a2b-quote,
.a2b-fleet,
.a2b-promises {
	background: var(--a2b-card);
	border-radius: 24px;
}

.a2b-trust {
	display: flex;
	gap: 38px;
	align-items: flex-start;
	padding: 24px 32px;
}

.a2b-trust__item {
	display: flex;
	flex: 1 1 0;
	gap: 10px;
	align-items: flex-start;
	min-width: 0;
}

.a2b-trust h2,
.a2b-service h3,
.a2b-promises h2,
.a2b-fleet__car h3,
.a2b-quote h2,
.a2b-services h2,
.a2b-fleet h2 {
	color: var(--a2b-text);
	font-weight: 700;
	text-transform: uppercase;
}

.a2b-trust h2 {
	font-size: 24px;
	line-height: 32px;
	letter-spacing: -1px;
}

.a2b-trust p,
.a2b-service p,
.a2b-promises p,
.a2b-fleet__copy p,
.a2b-quote__intro p,
.a2b-quote__secure span,
.a2b-footer__book p {
	color: var(--a2b-muted);
	font-weight: 400;
}

.a2b-quote {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 32px;
}

.a2b-quote__head {
	display: flex;
	gap: 32px;
	align-items: flex-start;
	justify-content: space-between;
}

.a2b-quote__intro {
	display: flex;
	flex: 1 1 auto;
	gap: 16px;
	align-items: flex-start;
	min-width: 0;
}

.a2b-quote h2 {
	font-size: 32px;
	line-height: 40px;
	letter-spacing: -1px;
}

.a2b-quote__intro > div,
.a2b-quote__secure > div {
	display: flex;
	flex-direction: column;
}

.a2b-quote__intro > div {
	gap: 8px;
}

.a2b-quote__secure {
	display: flex;
	flex: 0 0 auto;
	gap: 10px;
	align-items: flex-start;
	padding: 10px 16px;
	background: var(--a2b-input);
	border-radius: 10px;
}

.a2b-quote__secure strong {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
}

.a2b-quote__form [id^="a2b-booking-widget"] {
	max-width: none;
	margin: 0;
	font-family: var(--a2b-font);
}

.a2b-quote__form [id^="a2b-booking-widget"] .a2b-booking-panel {
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.a2b-quote__form [id^="a2b-booking-widget"] .a2b-booking-header {
	display: none;
}

.a2b-quote__perks {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: center;
	justify-content: center;
	padding: 0;
	list-style: none;
}

.a2b-quote__perks li {
	display: inline-flex;
	gap: 4px;
	align-items: center;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
}

.a2b-services {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.a2b-section-head {
	width: min(584px, 100%);
	margin: 0 auto;
	text-align: center;
}

.a2b-section-head .a2b-kicker,
.a2b-fleet__copy .a2b-kicker {
	margin-bottom: 8px;
}

.a2b-services h2,
.a2b-fleet h2 {
	font-size: 40px;
	line-height: 48px;
	letter-spacing: -1px;
}

.a2b-services__grid {
	display: flex;
	gap: 16px;
	align-items: stretch;
}

.a2b-service {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
	padding: 24px;
	background: var(--a2b-card);
	border-radius: 16px;
}

.a2b-service h3,
.a2b-promises h2 {
	font-size: 20px;
	line-height: 32px;
}

.a2b-service > div,
.a2b-trust__item > div,
.a2b-promises__item > div {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.a2b-fleet {
	position: relative;
	display: flex;
	gap: 64px;
	align-items: center;
	overflow: hidden;
	padding: 32px;
}

.a2b-fleet__glow {
	position: absolute;
	top: -260px;
	right: -19px;
	width: 904px;
	height: 904px;
	max-width: none;
	pointer-events: none;
}

.a2b-fleet__copy,
.a2b-fleet__cars {
	position: relative;
	z-index: 1;
}

.a2b-fleet__copy {
	display: flex;
	flex: 0 0 414px;
	flex-direction: column;
	gap: 16px;
	width: 414px;
}

.a2b-fleet__copy .a2b-kicker {
	margin-bottom: -8px;
}

.a2b-fleet__copy .a2b-btn {
	align-self: flex-start;
}

.a2b-fleet__cars {
	display: flex;
	flex: 1 1 auto;
	gap: 32px;
	align-items: stretch;
	justify-content: center;
	min-width: 0;
	min-height: 194px;
}

.a2b-fleet__car {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	min-width: 0;
	text-align: center;
}

.a2b-fleet__car h3 {
	font-size: 18px;
	line-height: 24px;
	letter-spacing: -1px;
}

.a2b-fleet__rule,
.a2b-promises__rule {
	flex: 0 0 1px;
	align-self: center;
	width: 1px;
	max-width: none;
}

.a2b-fleet__rule {
	height: 195px;
}

.a2b-promises__rule {
	height: 113px;
}

.a2b-fleet__shot {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 220px;
	height: 130px;
}

.a2b-fleet__shot img {
	width: auto;
	height: 120px;
	max-width: 100%;
	object-fit: contain;
}

.a2b-promises {
	display: flex;
	gap: 42px;
	align-items: stretch;
	padding: 32px;
}

.a2b-promises__item {
	display: flex;
	flex: 1 1 0;
	gap: 16px;
	align-items: flex-start;
	min-width: 0;
}

.a2b-promises__item img {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
}

.a2b-footer {
	width: min(var(--a2b-max), calc(100% - 160px));
	margin: 120px auto 0;
	border-top: 1px solid var(--a2b-line);
	border-bottom: 1px solid var(--a2b-line);
}

.a2b-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 32px 0;
}

.a2b-footer__book {
	display: flex;
	gap: 12px;
	align-items: center;
}

.a2b-footer__book-title,
.a2b-footer__social > p {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
}

.a2b-footer__social ul {
	display: flex;
	gap: 24px;
	align-items: center;
	margin-top: 12px;
	padding: 0;
	list-style: none;
}

.a2b-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.a2b-page {
	padding: 64px 0 80px;
}

.a2b-page__inner {
	width: min(var(--a2b-max), calc(100% - 160px));
	margin: 0 auto;
}

.a2b-page h1 {
	margin-bottom: 24px;
	font-size: 40px;
	line-height: 48px;
	letter-spacing: -1px;
	text-transform: uppercase;
}

.a2b-page__content {
	color: var(--a2b-muted);
}

.a2b-page__content > * + * {
	margin-top: 16px;
}

#quote,
#services,
#fleet,
#about,
#contact,
.a2b-quote__form [id^="a2b-booking-widget"] {
	scroll-margin-top: 24px;
}

@media (max-width: 1280px) {
	.a2b-header,
	.a2b-stack,
	.a2b-footer,
	.a2b-page__inner {
		width: min(var(--a2b-max), calc(100% - 64px));
	}

	.a2b-header {
		width: auto;
		padding: 8px 32px;
	}

	.a2b-hero__media {
		right: 0;
		width: min(560px, 48vw);
	}

	.a2b-hero__copy {
		left: 32px;
		width: min(520px, calc(52vw - 48px));
	}

	.a2b-fleet {
		flex-direction: column;
		align-items: stretch;
		gap: 40px;
	}

	.a2b-fleet__copy {
		flex-basis: auto;
		width: auto;
	}

	.a2b-trust h2 {
		font-size: 20px;
	}
}

@media (max-width: 1100px) {
	.a2b-hero {
		display: flex;
		flex-direction: column;
		height: auto;
		padding: 28px 32px 0;
	}

	.a2b-hero__copy {
		position: relative;
		top: auto;
		left: auto;
		order: -1;
		width: 100%;
	}

	.a2b-hero h1 {
		font-size: 44px;
		line-height: 50px;
	}

	.a2b-hero__media {
		position: relative;
		top: auto;
		right: auto;
		width: 100%;
		height: 300px;
		margin-top: 20px;
	}
}

@media (max-width: 980px) {
	.a2b-header {
		position: sticky;
		top: 0;
		z-index: 40;
		background: rgba(1, 1, 1, 0.94);
		backdrop-filter: blur(12px);
	}

	.a2b-nav-toggle {
		display: block;
	}

	.a2b-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.a2b-nav {
		position: absolute;
		top: 100%;
		right: 16px;
		left: 16px;
		z-index: 20;
		display: none;
		padding: 8px 8px 12px;
		background: var(--a2b-card);
		border-radius: 16px;
		box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
	}

	.a2b-nav.is-open {
		display: block;
	}

	.a2b-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.a2b-nav__link {
		padding: 14px 12px;
	}

	#quote,
	#services,
	#fleet,
	#about,
	#contact,
	.a2b-quote__form [id^="a2b-booking-widget"] {
		scroll-margin-top: 84px;
	}

	.a2b-quote__head,
	.a2b-footer__inner {
		flex-wrap: wrap;
	}

	.a2b-services__grid,
	.a2b-trust,
	.a2b-promises {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}

	.a2b-promises__rule,
	.a2b-fleet__rule {
		display: none;
	}

	.a2b-quote__secure {
		width: 100%;
	}

	.a2b-fleet__cars {
		display: grid;
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 28px;
	}
}

@media (max-width: 760px) {
	.a2b-services__grid,
	.a2b-trust,
	.a2b-promises {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.a2b-header {
		padding: 8px 16px;
		padding-top: max(8px, env(safe-area-inset-top));
	}

	.a2b-header__inner {
		gap: 8px;
		min-height: 48px;
	}

	.a2b-logo img {
		height: auto;
		width: auto;
		max-height: 44px;
		max-width: min(148px, 42vw);
	}

	.a2b-header .a2b-btn {
		width: auto;
		padding: 8px 12px;
		font-size: 14px;
	}

	.a2b-stack,
	.a2b-footer,
	.a2b-page__inner {
		width: calc(100% - 32px);
	}

	.a2b-stack {
		gap: 48px;
	}

	.a2b-footer {
		margin-top: 48px;
		margin-bottom: env(safe-area-inset-bottom);
	}

	.a2b-hero {
		padding: 20px 16px 0;
	}

	.a2b-hero h1 {
		font-size: 34px;
		line-height: 40px;
	}

	.a2b-hero__lead {
		font-size: 15px;
		line-height: 22px;
	}

	.a2b-hero__media {
		height: 210px;
		margin-top: 16px;
	}

	.a2b-hero__actions,
	.a2b-footer__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	.a2b-hero__actions .a2b-btn,
	.a2b-fleet__copy .a2b-btn {
		width: 100%;
	}

	.a2b-services h2,
	.a2b-fleet h2 {
		font-size: 30px;
		line-height: 36px;
	}

	.a2b-quote,
	.a2b-trust,
	.a2b-fleet,
	.a2b-promises,
	.a2b-service {
		padding: 20px 16px;
	}

	.a2b-quote {
		gap: 24px;
	}

	.a2b-quote__head,
	.a2b-quote__intro {
		gap: 12px;
	}

	.a2b-quote h2 {
		font-size: 24px;
		line-height: 30px;
	}

	.a2b-quote__perks {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px 12px;
		justify-items: start;
	}

	.a2b-quote__form [id^="a2b-booking-widget"] .a2b-time {
		grid-template-columns: minmax(0, 1fr) 10px minmax(0, 1fr);
	}

	.a2b-quote__form [id^="a2b-booking-widget"] .a2b-time select:last-of-type {
		grid-column: 1 / -1;
	}

	.a2b-fleet__shot {
		width: min(260px, 100%);
	}

	.a2b-footer__inner {
		padding: 24px 0 28px;
	}

	.a2b-footer__book {
		align-items: flex-start;
	}

	.a2b-footer__social ul {
		flex-wrap: wrap;
		gap: 8px 16px;
	}

	.a2b-footer__social a {
		width: 40px;
		height: 40px;
	}
}

@media (max-width: 480px) {
	.a2b-quote__form [id^="a2b-booking-widget"] .a2b-progress__item em {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}
}
