/**
 * Front Page Styles
 *
 * @package Irritech
 */

body.home .site-main {
	padding-block: 0;
}

/* Hero Banner — Figma node 552:4559 */
.hero-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 1024px;
	overflow: hidden;
}

.hero-banner__media {
	position: absolute;
	inset: 0;
}

.hero-banner__image {
	position: absolute;
	width: 122.05%;
	height: 122.4%;
	max-width: none;
	left: -2.44%;
	top: -20.55%;
	object-fit: cover;
}

.hero-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(2, 33, 3, 0.4) 0%,
		rgba(2, 33, 3, 0.7) 100%
	);
}

.hero-banner__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	width: 100%;
	max-width: 1000px;
	margin-inline: auto;
	padding: 120px var(--container-padding);
	text-align: center;
}

.hero-banner__title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 700;
	line-height: 1.14;
	letter-spacing: -0.02em;
	color: var(--color-footer-text);
}

.hero-banner__subtitle {
	margin: 0;
	max-width: 1000px;
	font-family: var(--font-family-heading);
	font-size: clamp(1rem, 2vw, 1.5rem);
	font-weight: 600;
	line-height: 1.17;
	color: rgba(255, 255, 255, 0.9);
}

.hero-banner__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding-top: 16px;
}

.hero-banner__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 0 32px;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	border-radius: var(--border-radius-lg);
	transition: background-color var(--transition-base), color var(--transition-base), opacity var(--transition-base);
}

.hero-banner__btn--primary {
	color: #222a2e;
	background-color: var(--color-accent);
}

.hero-banner__btn--primary:hover,
.hero-banner__btn--primary:focus-visible {
	color: #222a2e;
	background-color: #c9d42f;
}

.hero-banner__btn--secondary {
	color: var(--color-footer-text);
	background-color: rgba(255, 255, 255, 0.1);
}

.hero-banner__btn--secondary:hover,
.hero-banner__btn--secondary:focus-visible {
	color: var(--color-footer-text);
	background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
	.hero-banner {
		min-height: min(100vh, 720px);
	}

	.hero-banner__content {
		padding-block: 80px;
		gap: 24px;
	}

	.hero-banner__actions {
		flex-direction: column;
		width: 100%;
	}

	.hero-banner__btn {
		width: 100%;
		max-width: 320px;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.hero-banner {
		min-height: 800px;
	}
}

/* Introduction — Figma node 552:4573 */
.introduction {
	background-color: var(--color-background-alt);
	padding-bottom: 120px;
}

.introduction__intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: start;
	gap: 64px;
	padding-block: 120px;
}

.introduction__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 100px;
}

.introduction__text {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.introduction__eyebrow {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #344c33;
}

.introduction__title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 700;
	line-height: 1.07;
	color: var(--color-footer-bg);
}

.introduction__description {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #011301;
}

.introduction__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 64px;
	padding: 12px 24px;
	font-family: var(--font-family-heading);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.33;
	color: var(--color-footer-text);
	text-decoration: none;
	background-color: var(--color-footer-bg);
	border-radius: var(--border-radius-lg);
	transition: background-color var(--transition-base);
}

.introduction__btn:hover,
.introduction__btn:focus-visible {
	color: var(--color-footer-text);
	background-color: #033a05;
}

.introduction__media {
	position: relative;
}

.introduction__image-wrap {
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.introduction__image {
	display: block;
	width: 100%;
	height: 584px;
	object-fit: cover;
	object-position: center;
}

.introduction__testimonial {
	position: absolute;
	bottom: -50px;
	left: 0;
	z-index: 1;
	width: min(320px, calc(100% - 32px));
	margin: 0;
	padding: 32px;
	background-color: var(--color-background);
	border-radius: 12px;
	box-shadow:
		0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 8px 10px -6px rgba(0, 0, 0, 0.1);
	transform: translateX(-267px);
}

.introduction__quote {
	margin: 0 0 16px;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-style: italic;
	font-weight: 400;
	line-height: 1.5;
	color: #222a2e;
}

.introduction__cite {
	display: block;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
	color: #1d2529;
}

.introduction__stats {
	padding-bottom: 64px;
}

.introduction__stats-list {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	margin: 0;
	padding: 32px 0 0;
	list-style: none;
}

.introduction__stat {
	flex: 1 1 calc(16.666% - 27px);
	min-width: 140px;
	min-height: 146px;
	padding: 25px;
	border: 1px solid rgba(195, 200, 189, 0.3);
	border-radius: 12px;
	background-color: var(--color-background);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.introduction__stat:hover {
	background-color: var(--color-accent);
}

.introduction__stat-value {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.25;
	color: #222a2e;
}

.introduction__stat--featured .introduction__stat-value {
	color: #222a2e;
}

.introduction__stat:not(.introduction__stat--featured) .introduction__stat-value {
	color: #214b00;
}

.introduction__stat-label {
	margin: 8px 0 0;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	color: #222a2e;
}

.introduction__videos-label {
	margin: 0 0 24px;
	font-family: var(--font-family-heading);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.33;
	color: #222a2e;
}

.introduction__video-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 300px 300px;
	gap: 32px;
}

.introduction__video {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	box-shadow:
		0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.introduction__video--featured {
	grid-column: 1 / span 2;
	grid-row: 1 / span 2;
}

.introduction__video-grid .introduction__video:nth-child(2) {
	grid-column: 3;
	grid-row: 1;
}

.introduction__video-grid .introduction__video:nth-child(3) {
	grid-column: 3;
	grid-row: 2;
}

.introduction__video-media {
	position: absolute;
	inset: 0;
}

.introduction__video-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.introduction__video-image--featured {
	position: absolute;
	width: 115%;
	height: 115%;
	max-width: none;
	left: -7.5%;
	top: -15%;
}

.introduction__video-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		0deg,
		rgba(2, 33, 3, 0.9) 0%,
		rgba(2, 33, 3, 0.2) 50%,
		rgba(2, 33, 3, 0) 100%
	);
}

