/* =====================================================================
   Excellence Theme – main.css
   Mobile first. Dunkles Premium-Design mit roten Akzenten.
   ===================================================================== */

:root {
	--ex-primary: #e11d2a;
	--ex-accent: #ff3b3b;
	--ex-bg: #0a0a0c;
	--ex-text: #e8e8ea;
	--ex-button: #e11d2a;

	--ex-surface: #121217;
	--ex-surface-2: #17171e;
	--ex-line: rgba(255, 255, 255, 0.08);
	--ex-muted: #9a9aa6;
	--ex-white: #ffffff;

	--ex-radius: 16px;
	--ex-radius-sm: 10px;
	--ex-maxw: 1200px;
	--ex-header-h: 76px;

	--ex-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
	--ex-shadow-red: 0 14px 40px rgba(225, 29, 42, 0.30);

	--ex-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--ex-bg);
	color: var(--ex-text);
	font-family: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

h1, h2, h3, h4 {
	margin: 0 0 0.5em;
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--ex-white);
}

p {
	margin: 0 0 1em;
}

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

.container {
	width: 100%;
	max-width: var(--ex-maxw);
	margin: 0 auto;
	padding: 0 20px;
}

.section {
	padding: 64px 0;
	position: relative;
}

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	width: 1px;
	height: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	background: var(--ex-primary);
	color: #fff;
	padding: 10px 16px;
	border-radius: 0 0 8px 0;
}
.skip-link:focus {
	left: 0;
}

/* -------------------- Section heads -------------------- */
.section-head {
	max-width: 720px;
	margin: 0 auto 40px;
	text-align: center;
}

.section-kicker {
	display: inline-block;
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ex-primary);
	font-weight: 700;
	margin-bottom: 12px;
}

.section-title {
	font-size: clamp(1.7rem, 4.5vw, 2.6rem);
}

.section-lead {
	color: var(--ex-muted);
	font-size: 1.05rem;
}

/* -------------------- Buttons -------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.97rem;
	letter-spacing: 0.01em;
	cursor: pointer;
	border: 1px solid transparent;
	transition: transform 0.2s var(--ex-ease), box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
	text-align: center;
	line-height: 1.1;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background: var(--ex-button);
	color: #fff;
	box-shadow: var(--ex-shadow-red);
}
.btn-primary:hover {
	background: var(--ex-accent);
}

.btn-outline {
	background: rgba(255, 255, 255, 0.02);
	border-color: rgba(255, 255, 255, 0.22);
	color: #fff;
}
.btn-outline:hover {
	border-color: var(--ex-primary);
	color: #fff;
}

.btn-lg {
	padding: 17px 32px;
	font-size: 1.02rem;
}

.btn-block {
	display: flex;
	width: 100%;
}

/* -------------------- Header -------------------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	min-height: var(--ex-header-h);
	display: flex;
	align-items: center;
	transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	border-bottom: 1px solid transparent;
}

.site-header.scrolled {
	background: rgba(10, 10, 12, 0.72);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom-color: var(--ex-line);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
}

.site-branding .site-title {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #fff;
}
.site-branding img,
.custom-logo {
	max-height: 48px;
	width: auto;
}

.main-navigation .nav-menu {
	display: flex;
	gap: 28px;
	align-items: center;
}
.main-navigation a {
	color: rgba(255, 255, 255, 0.82);
	font-weight: 600;
	font-size: 0.95rem;
	position: relative;
	padding: 6px 0;
}
.main-navigation a:hover {
	color: #fff;
}
.main-navigation a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--ex-primary);
	transition: width 0.25s var(--ex-ease);
}
.main-navigation a:hover::after {
	width: 100%;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.header-cta {
	padding: 11px 20px;
	font-size: 0.9rem;
}

/* Burger */
.menu-toggle {
	display: none;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 8px;
}
.burger {
	display: block;
	width: 26px;
	height: 18px;
	position: relative;
}
.burger span {
	position: absolute;
	left: 0;
	height: 2px;
	width: 100%;
	background: #fff;
	border-radius: 2px;
	transition: transform 0.3s var(--ex-ease), opacity 0.2s ease, top 0.3s ease;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 8px; }
