/* Cooperation page (information/liebherr_cooperation): intro + application form,
   same two-column layout and card language as the homepage FAQ/lead sections. */
.lh-coop {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(24px, 5vw, 64px);
	align-items: start;
	margin: 8px 0 48px;
	font-family: var(--lh-font);
}
@media (max-width: 767px) {
	.lh-coop {
		grid-template-columns: minmax(0, 1fr);
	}
}

.lh-coop__text {
	margin: 0 0 22px;
	color: var(--lh-text);
	font-size: 15.5px;
	line-height: 1.65;
}
.lh-coop__perks {
	padding: 22px;
	border: 1px solid var(--lh-border);
	border-radius: 12px;
	background: #F7F9FB;
}
.lh-coop__perks-title {
	margin-bottom: 12px;
	color: var(--lh-text-muted);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
}
.lh-coop__perks-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.lh-coop__perks-list li {
	position: relative;
	margin-bottom: 12px;
	padding-left: 22px;
	color: var(--lh-ink);
	font-size: 14.5px;
	line-height: 1.5;
}
.lh-coop__perks-list li:last-child {
	margin-bottom: 0;
}
.lh-coop__perks-list li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lh-accent);
}

.lh-coop__contact {
	margin-top: 18px;
	padding: 22px;
	border: 1px solid var(--lh-border);
	border-radius: 12px;
	background: var(--lh-white);
}
.lh-coop__contact-title {
	margin-bottom: 8px;
	color: var(--lh-text-muted);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
}
.lh-coop__contact-phone {
	color: var(--lh-ink);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -.02em;
	text-decoration: none;
}
.lh-coop__contact-phone:hover {
	color: var(--lh-accent);
}

.lh-coop__card {
	padding: 28px;
	border: 1px solid var(--lh-border);
	border-radius: 14px;
	background: var(--lh-white);
}
.lh-coop__card-title {
	margin: 0 0 6px;
	color: var(--lh-ink);
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -.02em;
}
.lh-coop__card-note {
	margin: 0 0 22px;
	color: var(--lh-text-muted);
	font-size: 14px;
	line-height: 1.55;
}

.lh-coop__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 18px;
	margin-bottom: 20px;
}
.lh-coop__field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.lh-coop__field--full {
	grid-column: 1 / -1;
}
.lh-coop__field label {
	color: var(--lh-ink);
	font-size: 13.5px;
	font-weight: 600;
}
.lh-coop__input {
	width: 100%;
	height: 48px;
	padding: 0 15px;
	border: 1px solid var(--lh-border);
	border-radius: 8px;
	background: var(--lh-white);
	box-shadow: none;
	color: var(--lh-ink);
	font-family: var(--lh-font);
	font-size: 14.5px;
}
.lh-coop__select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7075' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	padding-right: 36px;
}
.lh-coop__textarea {
	height: auto;
	min-height: 110px;
	padding: 12px 15px;
	line-height: 1.5;
	resize: vertical;
}
.lh-coop__input::placeholder {
	color: var(--lh-text-faint);
}
.lh-coop__input:focus {
	outline: 0;
	border-color: var(--lh-accent);
}
.lh-coop__input.error_input {
	border-color: #d64545;
}
.lh-coop__error {
	color: #d64545;
	font-size: 12.5px;
}

.lh-coop__captcha fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}
.lh-coop__captcha legend {
	margin-bottom: 8px;
	padding: 0;
	border: 0;
	color: var(--lh-text-muted);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
}
.lh-coop__captcha input[type="text"] {
	height: 46px;
	margin-bottom: 8px;
	padding: 0 15px;
	border: 1px solid var(--lh-border);
	border-radius: 8px;
	font-family: var(--lh-font);
	font-size: 14.5px;
}
.lh-coop__captcha img {
	border-radius: 6px;
	vertical-align: middle;
}

.lh-coop__submit {
	width: 100%;
	height: 52px;
	border: 0;
	border-radius: 10px;
	background: var(--lh-accent);
	color: var(--lh-white);
	font-family: var(--lh-font);
	font-size: 15.5px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color .15s ease;
}
.lh-coop__submit:hover {
	background: var(--lh-accent-hover);
}
.lh-coop__submit:disabled {
	opacity: .6;
	cursor: default;
}

.lh-coop__success {
	padding: 20px 0;
	color: var(--lh-ink);
	font-size: 16px;
	font-weight: 600;
	text-align: center;
}

@media (max-width: 575px) {
	.lh-coop__grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.lh-coop__card {
		padding: 20px;
	}
}