.introduction__video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background-color: rgba(255, 255, 255, 0.6);
	border-radius: 9999px;
	transform: translate(-50%, -50%);
}

.introduction__video-play--lg {
	width: 64px;
	height: 64px;
}

.introduction__video-play img {
	display: block;
	width: 24px;
	height: 24px;
}

.introduction__video-body {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 40px;
}

.introduction__video-badge {
	display: inline-flex;
	align-self: flex-start;
	padding: 6px 16px;
	font-family: var(--font-family-heading);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.43;
	color: #222a2e;
	background-color: #e5f077;
	border-radius: 9999px;
}

.introduction__video-title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.17;
	color: var(--color-footer-text);
}

@media (max-width: 1199px) {
	.introduction__intro {
		grid-template-columns: 1fr;
		gap: 48px;
		padding-block: 80px;
	}

	.introduction__content {
		gap: 48px;
	}

	.introduction__testimonial {
		bottom: 24px;
		left: 24px;
		transform: none;
	}

	.introduction__stat {
		flex: 1 1 calc(33.333% - 22px);
	}

	.introduction__video-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}

	.introduction__video-grid .introduction__video:nth-child(2),
	.introduction__video-grid .introduction__video:nth-child(3) {
		grid-column: auto;
		grid-row: auto;
	}

	.introduction__video--featured {
		grid-column: 1 / -1;
		grid-row: auto;
		min-height: 400px;
	}

	.introduction__video:not(.introduction__video--featured) {
		min-height: 280px;
	}
}

@media (max-width: 767px) {
	.introduction {
		padding-bottom: 80px;
	}

	.introduction__intro {
		padding-block: 64px;
	}

	.introduction__image {
		height: 420px;
	}

	.introduction__stat {
		flex: 1 1 calc(50% - 16px);
		min-width: 0;
	}

	.introduction__video-grid {
		grid-template-columns: 1fr;
	}

	.introduction__video--featured,
	.introduction__video:not(.introduction__video--featured) {
		min-height: 260px;
	}

	.introduction__video-body {
		padding: 24px;
	}

	.introduction__video-title {
		font-size: 1.125rem;
	}
}

/* Solutions — Figma node 552:4661 */
.solutions {
	display: flex;
	flex-direction: column;
	gap: 60px;
	padding-block: 120px;
	background-color: var(--color-footer-bg);
}

.solutions__main {
	display: grid;
	grid-template-columns: minmax(0, 688px) minmax(0, 1fr);
	align-items: center;
	gap: 64px;
}

.solutions__intro {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.solutions__text {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.solutions__eyebrow {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.33;
	color: var(--color-footer-text);
}

.solutions__title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 700;
	line-height: 1.07;
	color: var(--color-footer-text);
}

.solutions__description {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-footer-text);
}

.solutions__image-wrap {
	overflow: hidden;
	border-radius: 16px;
}

.solutions__image {
	display: block;
	width: 100%;
	height: 317px;
	object-fit: cover;
}

.solutions__cards {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-self: stretch;
}

.solutions__card {
	display: flex;
	flex: 1 1 0;
	align-items: center;
	gap: 24px;
	padding: 24px;
	text-decoration: none;
	border-radius: 16px;
	background-color: rgba(255, 255, 255, 0.1);
	transition: background-color var(--transition-base);
}

.solutions__card:hover,
.solutions__card:focus-visible {
	background-color: rgba(255, 255, 255, 0.15);
}

.solutions__card:hover {
	background-color: var(--color-accent);
}

.solutions__card--featured:hover,
.solutions__card--featured:focus-visible {
	background-color: #c9d42f;
}

.solutions__card-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 8px;
	max-width: 448px;
	min-width: 0;
}

.solutions__card-title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.17;
	color: var(--color-footer-text);
}

.solutions__card:hover .solutions__card-title {
	color: #222a2e;
}

