.kto-quote-form {
	width: 100%;
	border: 1px solid rgba(12, 18, 28, 0.1);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(12, 18, 28, 0.08);
	padding: clamp(20px, 3vw, 34px);
}

.kto-quote-form *,
.kto-quote-form *::before,
.kto-quote-form *::after {
	box-sizing: border-box;
}

.kto-quote-form__intro {
	margin-bottom: 22px;
}

.kto-kicker {
	margin: 0 0 6px;
	color: #d71920;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.kto-quote-form__intro h2 {
	margin: 0 0 8px;
	color: #121820;
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	line-height: 1.05;
}

.kto-quote-form__intro p:last-child {
	margin: 0;
	color: #596474;
}

.kto-quote-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.kto-quote-form label {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin: 0;
	color: #121820;
	font-weight: 750;
}

.kto-quote-form input,
.kto-quote-form textarea {
	width: 100%;
	border: 1px solid rgba(12, 18, 28, 0.18);
	border-radius: 8px;
	background: #f8fafc;
	color: #121820;
	font: inherit;
	line-height: 1.4;
	padding: 12px 13px;
}

.kto-quote-form textarea {
	resize: vertical;
}

.kto-span-2 {
	grid-column: 1 / -1;
}

.kto-quote-form__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.kto-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border: 1px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 850;
	line-height: 1.1;
	padding: 12px 18px;
	text-decoration: none;
}

.kto-btn--primary {
	background: #d71920;
	color: #fff;
}

.kto-btn--whatsapp {
	background: #111827;
	color: #fff;
}

.kto-form-status {
	min-height: 22px;
	margin: 14px 0 0;
	color: #596474;
	font-weight: 700;
}

@media (max-width: 720px) {
	.kto-quote-form__grid {
		grid-template-columns: 1fr;
	}
}

