/* Hoolduse lehe kujundus — saidi oma värvid (oranz #FF6D01, tumehall #32373C,
   valge/hall taust), Roboto font, madal variance (sümmeetriline, utilitaarne). */
.hooldus-page {
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 20px 60px;
}

.hooldus-hero {
	display: flex;
	align-items: center;
	gap: 48px;
	margin-bottom: 64px;
}

.hooldus-hero__text {
	flex: 1 1 50%;
}

.hooldus-hero__text h1 {
	font-size: 36px;
	margin: 0 0 16px;
	color: #32373C;
}

.hooldus-lead {
	font-size: 18px;
	font-weight: 500;
	color: #32373C;
	margin: 0 0 16px;
	line-height: 1.5;
}

.hooldus-hero__text p {
	font-size: 15px;
	line-height: 1.6;
	color: #55595e;
	margin: 0 0 24px;
}

.hooldus-cta {
	display: inline-block;
	background-color: #FF6D01;
	color: #ffffff;
	font-weight: 700;
	font-size: 15px;
	padding: 14px 28px;
	border-radius: 4px;
	text-decoration: none;
	transition: background-color 0.15s ease;
}

.hooldus-cta:hover {
	background-color: #C45300;
	color: #ffffff;
}

.hooldus-hero__image {
	flex: 1 1 50%;
}

.hooldus-placeholder {
	aspect-ratio: 4 / 3;
	border-radius: 6px;
	background: linear-gradient(135deg, #FFF4E8 0%, #F8FAFC 100%);
	border: 2px dashed #FF6D01;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px;
}

.hooldus-placeholder__icon {
	font-size: 48px;
	margin-bottom: 12px;
}

.hooldus-placeholder__label {
	font-size: 14px;
	color: #8a8f96;
	line-height: 1.5;
}

.hooldus-split {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	border-top: 1px solid #eee;
	padding-top: 40px;
}

.hooldus-brands {
	flex: 0 0 30%;
	max-width: 30%;
}

.hooldus-brands h2 {
	font-size: 22px;
	color: #32373C;
	margin: 0 0 20px;
}

.hooldus-brands__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.hooldus-brands__list li {
	position: relative;
	padding: 12px 16px 12px 38px;
	background-color: #F8FAFC;
	border-left: 3px solid #FF6D01;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 500;
	color: #32373C;
}

.hooldus-brands__list li::before {
	content: '\2713';
	position: absolute;
	left: 14px;
	top: 12px;
	color: #FF6D01;
	font-weight: 700;
}

@media (max-width: 767px) {
	.hooldus-hero {
		flex-direction: column;
		gap: 24px;
	}

	.hooldus-brands__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.hooldus-brands__list {
		grid-template-columns: 1fr;
	}
}

.hooldus-form {
	flex: 0 0 70%;
	max-width: 70%;
	background-color: #FFF4E8;
	border: 2px solid #FF6D01;
	border-radius: 6px;
	padding: 28px 32px;
	box-sizing: border-box;
}

.hooldus-form h2 {
	font-size: 22px;
	color: #32373C;
	margin: 0 0 20px;
}

@media (max-width: 767px) {
	.hooldus-split {
		flex-direction: column;
	}

	.hooldus-brands,
	.hooldus-form {
		flex: 1 1 100%;
		max-width: 100%;
	}
}

.hooldus-form label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #32373C;
	margin-bottom: 16px;
}

.hooldus-form input[type="text"],
.hooldus-form input[type="email"],
.hooldus-form input[type="tel"],
.hooldus-form select,
.hooldus-form textarea {
	width: 100%;
	margin-top: 6px;
	padding: 10px 12px;
	border: 1px solid #d8d8d8;
	border-radius: 4px;
	font-family: Roboto, sans-serif;
	font-size: 14px;
	box-sizing: border-box;
	background-color: #ffffff;
}

.hooldus-form textarea {
	min-height: 100px;
	resize: vertical;
}

.hooldus-form input[type="submit"] {
	background-color: #FF6D01;
	color: #ffffff;
	font-weight: 700;
	font-size: 15px;
	padding: 14px 28px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.hooldus-form input[type="submit"]:hover {
	background-color: #C45300;
}