.solutions__card-text {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.33;
	color: var(--color-footer-text);
}

.solutions__card:hover .solutions__card-text {
	color: #222a2e;
}

.solutions__card-icon {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 9999px;
}

.solutions__card-icon--dark, .solutions__card:hover .solutions__card-icon {
	background-color: #010312;
}

.solutions__card-icon--accent {
	background-color: var(--color-accent);
}

.solutions__card-icon img {
	display: block;
	width: 13px;
	height: 13px;
}

.solutions__card-icon img.solutions__card-icon-img-light {
	display: none;
}

.solutions__card-icon img.solutions__card-icon-img-dark {
	display: block;
}

.solutions__card:hover .solutions__card-icon img.solutions__card-icon-img-light {
	display: block;
}

.solutions__card:hover .solutions__card-icon img.solutions__card-icon-img-dark {
	display: none;
}

.solutions__benefits {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding-top: 33px;
	border-top: 1px solid rgba(191, 201, 193, 0.3);
}

.solutions__benefit {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.solutions__benefit-title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.33;
	color: var(--color-footer-text);
}

.solutions__benefit-text {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.43;
	color: #bababb;
}

@media (max-width: 1199px) {
	.solutions__main {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.solutions__cards {
		max-width: 688px;
	}
}

@media (max-width: 767px) {
	.solutions {
		gap: 48px;
		padding-block: 80px;
	}

	.solutions__image {
		height: 240px;
	}

	.solutions__card {
		flex-direction: column;
		align-items: flex-start;
	}

	.solutions__card-icon {
		align-self: flex-end;
	}

	.solutions__benefits {
		grid-template-columns: 1fr 1fr;
		padding-top: 24px;
	}
}

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

/* Featured Products — Figma node 552:4722 */
.featured-products {
	padding-block: 120px;
	background-color: var(--color-background);
}

.featured-products__inner {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.featured-products__header {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
	text-align: center;
}

.featured-products__eyebrow {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.33;
	color: #222a2e;
}

.featured-products__title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 700;
	line-height: 1.07;
	color: #000000;
}

.featured-products__tabs {
	border-bottom: 1px solid rgba(195, 200, 189, 0.2);
}

.featured-products__tabs-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.featured-products__tabs-item {
	flex-shrink: 0;
}

.featured-products__tab {
	display: block;
	padding: 12px 24px 14px;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #222a2e;
	white-space: nowrap;
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	cursor: pointer;
	transition: font-weight var(--transition-base), border-color var(--transition-base);
}

.featured-products__tab:hover,
.featured-products__tab:focus-visible {
	color: #222a2e;
	outline: none;
}

.featured-products__tab--active {
	font-weight: 600;
	border-bottom-color: #000000;
}

.featured-products__panels {
	display: block;
}

.featured-products__panel.is-active {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.featured-products__panel[hidden] {
	display: none !important;
}

.featured-products__carousel {
	position: relative;
}

.featured-products__slider {
	position: relative;
}

.featured-products__track .slick-list {
	margin: 0 -16px;
	overflow: hidden;
}

.featured-products__track .slick-slide {
	height: auto;
	margin: 0 16px;
}

.featured-products__track .slick-slide > div {
	height: 100%;
}

.featured-products__nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	background-color: var(--color-background);
	border: 1px solid rgba(0, 0, 0, 0.5);
	border-radius: 9999px;
	cursor: pointer;
	transform: translateY(-50%);
	transition: opacity var(--transition-base);
}

.featured-products__nav.slick-disabled {
	opacity: 0.35;
	cursor: not-allowed;
	pointer-events: none;
}

.featured-products__nav--prev {
	left: -24px;
}

.featured-products__nav--next {
	right: -24px;
}

.featured-products__nav img {
	display: block;
	width: 8px;
	height: 12px;
}

.featured-products__nav.slick-prev::before,
.featured-products__nav.slick-next::before {
	display: none;
}

.featured-products__card {
	min-width: 0;
}

.featured-products__card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	text-decoration: none;
	background-color: var(--color-background);
	border-radius: 16px;
	box-shadow:
		0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -4px rgba(0, 0, 0, 0.1);
	transition: box-shadow var(--transition-base);
}

