:root {
	--cd-bg: #ffffff;
	--cd-panel: #f4f3f6;
	--cd-ink: #100f13;
	--cd-muted: #757575;
	--cd-soft: #f7f7f8;
	--cd-line: #e7e7ec;
	--cd-blue: #4992f8;
	--cd-blue-dark: #1778f2;
	--cd-green: #099d67;
	--cd-dark: #19191a;
	--cd-radius: 16px;
	--cd-container: 1216px;
	--cd-shadow: 0 16px 38px rgba(16, 15, 19, 0.14);
	--cd-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--cd-font-heading: "Montserrat", "Inter", sans-serif;
	--cd-font-logo: "Jersey 10", "Arial Black", Impact, sans-serif;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--cd-bg);
	color: var(--cd-ink);
	font-family: var(--cd-font-body);
	font-size: 16px;
	line-height: 1.45;
}

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

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

input,
button {
	font: inherit;
}

.container {
	width: min(100% - 32px, var(--cd-container));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	width: min(100% - 32px, var(--cd-container));
	min-height: 74px;
	margin: 0 auto;
}

.site-header__brand,
.brand-mark {
	font-family: var(--cd-font-logo);
	font-size: 48px;
	font-weight: 400;
	line-height: 0.9;
	letter-spacing: 0;
}

.brand-mark span,
.site-header__brand span {
	color: var(--cd-blue);
}

.site-header__brand img {
	max-height: 48px;
	width: auto;
}

.site-header__nav {
	margin-left: auto;
}

.site-menu,
.footer-menu {
	display: flex;
	align-items: center;
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-menu a,
.footer-menu a {
	position: relative;
	color: var(--cd-ink);
	font-size: 16px;
	font-weight: 600;
}

.site-menu a:hover,
.site-menu .current-menu-item > a,
.text-link:hover {
	color: #0073ff;
}

.site-menu .current-menu-item > a::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -7px;
	height: 2px;
	background: #0073ff;
	content: "";
}

.site-header__phone {
	font-weight: 600;
	text-decoration: underline;
}

.site-header__cta {
	min-height: 44px;
	padding-inline: 18px;
	border-radius: 12px;
}

.site-header__toggle {
	display: none;
	width: 44px;
	height: 44px;
	margin-left: auto;
	padding: 11px;
	background: var(--cd-blue);
	border: 0;
	border-radius: 12px;
}

.site-header__toggle span {
	display: block;
	height: 2px;
	margin: 5px 0;
	background: #fff;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 66px;
	padding: 0 28px;
	border: 2px solid transparent;
	border-radius: var(--cd-radius);
	cursor: pointer;
	font-weight: 700;
	line-height: 1;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button--primary {
	background: var(--cd-blue);
	color: #fff;
}

.button--primary:hover {
	background: var(--cd-blue-dark);
}

.button--outline {
	background: #fff;
	border-color: var(--cd-blue);
	color: var(--cd-blue);
}

.button--outline:hover {
	background: var(--cd-blue);
	color: #fff;
}

.home-hero {
	padding: 48px 0 0;
	overflow: hidden;
}

.home-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 500px;
	gap: 40px;
	align-items: start;
}

.home-hero__copy {
	padding-top: 2px;
}

.home-hero h1,
.section h2,
.selection-card h2 {
	margin: 0;
	font-family: var(--cd-font-heading);
	font-size: clamp(42px, 5vw, 64px);
	font-weight: 900;
	line-height: 0.97;
	letter-spacing: 0;
}

.home-hero__copy p {
	max-width: 690px;
	margin: 22px 0 0;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 36px;
}

.home-hero__visual {
	position: relative;
	min-height: 500px;
}

.home-hero__visual > img {
	width: 100%;
	height: 375px;
	object-fit: cover;
	object-position: center bottom;
	border-radius: 30px;
}

.price-note {
	position: absolute;
	display: grid;
	gap: 6px;
	padding: 20px 28px;
	background: #fff;
	border: 1px solid #0073ff;
	border-radius: var(--cd-radius);
	white-space: nowrap;
}

.price-note span {
	font-size: 20px;
}

.price-note strong {
	font-size: 24px;
}

.price-note--old {
	left: -315px;
	bottom: 48px;
}

.price-note--old strong {
	color: #73717c;
	text-decoration: line-through;
}

