/* landing.css — comtolk.php + m.comtolk.php 인라인 CSS 통합 (mobile-first) */

:root {
	--red: #e11d2a;
	--bg: #0c0c0f;
	--panel: #141419;
	--line: #26262e;
	--txt: #f2f2f4;
	--muted: #9a9aa6;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
}

html {
	scroll-behavior: smooth;
	background: var(--bg);
}

body {
	background: transparent;
	color: var(--txt);
	font-family: "Pretendard", system-ui, -apple-system, "Malgun Gothic", sans-serif;
	line-height: 1.5;
	position: relative;
	padding-bottom: 74px;
}

a {
	color: inherit;
	text-decoration: none;
}

.wrap {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 18px;
}

/* 배경 흐름 */
.bgflow {
	position: fixed;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
	background: var(--bg);
}

.bgflow .bgtrack {
	display: flex;
	align-items: center;
	gap: 24px;
	height: 100%;
	width: max-content;
	opacity: 0.2;
	filter: blur(4px);
	animation: scroll 70s linear infinite;
}

.bgflow .bgtrack img {
	height: 80vh;
	width: auto;
	display: block;
}

header,
.hero,
.mq,
.marquee,
.sec,
section.blk,
footer {
	position: relative;
	z-index: 1;
}

@keyframes scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* 헤더 — 모바일 .hd / PC .nav */
header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(10, 10, 13, 0.92);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line);
}

.hd {
	display: flex;
	align-items: center;
	height: 56px;
	padding: 0 14px;
	gap: 8px;
}

.nav {
	display: none;
	align-items: center;
	gap: 12px;
	height: 74px;
}

.hd .sp,
.nav .sp {
	flex: 1;
}

.hd .call {
	color: var(--red);
	font-weight: 900;
	font-size: 15px;
}

.logo img {
	height: 30px;
	width: auto;
	display: block;
}

.btn {
	display: inline-block;
	border: 0;
	border-radius: 10px;
	padding: 10px 18px;
	font-weight: 800;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.15s, box-shadow 0.15s, filter 0.15s;
}

.btn.red {
	background: var(--red);
	color: #fff;
}

.btn.red:hover {
	background: #c00f1c;
	box-shadow: 0 8px 20px rgba(225, 29, 42, 0.45);
}

.btn.ghost {
	background: transparent;
	color: var(--txt);
	border: 1px solid var(--line);
}

.btn.big {
	padding: 16px 34px;
	font-size: 18px;
	border-radius: 12px;
}

.btn.kko:hover {
	background: #ffe812;
	color: #3a1d1d;
	border-color: #ffe812;
}

/* 히어로 */
.hero {
	padding: 26px 16px 10px;
	text-align: center;
	background: radial-gradient(75% 62% at 50% 0%, rgba(225, 29, 42, 0.26), transparent);
}

.hero .herologo {
	display: block;
	width: 94%;
	margin: 0 auto 16px;
	filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.5));
}

.chip,
.tagchip,
.hero .tagchip {
	display: inline-block;
	background: var(--red);
	color: #fff;
	font-weight: 800;
	font-size: 11px;
	padding: 5px 12px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.hero h1 {
	font-size: 23px;
	font-weight: 600;
	letter-spacing: -0.5px;
	line-height: 1.12;
}

.hero h1 b {
	display: block;
	color: var(--red);
	font-weight: 800;
	font-size: 1.32em;
	letter-spacing: -1px;
	margin-bottom: 0;
	line-height: 1.08;
}

.hero p {
	color: var(--muted);
	font-size: 13px;
	margin-top: 10px;
}

.hero .cta {
	margin-top: 16px;
}

.hero .cta a {
	display: block;
	background: var(--red);
	color: #fff;
	font-weight: 900;
	font-size: 17px;
	padding: 15px;
	border-radius: 12px;
}

.hero .carvis {
	display: block;
	width: 94%;
	margin: 18px auto 0;
	filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.5));
}