.featured-products__card-link:hover,
.featured-products__card-link:focus-visible {
	box-shadow:
		0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.featured-products__card-media {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 256px;
	overflow: hidden;
	background-color: #f2f2f2;
}

.featured-products__card-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.featured-products__card-body {
	padding: 32px 16px;
}

.featured-products__card-title {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	font-family: var(--font-family-heading);
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.17;
	color: #222a2e;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

/* Figma 552:4764 — carousel-indicator */
.featured-products__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 60px;
}

.featured-products__dots .slick-dots {
	position: static;
	bottom: auto;
	display: flex !important;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: center;
	width: auto;
	margin: 0;
	padding: 0;
	list-style: none;
}

.featured-products__dots .slick-dots li {
	display: block;
	width: 8px;
	height: 8px;
	margin: 0;
	padding: 0;
}

.featured-products__dots .slick-dots li button {
	display: block;
	width: 8px;
	height: 8px;
	padding: 0;
	font-size: 0;
	line-height: 0;
	color: transparent;
	background-color: #aeaca7;
	border: 0;
	border-radius: 100px;
	cursor: pointer;
	transition: background-color var(--transition-base);
}

.featured-products__dots .slick-dots li button::before {
	display: none;
	content: none;
}

.featured-products__dots .slick-dots li button:hover,
.featured-products__dots .slick-dots li button:focus-visible {
	background-color: #9a9893;
	outline: none;
}

.featured-products__dots .slick-dots li.slick-active button {
	background-color: #d71920;
}

.featured-products__dots .slick-dots li.slick-active button:hover,
.featured-products__dots .slick-dots li.slick-active button:focus-visible {
	background-color: #d71920;
}

.featured-products__footer {
	display: flex;
	justify-content: center;
}

.featured-products__cta {
	padding-bottom: 2px;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	color: #344c33;
	text-decoration: none;
	border-bottom: 2px solid #022103;
	transition: color var(--transition-base);
}

.featured-products__cta:hover,
.featured-products__cta:focus-visible {
	color: var(--color-footer-bg);
}

@media (max-width: 1199px) {
	.featured-products__nav--prev {
		left: 0;
	}

	.featured-products__nav--next {
		right: 0;
	}
}

@media (max-width: 767px) {
	.featured-products {
		padding-block: 80px;
	}

	.featured-products__inner {
		gap: 40px;
	}

	.featured-products__tabs-list {
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.featured-products__tabs-list::-webkit-scrollbar {
		display: none;
	}

	.featured-products__carousel {
		padding-inline: 56px;
	}

	.featured-products__nav--prev {
		left: 0;
	}

	.featured-products__nav--next {
		right: 0;
	}

	.featured-products__card-media {
		height: 220px;
	}

	.featured-products__card-title {
		font-size: 1.25rem;
	}
}

/* Featured Projects — Figma node 552:4776 */
.featured-projects {
	position: relative;
	padding-block: 120px;
	overflow: hidden;
	background-color: var(--color-background);
}

.featured-projects__glow {
	position: absolute;
	top: 31px;
	left: calc(50% - 546px);
	width: 350px;
	height: 350px;
	background-color: rgba(209, 237, 140, 0.2);
	border-radius: 9999px;
	filter: blur(50px);
	pointer-events: none;
}

.featured-projects__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.featured-projects__header {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: flex-end;
	justify-content: space-between;
}

.featured-projects__intro {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.featured-projects__eyebrow {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.33;
	color: #222a2e;
}

.featured-projects__title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 700;
	line-height: 1.07;
	color: #1d2529;
}

.featured-projects__cta {
	padding-bottom: 2px;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	color: #344c33;
	text-decoration: none;
	border-bottom: 2px solid #022103;
	transition: color var(--transition-base);
}

.featured-projects__cta:hover,
.featured-projects__cta:focus-visible {
	color: var(--color-footer-bg);
}

.featured-projects__carousel {
	position: relative;
}

.featured-projects__track .slick-list {
	margin: 0 -16px;
	overflow: hidden;
}

.featured-projects__track .slick-slide {
	height: auto;
	margin: 0 16px;
}

.featured-projects__track .slick-slide > div {
	height: 100%;
}

.featured-projects__nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	background-color: var(--color-background);
	border: 1px solid rgba(0, 0, 0, 0.5);
	border-radius: 9999px;
	cursor: pointer;
	transform: translateY(-50%);
	transition: opacity var(--transition-base);
}

.featured-projects__nav.slick-disabled {
	opacity: 0.35;
	cursor: not-allowed;
	pointer-events: none;
}

.featured-projects__nav--prev {
	left: -24px;
}

.featured-projects__nav--next {
	right: -24px;
}

.featured-projects__nav img {
	display: block;
	width: 8px;
	height: 12px;
}

.featured-projects__nav.slick-prev::before,
.featured-projects__nav.slick-next::before {
	display: none;
}

.featured-projects__card {
	height: 100%;
	min-width: 0;
	padding-bottom: 20px;
}

.featured-projects__card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	text-decoration: none;
	background-color: var(--color-background);
	border-radius: 16px;
	box-shadow:
		0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -4px rgba(0, 0, 0, 0.1);
	transition: box-shadow var(--transition-base);
}

.featured-projects__card-link:hover,
.featured-projects__card-link:focus-visible {
	box-shadow:
		0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.featured-projects__card-media {
	position: relative;
	height: 256px;
	overflow: hidden;
}

.featured-projects__card-image {
	position: absolute;
	width: 100%;
	height: 156.25%;
	max-width: none;
	top: -28.13%;
	left: 0;
	object-fit: cover;
}

.featured-projects__card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 8px;
	padding: 32px;
}