.burger span:nth-child(3) { top: 16px; }

.menu-open .burger span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

/* -------------------- Hero -------------------- */
.hero {
	position: relative;
	min-height: 86vh;
	display: flex;
	align-items: center;
	padding: calc(var(--ex-header-h) + 48px) 0 64px;
	overflow: hidden;
	isolation: isolate;
	background:
		radial-gradient(120% 80% at 80% 0%, rgba(225, 29, 42, 0.18), transparent 55%),
		linear-gradient(180deg, #0c0c10 0%, #08080a 60%, #0a0a0c 100%);
}

.hero-media {
	position: absolute;
	inset: 0;
	z-index: -2;
	overflow: hidden;
}
.hero-media img,
.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	--ex-hero-overlay: 0.65;
	background:
		linear-gradient(180deg,
			rgba(8, 8, 10, calc(var(--ex-hero-overlay) * 0.7)) 0%,
			rgba(8, 8, 10, var(--ex-hero-overlay)) 55%,
			rgba(8, 8, 10, calc(var(--ex-hero-overlay) + 0.2)) 100%),
		radial-gradient(120% 90% at 78% 8%, rgba(225, 29, 42, 0.24), transparent 60%);
}

/* Dezente rote Lichtkante über Video/Bild */
.hero.has-video .hero-overlay::after,
.hero.has-image .hero-overlay::after {
	content: "";
	position: absolute;
	inset: 0;
	box-shadow: inset 0 -120px 120px -60px rgba(225, 29, 42, 0.22);
	pointer-events: none;
}

.hero.no-media::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 54px 54px;
	mask-image: radial-gradient(80% 70% at 50% 30%, #000 30%, transparent 80%);
	-webkit-mask-image: radial-gradient(80% 70% at 50% 30%, #000 30%, transparent 80%);
}

.hero-glow {
	position: absolute;
	top: -20%;
	right: -10%;
	width: 60vw;
	height: 60vw;
	max-width: 720px;
	max-height: 720px;
	background: radial-gradient(circle, rgba(225, 29, 42, 0.32) 0%, transparent 65%);
	filter: blur(30px);
	z-index: -1;
	pointer-events: none;
}

.hero-inner {
	max-width: 760px;
}

.hero-kicker {
	display: inline-block;
	padding: 7px 16px;
	border: 1px solid rgba(225, 29, 42, 0.45);
	border-radius: 999px;
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(225, 29, 42, 0.12);
	margin-bottom: 22px;
	font-weight: 700;
}

.hero-title {
	font-size: clamp(2.3rem, 8vw, 4.4rem);
	margin-bottom: 18px;
	letter-spacing: -0.03em;
}

.hero-subtitle {
	font-size: clamp(1.02rem, 2.6vw, 1.22rem);
	color: rgba(232, 232, 234, 0.85);
	max-width: 600px;
	margin-bottom: 30px;
}

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

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 26px;
}
.hero-badges li {
	display: flex;
	align-items: center;
	gap: 9px;
	color: rgba(232, 232, 234, 0.82);
	font-weight: 600;
	font-size: 0.92rem;
}
.badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ex-primary);
	box-shadow: 0 0 12px var(--ex-primary);
}