.price-note--new {
	right: -5px;
	bottom: 34px;
	box-shadow: 0 4px 9px rgba(0, 0, 0, 0.25);
}

.price-note--new strong {
	color: var(--cd-green);
}

.hero-proof {
	display: grid;
	grid-template-columns: 458px 1fr;
	gap: 76px;
	align-items: center;
	margin-top: -20px;
}

.hero-proof img {
	width: 458px;
	height: 308px;
	object-fit: cover;
	border-radius: 30px;
}

.hero-proof ul {
	display: grid;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 20px;
	font-weight: 600;
}

.hero-proof li::before {
	margin-right: 8px;
	color: var(--cd-blue);
	content: "✓";
}

.selection-section {
	padding: 80px 0;
}

.selection-section--compact {
	padding-top: 32px;
}

.selection-card,
.calc-card {
	padding: 74px 58px 66px;
	background: var(--cd-dark);
	border-top: 4px solid var(--cd-green);
	border-left: 1px solid var(--cd-green);
	border-radius: 40px;
	color: #fff;
	text-align: center;
}

.selection-card {
	max-width: 1000px;
}

.selection-card h2 {
	color: #fff;
	font-size: clamp(36px, 5vw, 60px);
	line-height: 0.92;
}

.selection-card > p,
.selection-card small,
.calc-card p {
	display: block;
	margin: 20px auto 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 20px;
	line-height: 1.2;
}

.lead-form {
	display: grid;
	gap: 16px;
	margin-top: 34px;
}

.lead-form__row,
.lead-form--inline {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.lead-form__row:nth-child(2) {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lead-form input {
	width: 100%;
	height: 66px;
	padding: 0 18px;
	background: #fff;
	border: 0;
	border-radius: var(--cd-radius);
	color: var(--cd-ink);
	font-size: 20px;
	font-weight: 500;
}

.lead-form input::placeholder {
	color: var(--cd-muted);
}

.lead-form > .button {
	justify-self: center;
	width: min(100%, 300px);
	margin-top: 4px;
	border: 0;
}

.section {
	padding: 66px 0;
}

.benefits h2,
.inventory-preview h2,
.reviews h2 {
	text-align: center;
}

.benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-top: 28px;
}

.benefits article,
.car-card,
.review-card {
	overflow: hidden;
	background: var(--cd-panel);
	border-radius: 24px;
}

.benefits img {
	width: 100%;
	height: 160px;
	object-fit: cover;
}

.benefits h3,
.benefits p {
	margin-inline: 18px;
}

.benefits h3 {
	margin-top: 18px;
	margin-bottom: 8px;
	font-size: 18px;
}

.benefits p {
	margin-top: 0;
	margin-bottom: 20px;
	color: var(--cd-muted);
}

.plan-card {
	padding: 42px;
	background: var(--cd-panel);
	border-radius: 16px;
}

.plan-card h2 {
	text-align: center;
	font-size: clamp(34px, 4vw, 50px);
}

.plan-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 28px;
}

.plan-grid article {
	min-height: 168px;
	padding: 18px;
	background: #fff;
	border-radius: 12px;
}

.plan-grid span {
	color: #0073ff;
	font-size: 20px;
	font-weight: 800;
}

.plan-grid h3 {
	margin: 10px 0 6px;
	font-size: 17px;
}

.plan-grid p {
	margin: 0;
	color: var(--cd-muted);
	font-size: 14px;
}

.section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.section__head h2 {
	text-align: left;
}

.text-link {
	color: var(--cd-blue);
	font-weight: 800;
}

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

.car-card {
	border-radius: 12px;
}

.car-card__media {
	display: block;
	aspect-ratio: 1 / 1;
	background: #ddd;
}

.car-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.car-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 240px;
	color: var(--cd-muted);
	font-weight: 700;
}

.car-card__body {
	display: grid;
	gap: 10px;
	padding: 14px;
}

.car-card h3 {
	margin: 0;
	font-size: 18px;
	line-height: 1.2;
}

.car-card p {
	margin: 6px 0 0;
	color: var(--cd-muted);
}

.car-card strong,
.car-detail__price {
	color: var(--cd-green);
	font-size: 20px;
}

.calc-card {
	max-width: 1000px;
	padding-block: 44px;
}