.featured-projects__card-location {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #222a2e;
}

.featured-projects__card-title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.17;
	color: #222a2e;
	min-height: 56px;
}

.featured-projects__card-text {
	margin: 0;
	padding-top: 8px;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #222a2e;
}

.featured-projects__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 60px;
}

.featured-projects__dots .slick-dots {
	position: static;
	bottom: auto;
	display: flex !important;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: center;
	width: auto;
	margin: 0;
	padding: 0;
	list-style: none;
}

.featured-projects__dots .slick-dots li {
	display: block;
	width: 8px;
	height: 8px;
	margin: 0;
	padding: 0;
}

.featured-projects__dots .slick-dots li button {
	display: block;
	width: 8px;
	height: 8px;
	padding: 0;
	font-size: 0;
	line-height: 0;
	color: transparent;
	background-color: #aeaca7;
	border: 0;
	border-radius: 100px;
	cursor: pointer;
	transition: background-color var(--transition-base);
}

.featured-projects__dots .slick-dots li button::before {
	display: none;
	content: none;
}

.featured-projects__dots .slick-dots li.slick-active button {
	background-color: #d71920;
}

@media (max-width: 1199px) {
	.featured-projects__nav--prev {
		left: 0;
	}

	.featured-projects__nav--next {
		right: 0;
	}
}

@media (max-width: 767px) {
	.featured-projects {
		padding-block: 80px;
	}

	.featured-projects__glow {
		left: -80px;
		width: 280px;
		height: 280px;
	}

	.featured-projects__inner {
		gap: 32px;
	}

	.featured-projects__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.featured-projects__carousel {
		padding-inline: 56px;
	}

	.featured-projects__nav--prev {
		left: 0;
	}

	.featured-projects__nav--next {
		right: 0;
	}

	.featured-projects__card-title {
		font-size: 1.25rem;
	}
}

/* Partners — Figma node 552:4836 */
.partners {
	padding-block: 120px;
	background-color: var(--color-background);
}

.partners__inner {
	display: flex;
	flex-direction: column;
	gap: 64px;
}

.partners__top {
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
}

.partners__eyebrow {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.33;
	color: #222a2e;
	text-align: center;
}

.partners__title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 700;
	line-height: 1.07;
	color: #222a2e;
	text-align: center;
}

.partners__logos-wrap {
	width: 100%;
}

.partners__logos-track .slick-list {
	margin: 0 -7.5px;
	overflow: hidden;
}

.partners__logos-track .slick-slide {
	height: auto;
	margin: 0 7.5px;
}

.partners__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 147px;
}

.partners__logo-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.partners__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 8px 60px;
}

.partners__dots .slick-dots {
	position: static;
	bottom: auto;
	display: flex !important;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: center;
	width: auto;
	margin: 0;
	padding: 0;
	list-style: none;
}

.partners__dots .slick-dots li {
	display: block;
	width: 8px;
	height: 8px;
	margin: 0;
	padding: 0;
}

.partners__dots .slick-dots li button {
	display: block;
	width: 8px;
	height: 8px;
	padding: 0;
	font-size: 0;
	line-height: 0;
	color: transparent;
	background-color: #aeaca7;
	border: 0;
	border-radius: 100px;
	cursor: pointer;
	transition: background-color var(--transition-base);
}

.partners__dots .slick-dots li button::before {
	display: none;
	content: none;
}

.partners__dots .slick-dots li.slick-active button {
	background-color: #d71920;
}

.partners__event-title {
	margin: 0;
	max-width: 1000px;
	font-family: var(--font-family-heading);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 1.25;
	color: var(--color-footer-bg);
	text-align: center;
}

.partners__gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 300px 300px;
	gap: 32px;
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
}

.partners__gallery-item {
	overflow: hidden;
	margin: 0;
	border-radius: 16px;
	box-shadow:
		0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.partners__gallery-item--featured {
	grid-column: 1 / span 2;
	grid-row: 1 / span 2;
}

.partners__gallery-item:nth-child(2) {
	grid-column: 3;
	grid-row: 1;
}

.partners__gallery-item:nth-child(3) {
	grid-column: 3;
	grid-row: 2;
}

.partners__gallery-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1199px) {
	.partners__gallery {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}

	.partners__gallery-item--featured {
		grid-column: 1 / -1;
		grid-row: auto;
		min-height: 400px;
	}

	.partners__gallery-item:nth-child(2),
	.partners__gallery-item:nth-child(3) {
		grid-column: auto;
		grid-row: auto;
		min-height: 280px;
	}
}

@media (max-width: 767px) {
	.partners {
		padding-block: 80px;
	}

	.partners__inner {
		gap: 48px;
	}

	.partners__top {
		gap: 32px;
	}

	.partners__logo {
		height: 100px;
	}

	.partners__gallery {
		grid-template-columns: 1fr;
	}

	.partners__gallery-item--featured,
	.partners__gallery-item:nth-child(2),
	.partners__gallery-item:nth-child(3) {
		grid-column: auto;
		grid-row: auto;
		min-height: 260px;
	}
}