.hero-scroll {
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	width: 26px;
	height: 42px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 14px;
	display: none;
}
.hero-scroll span {
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 8px;
	background: var(--ex-primary);
	border-radius: 2px;
	animation: heroScroll 1.6s var(--ex-ease) infinite;
}
@keyframes heroScroll {
	0% { opacity: 0; transform: translate(-50%, 0); }
	40% { opacity: 1; }
	100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* -------------------- Vehicles -------------------- */
.vehicles {
	background: linear-gradient(180deg, var(--ex-bg) 0%, #0c0c11 100%);
}

.vehicle-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.vehicle-card {
	background: linear-gradient(180deg, var(--ex-surface) 0%, var(--ex-surface-2) 100%);
	border: 1px solid var(--ex-line);
	border-radius: var(--ex-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.35s var(--ex-ease), border-color 0.35s ease, box-shadow 0.35s ease;
}
.vehicle-card:hover {
	transform: translateY(-6px);
	border-color: rgba(225, 29, 42, 0.5);
	box-shadow: var(--ex-shadow);
}

.vehicle-media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}
.vehicle-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ex-ease);
}
.vehicle-card:hover .vehicle-media img {
	transform: scale(1.05);
}

.vehicle-media.is-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(120% 120% at 70% 20%, rgba(225, 29, 42, 0.28), transparent 55%),
		linear-gradient(145deg, #16161c 0%, #0c0c11 100%);
}
.placeholder-glow {
	position: absolute;
	width: 60%;
	height: 60%;
	background: radial-gradient(circle, rgba(225, 29, 42, 0.35), transparent 70%);
	filter: blur(28px);
}
.placeholder-name {
	position: relative;
	z-index: 1;
	font-weight: 800;
	font-size: 1.3rem;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.92);
	text-align: center;
	padding: 0 16px;
}

.vehicle-price-tag {
	position: absolute;
	top: 14px;
	left: 14px;
	background: var(--ex-primary);
	color: #fff;
	padding: 7px 14px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.85rem;
	box-shadow: var(--ex-shadow-red);
}

.vehicle-body {
	padding: 22px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.vehicle-name {
	font-size: 1.4rem;
}
.vehicle-desc {
	color: var(--ex-muted);
	font-size: 0.95rem;
	margin-bottom: 18px;
}

.vehicle-specs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 16px;
}
.vehicle-specs li {
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--ex-line);
	border-radius: var(--ex-radius-sm);
	padding: 10px 12px;
}
.spec-label {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ex-muted);
}
.spec-value {
	font-weight: 700;
	color: #fff;
	font-size: 0.98rem;
}

.vehicle-conditions {
	border-top: 1px solid var(--ex-line);
	padding-top: 14px;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.vehicle-conditions li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.92rem;
}
.cond-label {
	color: var(--ex-muted);
}
.cond-value {
	font-weight: 700;
	color: #fff;
}

.vehicle-body .btn {
	margin-top: auto;
}

/* -------------------- Advantages -------------------- */
.advantages {
	background: #0c0c11;
}
.advantages-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}
.advantage-card {
	position: relative;
	background: linear-gradient(180deg, var(--ex-surface) 0%, var(--ex-surface-2) 100%);
	border: 1px solid var(--ex-line);
	border-radius: var(--ex-radius);
	padding: 26px 24px;
	overflow: hidden;
	transition: transform 0.3s var(--ex-ease), border-color 0.3s ease;
}
.advantage-card:hover {
	transform: translateY(-4px);
	border-color: rgba(225, 29, 42, 0.45);
}
.advantage-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 0;
	background: var(--ex-primary);
	transition: height 0.3s var(--ex-ease);
}
.advantage-card:hover::before {
	height: 100%;
}
.advantage-num {
	display: block;
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--ex-primary);
	margin-bottom: 12px;
	letter-spacing: 0.04em;
}
.advantage-title {
	font-size: 1.18rem;
	margin-bottom: 8px;
}
.advantage-text {
	color: var(--ex-muted);
	font-size: 0.95rem;
	margin: 0;
}

