:root {
	--accent: #de2e21;
	--accent-dark: #b8241a;
	--text: #1a1a1a;
	--text-muted: #5c5c5c;
	--border: #e8e8e8;
	--bg: #f5f5f5;
	--surface: #ffffff;
	--shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	--page-padding: clamp(0.75rem, 2vw, 1.5rem);
	--content-max-width: 1400px;
	--sidebar-width: 300px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.5;
}

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

a:hover {
	text-decoration: underline;
}

.container {
	width: 100%;
	max-width: var(--content-max-width);
	margin: 0 auto;
	padding-left: var(--page-padding);
	padding-right: var(--page-padding);
}

/* Header */
.site-header {
	background: var(--surface);
	border-bottom: 3px solid var(--accent);
	box-shadow: var(--shadow);
	position: sticky;
	top: 0;
	z-index: 100;
	padding-left: env(safe-area-inset-left, 0);
	padding-right: env(safe-area-inset-right, 0);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.85rem 0;
	flex-wrap: wrap;
}

.site-header__brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
}

.site-header__brand-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	line-height: 0;
}

.site-header__brand-link:hover {
	text-decoration: none;
}

.site-header__logo {
	display: block;
	height: 3.75rem;
	width: auto;
	max-width: 280px;
	object-fit: contain;
}

.site-header__logo-fallback {
	font-size: 1.65rem;
	font-weight: 700;
	color: var(--accent);
	text-transform: lowercase;
	letter-spacing: -0.02em;
}

.site-header__nav {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.site-header__phone {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.65rem 1.1rem;
	border: 2px solid var(--accent);
	border-radius: 12px;
	background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
	color: var(--text);
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.site-header__phone:hover {
	background: rgba(222, 46, 33, 0.06);
	border-color: var(--accent-dark);
	text-decoration: none;
	transform: translateY(-1px);
}

.site-header__phone-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
}

.site-header__phone-icon svg {
	width: 1.25rem !important;
	height: 1.25rem !important;
	max-width: 1.25rem !important;
	max-height: 1.25rem !important;
	display: block;
}

.sidebar__cta-icon svg {
	width: 1.15rem !important;
	height: 1.15rem !important;
	max-width: 1.15rem !important;
	max-height: 1.15rem !important;
	display: block;
}

/* Isolamento da CSS Autolina */
body.as-landing svg:not(.site-header__phone-icon svg):not(.sidebar__cta-icon svg):not(.sidebar__icon svg):not(.sidebar__swipe-hint svg) {
	max-width: none;
}

.site-header__phone-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.15rem;
	line-height: 1.2;
}

.site-header__phone-label {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-muted);
	letter-spacing: 0.02em;
}

.site-header__phone-number {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--accent);
	white-space: nowrap;
}

/* Landing header – Kundenbereich (mobile menu) */
.site-header__nav--landing {
	gap: 0.65rem;
}

.site-header__portal--mobile {
	position: relative;
	display: none !important;
	align-items: center;
	visibility: hidden;
	width: 0;
	max-width: 0;
	overflow: hidden;
	margin: 0;
	padding: 0;
	border: none;
	pointer-events: none;
}

.site-header__user-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	font-family: inherit;
	line-height: 0;
	-webkit-appearance: none;
	appearance: none;
}

.site-header__user-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
}

.site-header__user-icon svg {
	width: 1.25rem;
	height: 1.25rem;
	display: block;
}

.site-header__user-menu {
	position: absolute;
	top: calc(100% + 0.5rem);
	right: 0;
	z-index: 250;
	min-width: 280px;
	max-width: min(320px, calc(100vw - 2rem));
	padding: 1rem 1.1rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.site-header__user-menu[hidden] {
	display: none !important;
}

#header-menu-welcome[hidden],
#header-menu-login[hidden] {
	display: none !important;
}

.site-header__user-menu-title {
	margin: 0 0 0.35rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--text);
}