/* 표지 마퀴 — 모바일 .mq / PC .marquee */
.mq,
.marquee {
	overflow: hidden;
	padding: 14px 0;
	background: #000;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.mqt,
.track {
	display: flex;
	gap: 12px;
	width: max-content;
	animation: scroll 55s linear infinite;
}

.mqt img,
.track img {
	height: 220px;
	width: auto;
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
	display: block;
	object-fit: cover;
}

.marquee:hover .track {
	animation-play-state: paused;
}

/* 섹션 */
.sec,
section.blk {
	padding: 28px 16px;
}

.evsec {
	padding: 20px 0 8px;
}

.eyebrow {
	color: var(--red);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: 1.5px;
	text-align: center;
	margin-bottom: 6px;
}

.htitle {
	text-align: center;
	font-size: 21px;
	font-weight: 700;
	letter-spacing: -0.5px;
	margin-bottom: 16px;
}

/* 이벤트 배너 */
.ev {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--line);
	background: #000;
}

.ev a,
.ev span.s {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.7s;
	display: block;
}

.ev .on {
	opacity: 1;
}

.ev img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ev.empty {
	display: grid;
	place-items: center;
	border-style: dashed;
	border-color: #3a3a44;
	background: #101015;
	color: #66666f;
	font-weight: 800;
	font-size: 13px;
	text-align: center;
	padding: 10px;
}

.evdots {
	display: flex;
	gap: 6px;
	justify-content: center;
	margin-top: 10px;
}

.evdots b {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #444;
	cursor: pointer;
	display: block;
}

.evdots b.on {
	background: var(--red);
}

/* 베스트 인기차종 — 모바일 가로 스크롤 */
.cars {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 8px;
}

.cars::-webkit-scrollbar {
	display: none;
}

.bcar {
	flex: 0 0 62%;
	scroll-snap-align: start;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	color: #1a1a1a;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

.bcimg {
	position: relative;
	aspect-ratio: 1/1;
	background: linear-gradient(160deg, #f7f8fa, #e7e9ee) center/cover no-repeat;
	display: grid;
	place-items: center;
}

.bcimg .ph {
	color: #b6bac2;
	font-weight: 800;
	font-size: 14px;
	text-align: center;
	padding: 8px;
}

.bcimg .rank {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--red) 0 50%, transparent 50%);
}

.bcimg .rank i {
	position: absolute;
	top: 2px;
	left: 7px;
	color: #fff;
	font-weight: 900;
	font-size: 20px;
	font-style: normal;
	line-height: 1;
}

.bcbody {
	padding: 12px 12px 14px;
}

.bcname {
	font-weight: 800;
	font-size: 15px;
	letter-spacing: -0.5px;
}

.bcspec {
	color: #8a8f98;
	font-size: 11px;
	margin: 5px 0 9px;
	min-height: 28px;
}

.bcprice {
	font-size: 11px;
	color: #555;
}

.bcprice b {
	font-size: 17px;
	font-weight: 900;
	color: #111;
}

/* 이벤트 카드 */
.evcards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
}

.evcard {
	background: linear-gradient(135deg, rgba(225, 29, 42, 0.16), var(--panel));
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 12px;
}

.evcard .no {
	display: inline-block;
	background: var(--red);
	color: #fff;
	font-weight: 900;
	font-size: 11px;
	padding: 3px 11px;
	border-radius: 999px;
	margin-bottom: 10px;
}

.evcard h3 {
	font-size: 19px;
	font-weight: 900;
	letter-spacing: -0.5px;
	margin-bottom: 6px;
}

.evcard p {
	color: var(--muted);
	font-size: 13px;
}

/* 특징 */
.cards {
	display: block;
}