/* -------------------- Pricing -------------------- */
.pricing {
	background: linear-gradient(180deg, #0c0c11 0%, var(--ex-bg) 100%);
}
.pricing-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 28px;
}
.price-box {
	background: linear-gradient(180deg, var(--ex-surface) 0%, var(--ex-surface-2) 100%);
	border: 1px solid var(--ex-line);
	border-radius: var(--ex-radius);
	padding: 26px 20px;
	text-align: center;
	transition: transform 0.3s var(--ex-ease), border-color 0.3s ease;
}
.price-box:hover {
	transform: translateY(-4px);
	border-color: rgba(225, 29, 42, 0.45);
}
.price-label {
	display: block;
	color: var(--ex-muted);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 10px;
}
.price-value {
	display: block;
	font-size: 1.7rem;
	font-weight: 800;
	color: #fff;
}
.price-sub {
	display: block;
	color: var(--ex-muted);
	font-size: 0.82rem;
	margin-top: 4px;
}

.offer-box {
	background: linear-gradient(120deg, rgba(225, 29, 42, 0.16), rgba(225, 29, 42, 0.04));
	border: 1px solid rgba(225, 29, 42, 0.4);
	border-radius: var(--ex-radius);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 22px;
}
.offer-flag {
	display: inline-block;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ex-primary);
	font-weight: 700;
	margin-bottom: 8px;
}
.offer-title {
	font-size: 1.4rem;
	margin-bottom: 6px;
}
.offer-text {
	color: rgba(232, 232, 234, 0.85);
	margin: 0;
}
.offer-action {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
}
.offer-price {
	font-size: 1.9rem;
	font-weight: 800;
	color: #fff;
}
.pricing-note {
	color: var(--ex-muted);
	font-size: 0.88rem;
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}

/* -------------------- Steps -------------------- */
.steps {
	background: #0c0c11;
}
.steps-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	counter-reset: step;
}
.step-card {
	position: relative;
	background: linear-gradient(180deg, var(--ex-surface) 0%, var(--ex-surface-2) 100%);
	border: 1px solid var(--ex-line);
	border-radius: var(--ex-radius);
	padding: 28px 24px;
	transition: transform 0.3s var(--ex-ease), border-color 0.3s ease;
}
.step-card:hover {
	transform: translateY(-4px);
	border-color: rgba(225, 29, 42, 0.45);
}
.step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(225, 29, 42, 0.14);
	border: 1px solid rgba(225, 29, 42, 0.45);
	color: var(--ex-primary);
	font-weight: 800;
	font-size: 1.2rem;
	margin-bottom: 16px;
}
.step-title {
	font-size: 1.18rem;
	margin-bottom: 8px;
}
.step-text {
	color: var(--ex-muted);
	margin: 0;
	font-size: 0.95rem;
}

/* -------------------- About -------------------- */
.about {
	background: linear-gradient(180deg, #0c0c11 0%, var(--ex-bg) 100%);
}
.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: center;
}
.about-content .section-title {
	text-align: left;
}
.about-text {
	color: rgba(232, 232, 234, 0.85);
}
.about-media {
	position: relative;
	border-radius: var(--ex-radius);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border: 1px solid var(--ex-line);
}
.about-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about-media.is-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(120% 120% at 70% 20%, rgba(225, 29, 42, 0.28), transparent 55%),
		linear-gradient(145deg, #16161c 0%, #0c0c11 100%);
}
.about-placeholder-label {
	position: relative;
	z-index: 1;
	font-weight: 800;
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.92);
	text-align: center;
	padding: 0 20px;
}