.site-header__user-greeting {
	margin: 0 0 0.75rem;
	font-size: 0.9rem;
	line-height: 1.35;
	color: var(--text);
}

.site-header__user-greeting strong {
	display: block;
	font-size: 1rem;
	font-weight: 700;
}

.site-header__user-menu-actions {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.site-header__user-menu-actions .site-header__portal-btn {
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}

.site-header__portal-login {
	position: relative;
}

.site-header__portal-login-toggle {
	cursor: pointer;
	font-family: inherit;
}

.site-header__login-panel {
	position: absolute;
	top: calc(100% + 0.5rem);
	right: 0;
	z-index: 250;
	min-width: 280px;
	max-width: min(320px, calc(100vw - 2rem));
	padding: 1rem 1.1rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.site-header__login-intro {
	margin: 0 0 0.75rem;
	font-size: 0.8rem;
	color: var(--text-muted);
	line-height: 1.35;
}

.site-header__login-form {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.site-header__login-label {
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--text-muted);
}

.site-header__login-input {
	width: 100%;
	padding: 0.5rem 0.65rem;
	border: 1px solid var(--border);
	border-radius: 8px;
	font-size: 0.9rem;
	font-family: inherit;
	line-height: 1.3;
}

.site-header__login-input:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 2px rgba(222, 46, 33, 0.15);
}

.site-header__login-submit {
	width: 100%;
	margin-top: 0.15rem;
	cursor: pointer;
	font-family: inherit;
}

.site-header__login-error {
	margin: 0.35rem 0 0;
	font-size: 0.78rem;
	color: #b91c1c;
	line-height: 1.3;
}

.site-header__portal-link {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--accent);
	text-decoration: none;
	white-space: nowrap;
}

.site-header__portal-link:hover {
	text-decoration: underline;
}

.site-header__portal-btn {
	display: inline-block;
	padding: 0.4rem 0.75rem;
	border-radius: 8px;
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid var(--accent);
	color: var(--accent);
	background: var(--surface);
	line-height: 1.2;
	white-space: nowrap;
}

.site-header__portal-btn:hover {
	background: var(--accent);
	color: #fff;
	text-decoration: none;
}

.site-header__portal-btn:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

@media (max-width: 768px) {
	body.as-landing .site-header__portal--mobile {
		display: flex !important;
		visibility: visible;
		width: auto;
		max-width: none;
		overflow: visible;
		pointer-events: auto;
	}

	body.as-landing .sidebar__portal-desktop {
		display: none !important;
	}

	body.as-landing .site-header__user-menu {
		position: fixed;
		left: 0;
		right: 0;
		top: var(--site-header-height, 3.35rem);
		min-width: 0;
		max-width: none;
		border-radius: 0;
		border-left: none;
		border-right: none;
		border-top: none;
		padding: 0.85rem max(1rem, env(safe-area-inset-right, 0px)) 1rem max(1rem, env(safe-area-inset-left, 0px));
		box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
	}
}

/* Hero video */
.hero {
	background: #111;
	border-bottom: 1px solid var(--border);
	width: 100%;
}

.hero__video-wrap {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	line-height: 0;
}

.hero__video {
	display: block;
	width: 100%;
	height: min(38vh, 400px);
	min-height: 200px;
	object-fit: cover;
	object-position: center 28%;
	background: #111;
}

/* Page layout */
.page-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) var(--sidebar-width);
	gap: 1.5rem;
	align-items: stretch;
}

.page-layout__main {
	min-width: 0;
}

/* Vehicles section */
.vehicles {
	padding: 1.25rem 0 2rem;
}

.vehicles__card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	box-shadow: var(--shadow);
	overflow: visible;
}

.vehicles__head {
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--border);
	background: linear-gradient(180deg, rgba(222, 46, 33, 0.05) 0%, transparent 100%);
}

.vehicles__head h2 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
}