.card {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 18px;
	margin-bottom: 10px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.card .no {
	color: var(--red);
	font-weight: 900;
	font-size: 20px;
	flex: 0 0 auto;
	width: 34px;
}

.card h3 {
	font-size: 16px;
	margin-bottom: 3px;
}

.card p {
	color: var(--muted);
	font-size: 13px;
}

/* 후기 — 모바일 .revscroll / PC .revwrap */
.revwrap {
	display: none;
}

.revscroll {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	padding-bottom: 8px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.revscroll::-webkit-scrollbar {
	display: none;
}

.revtrack {
	display: flex;
	gap: 14px;
	width: max-content;
}

.rev {
	flex: 0 0 78%;
	scroll-snap-align: center;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 16px;
}

.rev .st {
	color: #ffcf3a;
	font-size: 13px;
	margin-bottom: 6px;
}

.rev .tx {
	font-size: 14px;
	margin-bottom: 8px;
}

.rev .by {
	color: var(--muted);
	font-size: 12px;
}

/* 폼 */
.form {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 20px;
	max-width: 560px;
	margin: 0 auto;
}

.form .row {
	margin-bottom: 12px;
}

.form .two {
	display: flex;
	gap: 10px;
}

.form .two > div {
	flex: 1;
}

.form label {
	display: block;
	font-size: 12px;
	color: var(--muted);
	margin-bottom: 5px;
	font-weight: 700;
}

.form input,
.form textarea,
.form select {
	width: 100%;
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 11px;
	background: #0f0f14;
	color: var(--txt);
	font-size: 16px;
	font-family: inherit;
}

.form textarea {
	min-height: 74px;
	resize: vertical;
}

.form .hp {
	position: absolute;
	left: -9999px;
}

.form .agree {
	display: flex;
	gap: 8px;
	align-items: center;
	color: var(--muted);
	font-size: 13px;
	margin: 4px 0;
}

.form .agree input {
	width: auto;
}

.form button,
.form .sub {
	width: 100%;
	margin-top: 6px;
	border: 0;
	background: var(--red);
	color: #fff;
	font-weight: 900;
	font-size: 17px;
	padding: 16px;
	border-radius: 12px;
	cursor: pointer;
}

.form .note {
	color: var(--muted);
	font-size: 12px;
	text-align: center;
	margin-top: 12px;
}

/* 푸터 */
footer {
	background: #000;
	border-top: 1px solid var(--line);
	padding: 26px 16px 120px;
	color: var(--muted);
	font-size: 12px;
}

footer .fc {
	font-weight: 800;
	color: #ddd;
	margin-bottom: 8px;
	font-size: 14px;
}

footer .disc {
	margin-top: 12px;
	color: #666;
	line-height: 1.7;
	font-size: 12px;
}

footer .pc {
	display: inline-block;
	margin-top: 14px;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 8px 14px;
	color: #bbb;
	font-size: 13px;
}

/* 하단 고정바 — 모바일 */
.bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 50;
	display: flex;
	background: #0f0f14;
	border-top: 1px solid var(--line);
}

.bar a {
	flex: 1;
	text-align: center;
	padding: 14px 0;
	font-weight: 800;
	font-size: 15px;
	border-right: 1px solid var(--line);
}

.bar a:last-child {
	border-right: 0;
}

.bar .call {
	color: #fff;
}

.bar .kakao {
	color: #3a1d1d;
	background: #ffe812;
}

.bar .quote {
	color: #fff;
	background: var(--red);
}

/* 플로팅 CTA — PC */
.float {
	display: none;
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 60;
	flex-direction: column;
	gap: 10px;
	align-items: flex-end;
}

.float a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	border-radius: 999px;
	font-weight: 800;
	font-size: 14px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.float .quote {
	background: var(--red);
	color: #fff;
}

.float .kakao {
	background: #ffe812;
	color: #3a1d1d;
}

.float .call {
	background: #1f2a44;
	color: #fff;
}

/* 견적 양식 / 모달 */
.qbox {
	max-width: 840px;
	margin: 0 auto;
}

.qbadge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #16161c;
	border: 1px solid var(--line);
	color: #fff;
	font-weight: 800;
	font-size: 12px;
	padding: 7px 13px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.qbadge .blogo {
	height: 15px;
	width: auto;
	display: block;
}

.qh {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.5px;
	line-height: 1.35;
	margin-bottom: 20px;
}

.qfield {
	margin-bottom: 12px;
}

.qfield label {
	display: block;
	font-weight: 800;
	font-size: 14px;
	margin-bottom: 6px;
}

.qfield label i {
	color: var(--red);
	font-style: normal;
}

.qfield input {
	width: 100%;
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 11px;
	background: #111117;
	color: var(--txt);
	font-size: 16px;
	font-family: inherit;
}

.qfield input::placeholder {
	color: #6a6a74;
}

.qagree {
	background: #111117;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 14px;
	margin: 14px 0 12px;
}

.qagree .all {
	display: flex;
	gap: 10px;
	align-items: center;
	cursor: pointer;
}

.qagree .all b {
	font-size: 14px;
}

.qagree .all small {
	color: var(--muted);
	font-size: 11px;
}

.qagree .subs {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.qagree .subs label {
	display: flex;
	gap: 8px;
	align-items: center;
	color: var(--muted);
	font-size: 12.5px;
	cursor: pointer;
}

.qagree input[type="checkbox"] {
	width: 20px;
	height: 20px;
	accent-color: var(--red);
	flex: 0 0 auto;
}

.qsub {
	width: 100%;
	background: #fff;
	color: var(--red);
	font-weight: 900;
	font-size: 17px;
	padding: 16px;
	border: 0;
	border-radius: 12px;
	margin-top: 4px;
	cursor: pointer;
}

.qsub:hover {
	filter: brightness(0.96);
}

.qhp {
	position: absolute;
	left: -9999px;
}

.qmodal {
	position: fixed;
	inset: 0;
	z-index: 80;
	background: rgba(0, 0, 0, 0.72);
	display: none;
	align-items: flex-start;
	justify-content: center;
	padding: 22px 12px;
	overflow: auto;
}

.qmodal.show {
	display: flex;
}

.qmodal-box {
	position: relative;
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: 16px;
	max-width: 520px;
	width: 100%;
	padding: 26px 18px;
}

.qmodal-x {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #222229;
	color: #fff;
	border: 0;
	font-size: 17px;
	cursor: pointer;
	z-index: 2;
}

/* 파트너 */
.partner {
	text-align: center;
	color: #f2f2f4;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0) 26%,
		rgba(255, 255, 255, 0.35) 55%,
		rgba(255, 255, 255, 0.62) 80%,
		rgba(255, 255, 255, 0.85) 100%
	);
}

.sec.partner,
.blk.partner {
	padding-top: 80px;
	padding-bottom: 120px;
}

.partner .peyebrow {
	color: var(--red);
	font-weight: 800;
	font-size: 13px;
	margin-bottom: 8px;
}

.partner .ptitle {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.4;
	margin-bottom: 16px;
	color: #fff;
}

.partner .ptitle b {
	color: var(--red);
}

.partner .pimg {
	width: 100%;
	max-width: 1000px;
	height: auto;
}

/* 이벤트 우측 고정 팝업 — PC */
.evpop {
	display: none;
	position: fixed;
	right: 16px;
	top: 100px;
	z-index: 55;
	width: 300px;
	max-width: 82vw;
}

.evpop.hide {
	display: none !important;
}

.evpop .x {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 3;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	border: 0;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
}

.evpop .slide {
	display: none;
}

.evpop .slide.on {
	display: block;
}

.evpop .slide img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.evpop .dots {
	display: flex;
	gap: 6px;
	justify-content: center;
	margin-top: 8px;
}

.evpop .dots b {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #555;
	cursor: pointer;
	display: block;
}

.evpop .dots b.on {
	background: var(--red);
}

/* ========== PC (comtolk.php) ========== */
@media (min-width: 821px) {
	body {
		padding-bottom: 0;
	}

	.bgflow .bgtrack {
		gap: 40px;
		filter: blur(4px) saturate(1.05);
		animation: scroll 90s linear infinite;
	}

	.bgflow .bgtrack img {
		height: 105vh;
	}

	.hd {
		display: none;
	}

	.nav {
		display: flex;
	}

	.logo img {
		height: 44px;
	}

	.hero {
		padding: 60px 0 26px;
		background: radial-gradient(65% 70% at 50% 0%, rgba(225, 29, 42, 0.22), transparent);
	}

	.hero .herologo {
		width: min(640px, 90%);
		margin: 0 auto 26px;
		filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5));
	}

	.chip,
	.tagchip,
	.hero .tagchip {
		font-size: 13px;
		letter-spacing: 1px;
		padding: 7px 16px;
		margin-bottom: 20px;
	}

	.hero h1 {
		font-size: clamp(24px, 4.4vw, 44px);
		letter-spacing: -1.5px;
		line-height: 1.1;
	}

	.hero h1 b {
		font-size: 1.36em;
		letter-spacing: -2px;
		line-height: 1.05;
	}

	.hero p {
		font-size: 16px;
		margin-top: 16px;
	}

	.hero .cta {
		margin: 26px 0 8px;
		display: flex;
		gap: 10px;
		justify-content: center;
		flex-wrap: wrap;
	}

	.hero .cta a {
		display: inline-block;
		width: auto;
	}

	.hero .carvis {
		width: min(620px, 86%);
		margin: 26px auto 0;
		filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.55));
	}

	.mq,
	.marquee {
		padding: 18px 0;
		mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	}

	.mqt,
	.track {
		gap: 16px;
		animation: scroll 60s linear infinite;
	}

	.mqt img,
	.track img {
		height: 400px;
		border-radius: 12px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	}

	.sec,
	section.blk {
		padding: 52px 0;
	}

	.eyebrow {
		font-size: 13px;
		letter-spacing: 2px;
		margin-bottom: 8px;
	}

	.htitle {
		font-size: clamp(22px, 3.4vw, 32px);
		letter-spacing: -1px;
		margin-bottom: 28px;
	}

	.ev {
		aspect-ratio: 3/1;
		border-radius: 16px;
	}

	.ev a,
	.ev span.s {
		transition: opacity 0.8s;
	}

	.ev.empty {
		font-size: 15px;
		padding: 0;
	}

	.evdots {
		gap: 7px;
		margin-top: 12px;
	}

	.evdots b {
		width: 9px;
		height: 9px;
	}

	.cars {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 22px;
		overflow: visible;
		scroll-snap-type: none;
		padding-bottom: 0;
	}

	.bcar {
		flex: none;
		border-radius: 16px;
		box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
	}

	.bcimg .ph {
		font-size: 18px;
		padding: 12px;
	}

	.bcimg .rank {
		width: 60px;
		height: 60px;
	}

	.bcimg .rank i {
		top: 3px;
		left: 9px;
		font-size: 26px;
	}

	.bcbody {
		padding: 16px 18px 20px;
	}

	.bcname {
		font-size: 19px;
	}

	.bcspec {
		font-size: 12.5px;
		margin: 7px 0 14px;
		min-height: auto;
	}

	.bcprice {
		font-size: 13px;
	}

	.bcprice b {
		font-size: 23px;
		letter-spacing: -0.5px;
	}

	.evcard {
		background: linear-gradient(135deg, rgba(225, 29, 42, 0.14), var(--panel));
		border-radius: 18px;
		padding: 26px 24px;
		margin-bottom: 0;
	}

	.evcard .no {
		font-size: 12px;
		padding: 4px 12px;
		margin-bottom: 12px;
	}

	.evcard h3 {
		font-size: 22px;
		margin-bottom: 8px;
	}

	.evcard p {
		font-size: 14px;
	}

	.cards {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}

	.card {
		display: block;
		padding: 26px 22px;
		margin-bottom: 0;
		border-radius: 16px;
	}

	.card .no {
		font-size: 14px;
		letter-spacing: 1px;
		margin-bottom: 10px;
		width: auto;
	}

	.card h3 {
		font-size: 19px;
		margin-bottom: 8px;
	}

	.card p {
		font-size: 14px;
	}

	.revscroll {
		display: none;
	}

	.revwrap {
		display: block;
		overflow: hidden;
		mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	}

	.revwrap:hover .revtrack {
		animation-play-state: paused;
	}

	.revwrap .revtrack {
		animation: scroll 40s linear infinite;
	}

	.rev {
		flex: none;
		width: 280px;
		padding: 18px;
	}

	.rev .tx {
		font-size: 15px;
		margin-bottom: 10px;
	}

	.form {
		padding: 28px;
		border-radius: 18px;
	}

	.form .row {
		margin-bottom: 14px;
	}

	.form label {
		font-size: 13px;
		margin-bottom: 6px;
	}

	.form input,
	.form textarea,
	.form select {
		padding: 13px 14px;
		border-radius: 10px;
		font-size: 15px;
	}

	.form textarea {
		min-height: 80px;
	}

	.form .agree {
		margin-top: 2px;
	}

	footer {
		padding: 34px 0 120px;
		font-size: 13px;
	}

	footer .fc {
		font-size: 15px;
		margin-bottom: 10px;
	}

	.bar {
		display: none;
	}

	.float {
		display: flex;
	}

	.qbadge {
		gap: 9px;
		font-size: 14px;
		padding: 9px 16px;
		margin-bottom: 22px;
	}

	.qbadge .blogo {
		height: 17px;
	}

	.qh {
		font-size: clamp(23px, 3.4vw, 33px);
		letter-spacing: -1px;
		line-height: 1.32;
		margin-bottom: 30px;
	}

	.qfield {
		display: flex;
		align-items: center;
		gap: 16px;
		margin-bottom: 14px;
	}

	.qfield label {
		flex: 0 0 72px;
		font-size: 16px;
		margin-bottom: 0;
	}

	.qfield label i {
		margin-left: 2px;
	}

	.qfield input {
		flex: 1;
		padding: 16px 18px;
		border-radius: 12px;
	}

	.qagree {
		background: #141419;
		padding: 16px 18px;
		margin: 18px 0 12px;
	}

	.qagree .all {
		gap: 12px;
	}

	.qagree .all b {
		font-size: 15px;
	}

	.qagree .all small {
		font-size: 12px;
	}

	.qagree .subs {
		margin-top: 14px;
		padding-top: 12px;
		gap: 9px;
	}

	.qagree .subs label {
		gap: 9px;
		font-size: 13.5px;
	}

	.qsub {
		font-size: 18px;
		padding: 18px;
		border-radius: 14px;
		margin-top: 6px;
	}

	.qmodal {
		background: rgba(0, 0, 0, 0.65);
		padding: 40px 16px;
	}

	.qmodal-box {
		border-radius: 18px;
		max-width: 600px;
		padding: 34px 28px;
	}

	.qmodal-x {
		top: 12px;
		right: 12px;
		width: 34px;
		height: 34px;
		font-size: 18px;
	}

	.sec.partner,
	.blk.partner {
		padding-top: 140px;
		padding-bottom: 170px;
	}

	.partner .peyebrow {
		font-size: 15px;
		letter-spacing: 1px;
		margin-bottom: 10px;
	}

	.partner .ptitle {
		font-size: clamp(18px, 2.6vw, 26px);
		letter-spacing: -0.5px;
		margin-bottom: 24px;
	}

	.evpop:not(.hide) {
		display: block;
	}
}

@media (max-width: 1120px) {
	.evpop {
		display: none !important;
	}
}

@media (max-width: 640px) {
	.nav .logo img {
		height: 34px;
	}

	.nav {
		height: 62px;
	}

	.ev {
		aspect-ratio: 16/9;
	}

	.mqt img,
	.track img {
		height: 270px;
	}
}

@media (max-width: 600px) {
	.qfield {
		flex-direction: column;
		align-items: stretch;
		gap: 6px;
	}

	.qfield label {
		flex: none;
	}
}

@media (min-width: 821px) and (max-width: 1020px) {
	.cars {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 821px) and (max-width: 560px) {
	.cars {
		grid-template-columns: 1fr;
	}
}