/* Customer Reviews — Figma node 552:4872 */
.customer-reviews {
	position: relative;
	padding-block: 120px;
	overflow: hidden;
	background-color: var(--color-footer-bg);
}

.customer-reviews__watermark {
	position: absolute;
	top: 22px;
	left: 33px;
	width: 410px;
	height: 328px;
	pointer-events: none;
}

.customer-reviews__watermark img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.customer-reviews__inner {
	position: relative;
	z-index: 1;
}

.customer-reviews__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 528px);
	grid-template-areas:
		"intro media"
		"content media"
		"nav media";
	column-gap: 64px;
	row-gap: 32px;
	align-items: start;
}

.customer-reviews__intro {
	grid-area: intro;
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 688px;
}

.customer-reviews__media-col {
	grid-area: media;
	justify-self: end;
	width: 100%;
	max-width: 528px;
}

.customer-reviews__content-col {
	grid-area: content;
	min-width: 0;
}

.customer-reviews__nav {
	grid-area: nav;
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: end;
}

.customer-reviews__content-track .slick-list {
	overflow: hidden;
}

.customer-reviews__content-slide {
	display: flex !important;
	flex-direction: column;
	gap: 32px;
}

.customer-reviews__media-track {
	width: 100%;
}

.customer-reviews__media-track.slick-initialized .slick-list,
.customer-reviews__media-track.slick-initialized .slick-track {
	min-height: 459px;
}

.customer-reviews__media-slide {
	height: 459px;
}

.customer-reviews__eyebrow {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.33;
	color: var(--color-footer-text);
}

.customer-reviews__title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 700;
	line-height: 1.07;
	color: #fefefe;
}

.customer-reviews__quote {
	margin: 0;
}

.customer-reviews__quote p {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1.25rem;
	font-style: italic;
	font-weight: 400;
	line-height: 1.2;
	color: #dde1dd;
}

.customer-reviews__author {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.customer-reviews__name {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2;
	color: #dde1dd;
}

.customer-reviews__role {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #dde1dd;
}

.customer-reviews__media {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	width: 100%;
	height: 459px;
}

.customer-reviews__image-main {
	flex-shrink: 0;
	width: 345px;
	height: 460px;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.customer-reviews__image--main {
	width: 118.98%;
	height: 101.39%;
	max-width: none;
	margin-left: -11.11%;
	object-fit: cover;
}

.customer-reviews__image-preview {
	position: relative;
	flex: 1 1 auto;
	height: 212px;
	margin-top: 0;
	margin-left: 24px;
	overflow: hidden;
	border-radius: 12px;
}

.customer-reviews__image-preview-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: 12px;
	pointer-events: none;
}

.customer-reviews__image--preview {
	position: absolute;
	width: 190%;
	height: 190.44%;
	max-width: none;
	top: -75.16%;
	left: -51.01%;
	object-fit: cover;
}

.customer-reviews__arrow {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	border-radius: 100px;
	cursor: pointer;
	transition: opacity var(--transition-base);
}

.customer-reviews__arrow.slick-disabled {
	opacity: 0.35;
	cursor: not-allowed;
	pointer-events: none;
}

.customer-reviews__arrow--prev {
	background-color: rgba(255, 255, 255, 0.1);
}

.customer-reviews__arrow--next {
	background-color: var(--color-accent);
}

.customer-reviews__arrow img {
	display: block;
	width: 20px;
	height: 14px;
}

.customer-reviews__arrow.slick-prev::before,
.customer-reviews__arrow.slick-next::before {
	display: none;
}

@media (max-width: 1199px) {
	.customer-reviews__layout {
		grid-template-columns: 1fr;
		grid-template-areas:
			"intro"
			"media"
			"content"
			"nav";
		row-gap: 48px;
	}

	.customer-reviews__media-col {
		justify-self: center;
		max-width: none;
	}

	.customer-reviews__media-track.slick-initialized .slick-list,
	.customer-reviews__media-track.slick-initialized .slick-track {
		min-height: 0;
	}

	.customer-reviews__media-slide {
		height: auto;
	}

	.customer-reviews__media {
		height: auto;
		margin-inline: auto;
	}

	.customer-reviews__image-main {
		width: min(345px, 100%);
		height: 420px;
	}

	.customer-reviews__image-preview {
		height: 180px;
	}
}

@media (max-width: 767px) {
	.customer-reviews {
		padding-block: 80px;
	}

	.customer-reviews__watermark {
		left: -40px;
		width: 280px;
		height: 220px;
		opacity: 0.6;
	}

	.customer-reviews__media {
		flex-direction: column;
		align-items: center;
	}

	.customer-reviews__image-main {
		width: 100%;
		height: 360px;
	}

	.customer-reviews__image-preview {
		width: 70%;
		margin-top: 16px;
		margin-left: 0;
	}

	.customer-reviews__quote p {
		font-size: 1.125rem;
	}
}

/* News — Figma node 552:4908 */
.news {
	position: relative;
	padding-block: 120px;
	overflow: hidden;
	background-color: var(--color-background);
}

.news__glow {
	position: absolute;
	top: 35px;
	left: calc(50% + 200px);
	width: 525px;
	height: 525px;
	background-color: rgba(209, 237, 140, 0.2);
	border-radius: 9999px;
	filter: blur(50px);
	pointer-events: none;
}

.news__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 64px;
}