.vehicles__head p {
	margin: 0.25rem 0 0;
	font-size: 0.9rem;
	color: var(--text-muted);
}

.vehicles__iframe-wrap {
	width: 100%;
	background: #fff;
	overflow: visible;
}

body.as-landing .vehicles__iframe-wrap iframe,
.vehicles__iframe-wrap iframe {
	display: block;
	width: 1px;
	min-width: 100%;
	border: 0;
	overflow: visible !important;
}

/* Sidebar */
.sidebar {
	min-height: 0;
	min-width: 0;
	max-width: 100%;
}

.sidebar__card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	box-shadow: var(--shadow);
	padding: 1.25rem;
	position: sticky;
	top: 6.75rem;
	align-self: start;
}

.sidebar__title {
	margin: 0 0 0.35rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--text);
}

.sidebar__intro {
	margin: 0 0 1rem;
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.45;
}

.sidebar__login {
	margin-bottom: 1.25rem;
	padding-bottom: 1.15rem;
	border-bottom: 1px solid #e8e8e8;
}

.sidebar__login-title {
	margin: 0 0 0.25rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text);
}

.sidebar__login-intro {
	margin: 0 0 0.75rem;
	font-size: 0.82rem;
	color: var(--text-muted);
	line-height: 1.4;
}

.sidebar__login-form {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.sidebar__login-label {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--text);
}

.sidebar__login-input {
	width: 100%;
	padding: 0.5rem 0.6rem;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 0.9rem;
	font-family: inherit;
	background: #fff;
	box-sizing: border-box;
}

.sidebar__login-input:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 2px rgba(222, 46, 33, 0.15);
}

.sidebar__login-btn {
	margin-top: 0.35rem;
	width: 100%;
	padding: 0.55rem 0.75rem;
	border: 0;
	border-radius: 8px;
	background: var(--accent);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.15s ease;
}

.sidebar__login-btn:hover {
	background: var(--accent-dark);
}

.sidebar__login-btn:disabled {
	opacity: 0.7;
	cursor: wait;
}

.sidebar__login-error {
	margin: 0.35rem 0 0;
	font-size: 0.8rem;
	color: #991b1b;
	line-height: 1.35;
}

.sidebar__portal-greeting {
	margin: 0 0 0.65rem;
}

.sidebar__portal-greeting-line {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--text-muted);
	line-height: 1.4;
}

.sidebar__portal-greeting-name {
	display: block;
	margin-top: 0.15rem;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--text);
}

.sidebar__portal-cta {
	display: block;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
}

.sidebar__portal-cta:hover {
	color: #fff;
	text-decoration: none;
}

.sidebar__portal-actions {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.sidebar__portal-logout {
	display: block;
	width: 100%;
	padding: 0.5rem 0.75rem;
	border-radius: 8px;
	font-size: 0.85rem;
	font-weight: 600;
	font-family: inherit;
	text-align: center;
	text-decoration: none;
	border: 1px solid var(--accent);
	color: var(--accent);
	background: var(--surface);
	box-sizing: border-box;
	line-height: 1.3;
}

.sidebar__portal-logout:hover {
	background: var(--accent);
	color: #fff;
	text-decoration: none;
}

.sidebar__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.sidebar__item {
	display: flex;
	gap: 0.65rem;
	align-items: flex-start;
	font-size: 0.88rem;
	line-height: 1.4;
}

.sidebar__item-inner {
	display: flex;
	gap: 0.65rem;
	align-items: flex-start;
	min-width: 0;
}

.sidebar__item-text {
	min-width: 0;
}

.sidebar__item strong {
	display: block;
	font-size: 0.92rem;
	color: var(--text);
	margin-bottom: 0.1rem;
}

.sidebar__item span {
	color: var(--text-muted);
}

.sidebar__icon {
	flex-shrink: 0;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	background: rgba(222, 46, 33, 0.12);
	color: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.1rem;
}

.sidebar__icon svg {
	width: 0.95rem !important;
	height: 0.95rem !important;
	max-width: 0.95rem !important;
	max-height: 0.95rem !important;
	display: block;
	stroke: currentColor;
	fill: none;
}

.sidebar__cta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1.25rem;
	padding: 0.85rem 1rem;
	border-radius: 10px;
	background: var(--accent);
	color: #fff;
	text-decoration: none;
	transition: background 0.15s ease;
}