.calc-card h2 {
	color: #fff;
	font-size: clamp(34px, 4vw, 48px);
}

.lead-form--inline {
	margin-top: 26px;
}

.lead-form--inline .button {
	width: 100%;
	min-height: 66px;
	margin: 0;
}

.reviews__list {
	display: grid;
	gap: 14px;
	margin-top: 28px;
}

.review-card {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 24px;
	padding: 12px;
}

.review-card > img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: 18px;
}

.review-card > div {
	padding: 10px 12px 12px 0;
}

.review-card h3 {
	margin: 0 0 6px;
	font-size: 28px;
}

.review-card strong {
	display: block;
	margin-bottom: 14px;
	font-size: 21px;
}

.review-card p {
	max-width: 780px;
	margin: 0 0 12px;
	font-size: 20px;
	line-height: 1.35;
}

.review-card span {
	color: #838383;
	font-size: 20px;
}

.site-footer {
	padding: 60px 0 90px;
	background: var(--cd-blue);
	color: #fff;
}

.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	width: min(100% - 32px, var(--cd-container));
	margin: 0 auto;
}

.site-footer .brand-mark span {
	color: var(--cd-ink);
}

.site-footer p {
	display: none;
}

.footer-menu a {
	color: #fff;
	font-size: 20px;
}

.page-hero {
	padding: 72px 0 54px;
	background: var(--cd-dark);
	color: #fff;
}

.page-hero h1,
.entry__title,
.car-detail__summary h1 {
	margin: 0;
	font-size: clamp(38px, 5vw, 64px);
	line-height: 1;
	letter-spacing: 0;
}

.car-detail {
	padding: 54px 0;
}

.car-detail__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
	gap: 34px;
	align-items: start;
}

.car-detail__media,
.car-detail__summary {
	overflow: hidden;
	background: var(--cd-panel);
	border-radius: 24px;
}

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

.car-detail__summary {
	padding: 28px;
}

.spec-list {
	display: grid;
	gap: 1px;
	margin: 28px 0;
	overflow: hidden;
	border-radius: var(--cd-radius);
}

.spec-list div {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 13px 14px;
	background: #fff;
}

.spec-list span {
	color: var(--cd-muted);
}

.entry__content {
	max-width: 780px;
}

.empty-state {
	grid-column: 1 / -1;
	padding: 28px;
	background: var(--cd-panel);
	border-radius: var(--cd-radius);
	color: var(--cd-muted);
}

.pagination {
	margin-top: 30px;
}

.elementor-cd-hero {
	padding: 48px 0 24px;
}

.elementor-cd-hero h1 {
	max-width: 720px;
	margin: 0;
	font-family: var(--cd-font-heading);
	font-size: clamp(42px, 5vw, 64px);
	font-weight: 900;
	line-height: 0.97;
	letter-spacing: 0;
}

.elementor-cd-hero .elementor-widget-text-editor {
	max-width: 690px;
	font-size: 20px;
	font-weight: 500;
}

.elementor-cd-hero img,
.elementor-cd-proof img,
.elementor-cd-cards img {
	width: 100%;
	object-fit: cover;
	border-radius: 24px;
}

.elementor-cd-hero img {
	height: 375px;
	border-radius: 30px;
}

.elementor-cd-proof {
	padding: 12px 0 36px;
}

.elementor-cd-proof img {
	height: 308px;
}

.elementor-cd-proof .elementor-icon-list-text {
	font-size: 20px;
	font-weight: 700;
}

.elementor-cd-dark-form {
	margin: 56px auto;
	padding: 72px 58px 64px;
	background: var(--cd-dark);
	border-top: 4px solid var(--cd-green);
	border-left: 1px solid var(--cd-green);
	border-radius: 40px;
	color: #fff;
	text-align: center;
}

.elementor-cd-dark-form h2 {
	color: #fff;
	font-family: var(--cd-font-heading);
	font-size: clamp(36px, 5vw, 60px);
	font-weight: 900;
	line-height: 0.92;
	letter-spacing: 0;
}

.elementor-cd-dark-form .elementor-widget-text-editor {
	color: rgba(255, 255, 255, 0.8);
	font-size: 20px;
}

.elementor-cd-title {
	padding-top: 44px;
	text-align: center;
}