.news__header {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
	text-align: center;
}

.news__eyebrow {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.33;
	color: #222a2e;
}

.news__title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 700;
	line-height: 1.07;
	color: var(--color-footer-bg);
}

.news__tabs {
	border-bottom: 1px solid rgba(195, 200, 189, 0.2);
}

.news__tabs-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.news__tabs-item {
	flex-shrink: 0;
}

.news__tab {
	display: block;
	padding: 12px 24px 14px;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #222a2e;
	white-space: nowrap;
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	cursor: pointer;
	transition: font-weight var(--transition-base), border-color var(--transition-base);
}

.news__tab:hover,
.news__tab:focus-visible {
	color: #222a2e;
	outline: none;
}

.news__tab--active {
	font-weight: 600;
	border-bottom-color: #000000;
}

.news__panel.is-active {
	display: flex;
	flex-direction: column;
	gap: 64px;
}

.news__panel[hidden] {
	display: none !important;
}

.news__carousel {
	position: relative;
}

.news__track .slick-list {
	margin: 0 -16px;
	overflow: hidden;
}

.news__track .slick-slide {
	height: auto;
	margin: 0 16px;
}

.news__track .slick-slide > div {
	height: 100%;
}

.news__nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	background-color: var(--color-background);
	border: 1px solid rgba(0, 0, 0, 0.5);
	border-radius: 9999px;
	cursor: pointer;
	transform: translateY(-50%);
	transition: opacity var(--transition-base);
}

.news__nav.slick-disabled {
	opacity: 0.35;
	cursor: not-allowed;
	pointer-events: none;
}

.news__nav--prev {
	left: -25px;
}

.news__nav--next {
	right: -25px;
}

.news__nav img {
	display: block;
	width: 8px;
	height: 12px;
}

.news__nav.slick-prev::before,
.news__nav.slick-next::before {
	display: none;
}

.news__card {
	height: 100%;
	min-width: 0;
	padding-bottom: 30px;
}

.news__card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	text-decoration: none;
	background-color: var(--color-background);
	border-radius: 16px;
	box-shadow:
		0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -4px rgba(0, 0, 0, 0.1);
	transition: box-shadow var(--transition-base);
}

.news__card-link:hover,
.news__card-link:focus-visible {
	box-shadow:
		0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.news__card-media {
	position: relative;
	height: 256px;
	overflow: hidden;
}

.news__card-image {
	position: absolute;
	width: 100%;
	height: 100%;
	max-width: none;
	inset: 0;
	object-fit: cover;
}

.news__card-image--offset {
	height: 177.79%;
	top: -23.23%;
}

.news__card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 8px;
	padding: 32px;
}

.news__card-location {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #222a2e;
}

.news__card-title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.33;
	color: #1d2529;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	align-self: stretch;
	overflow: hidden;
	min-height: 64px;
}

.news__card-excerpt {
	margin: 0;
	padding-top: 8px;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #222a2e;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	align-self: stretch;
	overflow: hidden;
}

.news__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 60px;
}

.news__dots .slick-dots {
	position: static;
	bottom: auto;
	display: flex !important;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: center;
	width: auto;
	margin: 0;
	padding: 0;
	list-style: none;
}

.news__dots .slick-dots li {
	display: block;
	width: 8px;
	height: 8px;
	margin: 0;
	padding: 0;
}

.news__dots .slick-dots li button {
	display: block;
	width: 8px;
	height: 8px;
	padding: 0;
	font-size: 0;
	line-height: 0;
	color: transparent;
	background-color: #aeaca7;
	border: 0;
	border-radius: 100px;
	cursor: pointer;
	transition: background-color var(--transition-base);
}

.news__dots .slick-dots li button::before {
	display: none;
	content: none;
}

.news__dots .slick-dots li.slick-active button {
	background-color: #d71920;
}

.news__footer {
	display: flex;
	justify-content: center;
}

.news__cta {
	padding-bottom: 2px;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	color: #344c33;
	text-decoration: none;
	border-bottom: 2px solid #022103;
	transition: color var(--transition-base);
}

.news__cta:hover,
.news__cta:focus-visible {
	color: var(--color-footer-bg);
}

@media (max-width: 1199px) {
	.news__nav--prev {
		left: 0;
	}

	.news__nav--next {
		right: 0;
	}
}