.sidebar__cta:hover {
	background: var(--accent-dark);
	text-decoration: none;
}

.sidebar__cta-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
}

.sidebar__cta-icon svg {
	width: 1.15rem !important;
	height: 1.15rem !important;
	max-width: 1.15rem !important;
	max-height: 1.15rem !important;
	display: block;
}

.sidebar__cta-text {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	line-height: 1.2;
}

.sidebar__cta-text span {
	font-size: 0.8rem;
	opacity: 0.9;
}

.sidebar__cta-text strong {
	font-size: 1.2rem;
	font-weight: 700;
}

@media (max-width: 768px) {
	.sidebar__cta {
		margin: 0 1rem 0.85rem;
		background: #fff;
		color: var(--accent);
	}

	.sidebar__cta:hover {
		background: #fff;
		color: var(--accent-dark);
	}

	.sidebar__cta-icon {
		background: rgba(222, 46, 33, 0.12);
		color: var(--accent);
	}

	.sidebar__login {
		margin: 0 1rem 0.85rem;
		padding: 0.85rem 1rem;
		border-bottom: none;
		border-radius: 10px;
		background: #fff;
	}

	.sidebar__login-title {
		color: var(--text);
	}

	.sidebar__login-intro {
		color: var(--muted);
	}
}

/* Sidebar swipe hint (mobile only) */
.sidebar__swipe-hint {
	display: none;
}

/* Footer */
.site-footer {
	background: #222;
	color: #ccc;
	padding: 0.75rem 0;
	margin-top: auto;
}

.site-footer__inner {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.35rem 0.6rem;
	text-align: center;
	font-size: 0.85rem;
	line-height: 1.4;
}

.site-footer__sep {
	color: #666;
	user-select: none;
}

.site-footer a {
	color: #fff;
}

.site-footer a:hover {
	color: var(--accent);
}

.site-footer__copy {
	color: #888;
	font-size: 0.85rem;
}

@media (min-width: 768px) {
	.vehicles {
		padding-bottom: 2rem;
	}

	.site-header__phone-number {
		font-size: 1.55rem;
	}

	.hero__video {
		height: min(34vh, 360px);
		min-height: 180px;
	}
}

@media (max-width: 1024px) {
	.page-layout {
		grid-template-columns: 1fr;
	}

	.sidebar {
		order: -1;
	}

	.page-layout__main {
		order: 1;
	}

	.sidebar__card {
		position: static;
		top: auto;
	}

	.sidebar__list {
		gap: 0.65rem;
	}
}