.elementor-cd-title h2,
.elementor-cd-plan h2 {
	font-family: var(--cd-font-heading);
	font-size: clamp(34px, 4vw, 50px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
}

.elementor-cd-cards {
	padding: 22px 0;
}

.elementor-cd-cards > .elementor-container > .elementor-column > .elementor-widget-wrap {
	overflow: hidden;
	background: var(--cd-panel);
	border-radius: 24px;
}

.elementor-cd-cards .elementor-widget-heading,
.elementor-cd-cards .elementor-widget-text-editor {
	padding-right: 18px;
	padding-left: 18px;
}

.elementor-cd-cards h3 {
	margin: 0;
	font-size: 22px;
}

.elementor-cd-cards .elementor-widget-text-editor {
	color: var(--cd-muted);
}

.elementor-cd-cards img {
	height: 220px;
	border-radius: 24px 24px 0 0;
}

.elementor-cd-plan {
	margin: 56px auto;
	padding: 42px;
	background: var(--cd-panel);
	border-radius: 16px;
	text-align: center;
}

.elementor-lead-form {
	max-width: 1142px;
	margin: 34px auto 0;
}

.elementor-cd-dark-form .wpcf7 {
	max-width: 1142px;
	margin: 34px auto 0;
}

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

.cf7-lead-grid label {
	display: block;
	margin: 0;
}

.cf7-lead-grid label:nth-child(4),
.cf7-lead-grid label:nth-child(5) {
	grid-column: span 1;
}

.wpcf7-form-control-wrap {
	display: block;
}

.cf7-lead-grid input {
	width: 100%;
	height: 66px;
	padding: 0 18px;
	background: #fff;
	border: 0;
	border-radius: var(--cd-radius);
	color: var(--cd-ink);
	font-size: 20px;
	font-weight: 500;
}

.cf7-lead-grid input::placeholder {
	color: var(--cd-muted);
}

.wpcf7-submit.button {
	width: min(100%, 300px);
	margin-top: 16px;
	border: 0;
}

.wpcf7 form .wpcf7-response-output {
	margin: 18px 0 0;
	padding: 12px 14px;
	border-radius: 12px;
	color: #fff;
}

.wpcf7-not-valid-tip {
	margin-top: 6px;
	color: #ffd0d0;
	text-align: left;
}

@media (max-width: 1060px) {
	.site-header__cta,
	.site-header__phone {
		display: none;
	}

	.home-hero__grid,
	.hero-proof,
	.review-card {
		grid-template-columns: 1fr;
	}

	.price-note--old,
	.price-note--new {
		position: static;
		margin-top: 12px;
		white-space: normal;
	}

	.home-hero__visual {
		min-height: 0;
	}
}

@media (max-width: 920px) {
	.site-header__toggle {
		display: block;
	}

	.site-header__nav {
		position: absolute;
		top: 74px;
		left: 0;
		right: 0;
		display: none;
		padding: 18px 16px;
		background: #fff;
		box-shadow: 0 16px 28px rgba(16, 15, 19, 0.1);
	}

	.site-header__nav.is-open {
		display: block;
	}

	.site-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 16px;
	}

	.lead-form__row,
	.lead-form__row:nth-child(2),
	.lead-form--inline,
	.cf7-lead-grid,
	.benefits__grid,
	.plan-grid,
	.car-grid,
	.car-detail__grid {
		grid-template-columns: 1fr;
	}

	.elementor-cd-dark-form,
	.elementor-cd-plan {
		padding: 34px 18px;
		border-radius: 26px;
	}

	.selection-card,
	.calc-card,
	.plan-card {
		padding: 34px 18px;
		border-radius: 26px;
	}

	.section__head,
	.site-footer__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 560px) {
	.container,
	.site-header__inner,
	.site-footer__inner {
		width: min(100% - 22px, var(--cd-container));
	}

	.home-hero {
		padding-top: 26px;
	}

	.home-hero h1,
	.section h2,
	.selection-card h2 {
		font-size: 36px;
	}

	.home-hero__copy p,
	.review-card p,
	.selection-card > p,
	.selection-card small,
	.calc-card p {
		font-size: 17px;
	}

	.button,
	.lead-form input {
		min-height: 56px;
		height: 56px;
		font-size: 16px;
	}

	.home-hero__visual > img,
	.hero-proof img,
	.review-card > img {
		height: 250px;
	}
}