/* -------------------- Gallery / Impressionen -------------------- */
.gallery {
	background: linear-gradient(180deg, #0c0c11 0%, var(--ex-bg) 100%);
}
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
.gallery-item {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: var(--ex-radius-sm);
	border: 1px solid var(--ex-line);
	aspect-ratio: 4 / 3;
	background: #16161c;
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ex-ease), filter 0.4s ease;
	filter: saturate(1.05) contrast(1.02);
}
.gallery-item:hover img {
	transform: scale(1.08);
}
.gallery-line {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 0;
	background: var(--ex-primary);
	transition: width 0.4s var(--ex-ease);
	z-index: 2;
}
.gallery-item:hover .gallery-line {
	width: 100%;
}
.gallery-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 28px 14px 12px;
	font-size: 0.85rem;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(0deg, rgba(8, 8, 10, 0.85), transparent);
	transform: translateY(8px);
	opacity: 0;
	transition: opacity 0.35s ease, transform 0.35s var(--ex-ease);
	z-index: 1;
}
.gallery-item:hover .gallery-caption {
	opacity: 1;
	transform: none;
}

/* -------------------- Logo -------------------- */
.site-logo img {
	max-height: 46px;
	width: auto;
	display: block;
}
.footer-logo {
	max-width: 220px;
	height: auto;
	margin-bottom: 14px;
}

/* -------------------- CTA -------------------- */
.cta-section {
	position: relative;
	overflow: hidden;
	text-align: center;
	background: linear-gradient(160deg, #111118 0%, #0a0a0c 100%);
}
.cta-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80vw;
	max-width: 700px;
	height: 400px;
	background: radial-gradient(circle, rgba(225, 29, 42, 0.28), transparent 70%);
	filter: blur(40px);
	pointer-events: none;
}
.cta-inner {
	position: relative;
	max-width: 680px;
}
.cta-title {
	font-size: clamp(1.8rem, 5vw, 2.8rem);
}
.cta-text {
	color: rgba(232, 232, 234, 0.85);
	font-size: 1.08rem;
	margin-bottom: 28px;
}

/* -------------------- Contact -------------------- */
.contact {
	background: var(--ex-bg);
}
.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
.contact-info,
.contact-form {
	background: linear-gradient(180deg, var(--ex-surface) 0%, var(--ex-surface-2) 100%);
	border: 1px solid var(--ex-line);
	border-radius: var(--ex-radius);
	padding: 28px;
}
.contact-list li {
	padding: 14px 0;
	border-bottom: 1px solid var(--ex-line);
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.contact-list li:last-child {
	border-bottom: 0;
}
.contact-label {
	font-size: 0.74rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ex-muted);
}
.contact-list a:hover {
	color: var(--ex-primary);
}
.contact-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}
.contact-map {
	margin-top: 20px;
	border-radius: var(--ex-radius-sm);
	overflow: hidden;
}
.contact-map iframe {
	width: 100%;
	min-height: 240px;
	border: 0;
	display: block;
}
.map-link {
	color: var(--ex-primary);
	font-weight: 700;
}
.contact-form-fallback h3 {
	font-size: 1.35rem;
}
.contact-form-fallback p {
	color: var(--ex-muted);
}
.contact-form-fallback .btn {
	margin-bottom: 10px;
}

/* -------------------- Footer -------------------- */
.site-footer {
	background: #08080a;
	border-top: 1px solid var(--ex-line);
	padding-top: 56px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	padding-bottom: 40px;
}
.footer-title {
	font-size: 1.3rem;
	font-weight: 800;
	color: #fff;
	display: inline-block;
	margin-bottom: 12px;
}
.footer-tagline {
	color: var(--ex-muted);
	font-size: 0.92rem;
	max-width: 340px;
}
.footer-social {
	display: flex;
	gap: 16px;
	margin-top: 14px;
}
.footer-social a {
	color: rgba(255, 255, 255, 0.7);
	font-weight: 600;
}
.footer-social a:hover {
	color: var(--ex-primary);
}
.footer-heading {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ex-muted);
	margin-bottom: 16px;
}
.footer-list li {
	margin-bottom: 10px;
}
.footer-list a:hover {
	color: var(--ex-primary);
}
.footer-bottom {
	border-top: 1px solid var(--ex-line);
	padding: 20px 0;
}
.footer-bottom p {
	margin: 0;
	color: var(--ex-muted);
	font-size: 0.85rem;
	text-align: center;
}