@media (max-width: 768px) {
	:root {
		--page-padding: 0.75rem;
	}

	.site-header .container {
		padding-left: max(1rem, env(safe-area-inset-left, 0px));
		padding-right: max(1rem, env(safe-area-inset-right, 0px));
	}

	.site-header__inner {
		padding: 0.45rem 0;
		gap: 0.35rem;
	}

	body.as-landing .site-header__inner {
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
		gap: 0.5rem;
	}

	body.as-landing .site-header__brand {
		flex: 1 1 auto;
		min-width: 0;
	}

	body.as-landing .site-header__nav--landing {
		flex: 0 0 auto;
		flex-wrap: nowrap;
		gap: 0.45rem;
		align-items: center;
	}

	body.as-landing .site-header__nav--landing {
		gap: 0.45rem;
	}

	body.as-landing .site-header__phone-text {
		display: none;
	}

	body.as-landing .site-header__phone {
		padding: 0;
		border: none;
		background: transparent;
		gap: 0;
	}

	body.as-landing .site-header__phone:hover {
		background: transparent;
		border-color: transparent;
		transform: none;
	}

	.site-header__logo {
		height: 2.5rem;
		max-width: 155px;
	}

	.site-header__phone {
		padding: 0.3rem 0.45rem;
		gap: 0.4rem;
		border-radius: 8px;
		border-width: 1px;
	}

	.site-header__phone-icon {
		width: 1.85rem;
		height: 1.85rem;
	}

	.site-header__phone-number {
		font-size: 0.8rem;
		font-weight: 600;
	}

	.site-header__phone-label {
		font-size: 0.65rem;
	}

	.site-header__user-icon {
		width: 1.85rem;
		height: 1.85rem;
	}

	.site-header__user-icon svg {
		width: 1rem;
		height: 1rem;
	}

	.hero__video {
		height: min(26vh, 200px);
		min-height: 140px;
		object-position: center 32%;
	}

	.hero {
		border-bottom: none;
		margin-bottom: 0;
	}

	.vehicles {
		padding: 0 0 1.5rem;
	}

	.vehicles > .container {
		overflow-x: visible;
	}

	.page-layout {
		overflow-x: visible;
		gap: 0.85rem;
	}

	.vehicles__head {
		padding: 0.85rem 1rem;
	}

	.vehicles__head h2 {
		font-size: 1rem;
	}

	.vehicles__head p {
		font-size: 0.85rem;
	}

	.sidebar {
		width: 100vw;
		max-width: 100vw;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}

	.sidebar__card {
		padding: 0 0 0.55rem;
		min-width: 0;
		max-width: none;
		width: 100%;
		overflow: hidden;
		border: none;
		border-radius: 0;
		box-shadow: 0 4px 20px rgba(180, 30, 20, 0.25);
		background: linear-gradient(125deg, #e83528 0%, #d4291d 38%, #b8241a 72%, #9a1a12 100%);
	}

	.sidebar__title,
	.sidebar__intro {
		display: none;
	}

	.sidebar__slider {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		overflow: hidden;
		padding: 0;
		position: relative;
	}

	.sidebar__swipe-hint {
		display: flex;
		position: absolute;
		right: 0.4rem;
		top: 50%;
		transform: translateY(-50%);
		align-items: center;
		justify-content: center;
		width: 1.65rem;
		height: 1.65rem;
		color: rgba(255, 255, 255, 0.7);
		pointer-events: none;
		z-index: 2;
		opacity: 0.65;
		animation: as-swipe-nudge 2.4s ease-in-out infinite;
		transition: opacity 0.45s ease, visibility 0.45s ease;
	}

	.sidebar__swipe-hint.is-hidden {
		opacity: 0;
		visibility: hidden;
		animation: none;
	}

	.sidebar__swipe-hint svg {
		width: 1rem !important;
		height: 1rem !important;
		max-width: 1rem !important;
		max-height: 1rem !important;
		display: block;
		stroke: currentColor !important;
		fill: none !important;
	}

	@keyframes as-swipe-nudge {
		0%, 100% {
			transform: translateY(-50%) translateX(0);
			opacity: 0.4;
		}
		50% {
			transform: translateY(-50%) translateX(4px);
			opacity: 0.8;
		}
	}

	@media (prefers-reduced-motion: reduce) {
		.sidebar__swipe-hint {
			animation: none;
			opacity: 0.55;
		}
	}

	body.as-landing .sidebar__list.sidebar__slider-track,
	.sidebar__list {
		display: flex !important;
		flex-direction: row !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		list-style: none !important;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	body.as-landing .sidebar__list.sidebar__slider-track::-webkit-scrollbar,
	.sidebar__list::-webkit-scrollbar {
		display: none;
	}

	body.as-landing .sidebar__item,
	.sidebar__item {
		flex: 0 0 100% !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		scroll-snap-align: start;
		scroll-snap-stop: always;
		padding: 0.5rem 0.65rem !important;
		min-height: 4.5rem;
		font-size: 0.84rem;
		display: flex !important;
		flex-direction: row !important;
		align-items: stretch !important;
		justify-content: stretch !important;
		box-sizing: border-box !important;
		background: transparent !important;
		border: none !important;
		border-radius: 0 !important;
		box-shadow: none !important;
		gap: 0 !important;
	}

	body.as-landing .sidebar__item-inner,
	.sidebar__item-inner {
		display: flex !important;
		flex-direction: row !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 0.75rem;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		padding: 0.75rem 1rem !important;
		text-align: left;
		box-sizing: border-box !important;
		background: rgba(255, 255, 255, 0.14);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		border: 1px solid rgba(255, 255, 255, 0.24);
		border-radius: 14px;
		box-shadow:
			0 8px 28px rgba(0, 0, 0, 0.16),
			inset 0 1px 0 rgba(255, 255, 255, 0.22);
	}

	body.as-landing .sidebar__item-text,
	.sidebar__item-text {
		flex: 0 1 auto !important;
		min-width: 0 !important;
		max-width: calc(100% - 3.25rem) !important;
	}

	body.as-landing .sidebar__icon,
	.sidebar__icon {
		margin-top: 0 !important;
		flex-shrink: 0 !important;
		width: 2.4rem !important;
		height: 2.4rem !important;
		border-radius: 12px !important;
		background: #fff !important;
		color: #de2e21 !important;
		box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15) !important;
	}

	body.as-landing .sidebar__icon svg,
	.sidebar__icon svg {
		width: 1.2rem !important;
		height: 1.2rem !important;
		max-width: 1.2rem !important;
		max-height: 1.2rem !important;
		display: block !important;
		color: #de2e21 !important;
	}

	body.as-landing .sidebar__icon svg path,
	body.as-landing .sidebar__icon svg polyline,
	body.as-landing .sidebar__icon svg line,
	body.as-landing .sidebar__icon svg rect,
	.sidebar__icon svg path,
	.sidebar__icon svg polyline,
	.sidebar__icon svg line,
	.sidebar__icon svg rect {
		stroke: #de2e21 !important;
		fill: none !important;
	}

	body.as-landing .sidebar__icon svg polygon,
	.sidebar__icon svg polygon {
		fill: #de2e21 !important;
		stroke: none !important;
	}

	body.as-landing .sidebar__item strong,
	.sidebar__item strong {
		font-size: 0.95rem;
		font-weight: 700;
		color: #fff !important;
		margin-bottom: 0.15rem;
		letter-spacing: -0.01em;
	}

	body.as-landing .sidebar__item-text > span,
	.sidebar__item-text > span {
		color: rgba(255, 255, 255, 0.88) !important;
		font-size: 0.8rem;
		line-height: 1.35;
	}

	.site-footer {
		padding: 0.85rem 0;
	}

	.site-footer__inner {
		flex-direction: column;
		gap: 0.35rem;
		font-size: 0.8rem;
	}

	.site-footer__sep {
		display: none;
	}
}

@media (max-width: 480px) {
	.site-header__inner {
		flex-direction: row;
		align-items: center;
		text-align: left;
	}

	.site-header__brand {
		justify-content: flex-start;
		flex: 1;
		min-width: 0;
	}

	.site-header__nav {
		justify-content: flex-end;
		flex-shrink: 0;
	}

	.site-header__phone {
		justify-content: flex-start;
	}

	.site-header__phone-label {
		display: none;
	}

	.site-header__phone-number {
		font-size: 0.75rem;
	}

	.site-header__logo {
		height: 2.25rem;
		max-width: 145px;
	}

	.hero__video {
		height: min(24vh, 180px);
		min-height: 120px;
	}
}