@media (max-width: 767px) {
	.news {
		padding-block: 80px;
	}

	.news__glow {
		left: auto;
		right: -120px;
		width: 320px;
		height: 320px;
	}

	.news__inner {
		gap: 48px;
	}

	.news__tabs-list {
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.news__tabs-list::-webkit-scrollbar {
		display: none;
	}

	.news__carousel {
		padding-inline: 56px;
	}

	.news__nav--prev {
		left: 0;
	}

	.news__nav--next {
		right: 0;
	}

	.news__card-title {
		font-size: 1.25rem;
	}
}

/* Contact & Branches — Figma node 552:4980 */
.contact-branches {
	padding-block: 120px;
	background-color: #edeeef;
}

.contact-branches__card {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	overflow: hidden;
	background-color: var(--color-background);
	border-radius: 24px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-branches__form-col {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 80px;
}

.contact-branches__form-intro {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.contact-branches__form-title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--color-footer-bg);
}

.contact-branches__form-lead {
	margin: 0;
	font-family: var(--font-family-base);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #1d2529;
}

.contact-branches__form {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-top: 16px;
}

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

.contact-branches__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contact-branches__label {
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #1d2529;
}

.contact-branches__input,
.contact-branches__select,
.contact-branches__textarea {
	width: 100%;
	padding: 19px 17px;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #1d2529;
	background-color: var(--color-background);
	border: 1px solid #c3c8bd;
	border-radius: 8px;
	transition: border-color var(--transition-base);
}

.contact-branches__input::placeholder,
.contact-branches__textarea::placeholder {
	color: #5d6366;
}

.contact-branches__input:focus-visible,
.contact-branches__select:focus-visible,
.contact-branches__textarea:focus-visible {
	border-color: var(--color-footer-bg);
	outline: none;
}

.contact-branches__select-wrap {
	position: relative;
}

.contact-branches__select {
	padding-right: 48px;
	appearance: none;
	cursor: pointer;
}

.contact-branches__select-icon {
	position: absolute;
	top: 50%;
	right: 17px;
	width: 24px;
	height: 24px;
	pointer-events: none;
	transform: translateY(-50%);
}

.contact-branches__textarea {
	min-height: 130px;
	resize: vertical;
}

.contact-branches__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 20px;
	font-family: var(--font-family-base);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	color: var(--color-background);
	background-color: var(--color-footer-bg);
	border: 0;
	border-radius: 8px;
	box-shadow:
		0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -4px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: background-color var(--transition-base);
}

.contact-branches__submit:hover,
.contact-branches__submit:focus-visible {
	background-color: #033a05;
	outline: none;
}

.contact-branches__branch-col {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px;
	overflow: hidden;
	background-color: var(--color-footer-bg);
}

.contact-branches__watermark {
	position: absolute;
	top: 22px;
	left: 33px;
	width: 410px;
	height: 328px;
	pointer-events: none;
}

.contact-branches__watermark img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.contact-branches__branch-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
}

.contact-branches__branch-title {
	margin: 0 0 24px;
	font-family: var(--font-family-heading);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.25;
	color: #f7f7f7;
}

.contact-branches__branch-lead {
	margin: 0 0 40px;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #f7f7f7;
}

.contact-branches__branch-tools {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.contact-branches__search {
	position: relative;
}

.contact-branches__search-icon {
	position: absolute;
	top: 50%;
	left: 16px;
	width: 18px;
	height: 18px;
	pointer-events: none;
	transform: translateY(-50%);
}

.contact-branches__search-input {
    padding: 18px 16px 18px 48px !important;
    font-family: var(--font-family-heading);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #f7f7f7;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
}

.contact-branches__search-input::placeholder {
	color: #b1b4b6;
}

.contact-branches__search-input:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.35);
	outline-offset: 2px;
}

.contact-branches__branch-link {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	font-family: var(--font-family-base);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	color: #1d2529;
	text-decoration: none;
	background-color: var(--color-accent);
	border-radius: 8px;
	transition: filter var(--transition-base);
}

.contact-branches__branch-link:hover,
.contact-branches__branch-link:focus-visible {
	filter: brightness(0.95);
	outline: none;
}

.contact-branches__branch-link-icon {
	display: block;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

@media (max-width: 1199px) {
	.contact-branches__card {
		grid-template-columns: 1fr;
	}

	.contact-branches__form-col,
	.contact-branches__branch-col {
		padding: 48px;
	}
}

@media (max-width: 767px) {
	.contact-branches {
		padding-block: 80px;
	}

	.contact-branches__form-col,
	.contact-branches__branch-col {
		padding: 32px 24px;
	}

	.contact-branches__form-row {
		grid-template-columns: 1fr;
	}

	.contact-branches__form-title,
	.contact-branches__branch-title {
		font-size: 1.5rem;
	}

	.contact-branches__watermark {
		left: -40px;
		width: 280px;
		height: 220px;
		opacity: 0.6;
	}
}