/* -------------------- WhatsApp Float -------------------- */
.whatsapp-float {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 90;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
	transition: transform 0.25s var(--ex-ease);
}
.whatsapp-float:hover {
	transform: scale(1.08);
}

/* -------------------- Inner pages -------------------- */
.content-area {
	padding-top: var(--ex-header-h);
}
.page-header {
	margin-bottom: 28px;
}
.page-title {
	font-size: clamp(1.8rem, 5vw, 2.6rem);
}
.entry-content {
	max-width: 760px;
}
.entry-content a {
	color: var(--ex-primary);
	text-decoration: underline;
}
.page-thumb,
.post-thumb {
	border-radius: var(--ex-radius);
	overflow: hidden;
	margin-bottom: 24px;
}
.post-card {
	background: var(--ex-surface);
	border: 1px solid var(--ex-line);
	border-radius: var(--ex-radius);
	padding: 22px;
	margin-bottom: 22px;
}
.post-meta {
	color: var(--ex-muted);
	font-size: 0.85rem;
}
.posts-list {
	display: grid;
	gap: 22px;
}
.post-navigation {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 32px;
	color: var(--ex-muted);
}
.post-navigation a:hover {
	color: var(--ex-primary);
}

/* -------------------- Reveal animation -------------------- */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s var(--ex-ease), transform 0.7s var(--ex-ease);
	will-change: opacity, transform;
}
.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; transition: none; }
	.hero-scroll span { animation: none; }
	.btn:hover, .vehicle-card:hover, .advantage-card:hover { transform: none; }
}

/* =====================================================================
   Responsive – Tablet
   ===================================================================== */
@media (min-width: 600px) {
	.vehicle-grid { grid-template-columns: repeat(2, 1fr); }
	.advantages-grid { grid-template-columns: repeat(2, 1fr); }
	.steps-grid { grid-template-columns: repeat(2, 1fr); }
	.pricing-grid { grid-template-columns: repeat(4, 1fr); }
	.contact-buttons .btn { flex: 1; }
}

@media (min-width: 768px) {
	.section { padding: 88px 0; }
	.contact-grid { grid-template-columns: 1fr 1fr; }
	.footer-grid { grid-template-columns: 2fr 1fr 1fr; }
	.hero-scroll { display: block; }
	.offer-box { flex-direction: row; align-items: center; justify-content: space-between; }
	.offer-content { flex: 1; }
	.about-grid { grid-template-columns: 1.1fr 0.9fr; }

	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-flow: dense;
		gap: 14px;
	}
	.gallery-item.is-feature {
		grid-column: span 2;
		grid-row: span 2;
		aspect-ratio: 1 / 1;
	}
}

/* =====================================================================
   Responsive – Desktop
   ===================================================================== */
@media (min-width: 992px) {
	.vehicle-grid.count-2 { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin: 0 auto; }
	.vehicle-grid.count-3 { grid-template-columns: repeat(3, 1fr); }
	.vehicle-grid.count-1 { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
	.advantages-grid { grid-template-columns: repeat(3, 1fr); }
	.steps-grid { grid-template-columns: repeat(4, 1fr); }
	.gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =====================================================================
   Responsive – Mobile Navigation
   ===================================================================== */
@media (max-width: 900px) {
	.menu-toggle { display: inline-flex; }
	.header-cta { display: none; }

	.main-navigation {
		position: fixed;
		inset: 0;
		background: rgba(8, 8, 10, 0.97);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
		z-index: 99;
	}
	.menu-open .main-navigation {
		opacity: 1;
		visibility: visible;
	}
	.main-navigation .nav-menu {
		flex-direction: column;
		gap: 22px;
		text-align: center;
	}
	.main-navigation a {
		font-size: 1.35rem;
		color: #fff;
	}
	.menu-open {
		overflow: hidden;
	}
}
