.lhcf,
.lhcf * {
	box-sizing: border-box;
}

.lhcf {
	--lhcf-dark: #2c353e;
	--lhcf-deep: #202930;
	--lhcf-ink: #172027;
	--lhcf-orange: #f95c3b;
	position: relative;
	isolation: isolate;
	width: 100%;
	overflow: hidden;
	padding: clamp(82px, 9vw, 130px) 0;
	background:
		radial-gradient(circle at 94% 8%, rgba(249, 92, 59, 0.11), transparent 27%),
		linear-gradient(180deg, #f7f4ef, #f4f1ec);
	color: var(--lhcf-ink);
	font-family: "DM Sans", Arial, sans-serif;
}

.lhcf::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	opacity: 0.4;
	background-image:
		linear-gradient(rgba(44, 53, 62, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(44, 53, 62, 0.04) 1px, transparent 1px);
	background-size: 76px 76px;
	content: "";
}

.lhcf a {
	color: inherit;
	text-decoration: none !important;
}

.lhcf__shell {
	display: grid;
	grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(55px, 8vw, 100px);
	width: min(1240px, calc(100% - 48px));
	margin: 0 auto;
}

.lhcf__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 19px;
	color: var(--lhcf-orange);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.19em;
	text-transform: uppercase;
}

.lhcf__eyebrow::before {
	width: 30px;
	height: 2px;
	background: currentColor;
	content: "";
}

.lhcf h2 {
	margin: 0;
	color: var(--lhcf-dark) !important;
	font-family: "Manrope", "DM Sans", Arial, sans-serif;
	font-size: clamp(43px, 5vw, 68px);
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -0.055em;
}

.lhcf h2 span {
	color: var(--lhcf-orange);
}

.lhcf__description {
	margin: 28px 0 0;
	color: #687179;
	font-size: 16px;
	line-height: 1.78;
}

.lhcf__direct {
	display: grid;
	gap: 12px;
	margin-top: 33px;
}

.lhcf__direct a {
	display: grid;
	grid-template-columns: 45px minmax(0, 1fr);
	align-items: center;
	gap: 13px;
	padding: 11px;
	border: 1px solid rgba(255, 255, 255, 0.82);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.54);
	box-shadow:
		0 13px 32px rgba(44, 53, 62, 0.07),
		inset 0 1px rgba(255, 255, 255, 0.96);
	color: #59636b;
	font-size: 13px;
	font-weight: 700;
	transition: border-color 0.25s ease, transform 0.25s ease;
}

.lhcf__direct a:hover {
	border-color: rgba(249, 92, 59, 0.28);
	transform: translateY(-3px);
}

.lhcf__direct-icon {
	display: grid;
	place-items: center;
	width: 45px;
	height: 45px;
	border-radius: 13px;
	background: rgba(249, 92, 59, 0.11);
	color: var(--lhcf-orange);
}

.lhcf__direct-icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.lhcf__direct small {
	display: block;
	margin-bottom: 3px;
	color: #90979c;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.lhcf__form-panel {
	padding: clamp(27px, 4vw, 42px);
	border: 1px solid rgba(255, 255, 255, 0.86);
	border-radius: 29px;
	background: rgba(255, 255, 255, 0.61);
	box-shadow:
		0 28px 75px rgba(35, 44, 51, 0.12),
		inset 0 1px rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px) saturate(125%);
	-webkit-backdrop-filter: blur(20px) saturate(125%);
}

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

.lhcf__field {
	display: grid;
	gap: 8px;
}

.lhcf__field > span {
	color: #59636b;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.lhcf__field--full {
	grid-column: 1 / -1;
}

.lhcf input,
.lhcf select,
.lhcf textarea {
	width: 100%;
	border: 1px solid rgba(44, 53, 62, 0.14);
	border-radius: 12px;
	outline: 0;
	background: rgba(255, 255, 255, 0.86);
	color: var(--lhcf-dark);
	font: 500 14px/1.5 "DM Sans", Arial, sans-serif;
	transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.lhcf input,
.lhcf select {
	height: 53px;
	padding: 0 15px;
}

.lhcf textarea {
	min-height: 145px;
	padding: 14px 15px;
	resize: vertical;
}

.lhcf input:focus,
.lhcf select:focus,
.lhcf textarea:focus {
	border-color: var(--lhcf-orange);
	box-shadow: 0 0 0 4px rgba(249, 92, 59, 0.1);
}

.lhcf input::placeholder,
.lhcf textarea::placeholder {
	color: #a1a7ab;
}

.lhcf__consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #687179;
	font-size: 11px;
	line-height: 1.55;
}

.lhcf__consent input {
	width: 17px;
	height: 17px;
	flex: 0 0 17px;
	margin-top: 1px;
	accent-color: var(--lhcf-orange);
}

.lhcf__submit-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.lhcf__submit-row p {
	max-width: 300px;
	margin: 0;
	color: #858d92;
	font-size: 10px;
	line-height: 1.55;
}

.lhcf__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-width: 166px;
	min-height: 54px;
	padding: 0 22px;
	border: 0;
	border-radius: 14px;
	background: var(--lhcf-orange);
	box-shadow: 0 15px 33px rgba(249, 92, 59, 0.26);
	color: #fff;
	cursor: pointer;
	font: 800 12px/1 "DM Sans", Arial, sans-serif;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.lhcf__submit:hover {
	box-shadow: 0 20px 41px rgba(249, 92, 59, 0.4);
	transform: translateY(-3px);
}

.lhcf__submit svg {
	width: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.lhcf__honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.lhcf-notice {
	margin-bottom: 22px;
	padding: 14px 16px;
	border: 1px solid;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.55;
}

.lhcf-notice--success {
	border-color: rgba(29, 145, 82, 0.24);
	background: rgba(29, 145, 82, 0.09);
	color: #176b40;
}

.lhcf-notice--warning {
	border-color: rgba(190, 124, 22, 0.25);
	background: rgba(232, 160, 45, 0.1);
	color: #80530f;
}

.lhcf-notice--error {
	border-color: rgba(190, 49, 49, 0.24);
	background: rgba(190, 49, 49, 0.08);
	color: #8a2626;
}

@media (max-width: 900px) {
	.lhcf__shell {
		grid-template-columns: 1fr;
	}

	.lhcf__intro {
		max-width: 720px;
	}
}

@media (max-width: 600px) {
	.lhcf {
		padding: 72px 0;
	}

	.lhcf__shell {
		width: calc(100% - 28px);
		gap: 46px;
	}

	.lhcf h2 {
		font-size: 40px;
	}

	.lhcf__description {
		font-size: 14px;
	}

	.lhcf__form-panel {
		padding: 23px 18px;
		border-radius: 23px;
	}

	.lhcf__form {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.lhcf__field,
	.lhcf__field--full {
		grid-column: 1;
	}

	.lhcf__submit-row {
		align-items: stretch;
		flex-direction: column;
	}

	.lhcf__submit {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lhcf *,
	.lhcf *::before,
	.lhcf *::after {
		transition-duration: 0.01ms !important;
	}
}

