.tvsf-form-wrap {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
	gap: 28px;
	align-items: stretch;
}

.tvsf-offer,
.tvsf-form {
	border: 1px solid #e7dfd2;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 16px 44px rgba(22, 18, 14, 0.1);
}

.tvsf-offer {
	padding: 30px;
}

.tvsf-kicker {
	margin: 0 0 12px;
	color: #c9a96e;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.tvsf-offer h3 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.8rem, 4vw, 3rem);
	line-height: 1.08;
	color: #171717;
}

.tvsf-offer p:not(.tvsf-kicker):not(.tvsf-price) {
	margin: 18px 0 0;
	color: #6f6a62;
	line-height: 1.65;
}

.tvsf-price {
	margin: 24px 0;
	color: #171717;
	font-size: 4rem;
	font-weight: 800;
	line-height: 1;
}

.tvsf-offer ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding-left: 20px;
	color: #6f6a62;
}

.tvsf-offer li::marker {
	color: #c9a96e;
}

.tvsf-form {
	display: grid;
	gap: 16px;
	padding: 26px;
}

.tvsf-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.tvsf-form label {
	display: grid;
	gap: 7px;
	color: #171717;
	font-size: 0.84rem;
	font-weight: 800;
}

.tvsf-form input,
.tvsf-form select,
.tvsf-form textarea {
	width: 100%;
	border: 1.5px solid #ded6c9;
	border-radius: 6px;
	background: #fbfaf7;
	color: #171717;
	font: inherit;
	font-weight: 500;
	padding: 12px 13px;
}

.tvsf-form input:focus,
.tvsf-form select:focus,
.tvsf-form textarea:focus {
	outline: none;
	border-color: #c9a96e;
	box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.18);
}

.tvsf-consent {
	display: flex !important;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: flex-start;
	gap: 10px !important;
	color: #6f6a62 !important;
	font-weight: 600 !important;
	line-height: 1.45;
}

.tvsf-consent input {
	width: auto;
	margin-top: 4px;
}

.tvsf-submit {
	min-height: 52px;
	border: 0;
	border-radius: 8px;
	background: #c9a96e;
	color: #171717;
	cursor: pointer;
	font-size: 0.88rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tvsf-message {
	padding: 12px 14px;
	border-radius: 6px;
	font-weight: 700;
}

.tvsf-message--success {
	background: #edf7ed;
	color: #256b2c;
}

.tvsf-message--error {
	background: #fff1f1;
	color: #9d2323;
}

.tvsf-hidden {
	position: absolute;
	left: -9999px;
	opacity: 0;
}

@media (max-width: 860px) {
	.tvsf-form-wrap {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.tvsf-row {
		grid-template-columns: 1fr;
	}

	.tvsf-offer,
	.tvsf-form {
		padding: 22px;
	}

	.tvsf-price {
		font-size: 3rem;
	}
}

