/*
Theme Name: HydraLink
Theme URI: https://hydralinksolutions.com
Author: HydraLink
Description: Custom theme for HydraLink Infrastructure Solutions
Version: 1.46.5
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: hydralink
*/

:root {
	--hl-color-text: #1a1a1a;
	--hl-color-text-muted: #333333;
	--hl-color-accent: #1278f3;
	--hl-color-accent-hover: #0f63c9;
	--hl-color-cta: #1278f3;
	--hl-color-cta-hover: #0f63c9;
	--hl-color-white: #ffffff;
	--hl-header-height: 80px;
	--hl-container-max: 1440px;
	--hl-container-padding: 40px;
	--hl-font: 'Manrope', sans-serif;
	--hl-color-hero-accent: #1278f3;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	max-width: 100%;
}

body {
	margin: 0;
	font-family: var(--hl-font);
	color: var(--hl-color-text);
	background: var(--hl-color-white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

/* Shared layout container */
.hl-container {
	width: 100%;
	max-width: var(--hl-container-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--hl-container-padding);
	padding-right: var(--hl-container-padding);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--hl-color-white);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	height: var(--hl-header-height);
}

.site-header__logo {
	flex: 0 0 auto;
}

.site-header__logo img {
	width: 133px;
	height: 40px;
}

.site-header__nav {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 0;
}

.site-header__right {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}

/* Navigation */
.main-nav {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-nav__item {
	position: relative;
}

.main-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: var(--hl-color-text);
	white-space: nowrap;
	transition: color 0.2s ease;
}

.main-nav__link:hover,
.main-nav__link.is-active {
	color: var(--hl-color-accent);
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-thickness: 1px;
}

.main-nav__angle {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	transition: transform 0.2s ease;
}

.main-nav__item:hover .main-nav__angle {
	transform: rotate(90deg);
}

/* Dropdown */
.main-nav__dropdown {
	list-style: none;
	margin: 0;
	padding: 0;
	background: transparent;
}

.main-nav__dropdown-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--hl-color-text-muted);
	text-decoration: none;
	transition: color 0.2s ease, background 0.2s ease;
}

.main-nav__dropdown-link .main-nav__angle {
	flex-shrink: 0;
}

@media (min-width: 1025px) {
	.main-nav__dropdown {
		position: absolute;
		top: calc(100% + 12px);
		left: 50%;
		min-width: 220px;
		padding: 8px 0;
		background: var(--hl-color-white);
		border: 1px solid rgba(0, 0, 0, 0.08);
		border-radius: 8px;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
		opacity: 0;
		visibility: hidden;
		transform: translateX(-50%) translateY(8px);
		transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	}

	.main-nav__item:hover > .main-nav__dropdown {
		opacity: 1;
		visibility: visible;
		transform: translateX(-50%) translateY(0);
	}

	.main-nav__dropdown-link {
		padding: 10px 20px;
	}

	.main-nav__dropdown-item {
		position: relative;
	}

	.main-nav__dropdown--nested {
		top: 0;
		left: 100%;
		min-width: 280px;
		margin-left: 4px;
		opacity: 0;
		visibility: hidden;
		transform: translateX(8px);
	}

	.main-nav__dropdown-item:hover > .main-nav__dropdown--nested {
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
	}

	.main-nav__dropdown-link:hover {
		color: var(--hl-color-accent);
		background: rgba(18, 120, 243, 0.06);
	}
}

/* CTA Button */
.site-header__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	padding: 12px 20px;
	font-family: var(--hl-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--hl-color-white);
	background: var(--hl-color-cta);
	border: none;
	border-radius: 6px;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s ease;
}

.site-header__cta:hover {
	background: var(--hl-color-cta-hover);
	color: var(--hl-color-white);
}

.site-header__cta-arrow {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.site-header__cta-text--mobile {
	display: none;
}

/* Mobile toggle */
.site-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
}

@media (max-width: 1024px) {
	.site-header__toggle {
		display: flex;
	}
}

.site-header__toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--hl-color-text);
	position: relative;
	transition: background 0.2s ease;
}

.site-header__toggle span::before,
.site-header__toggle span::after {
	content: '';
	position: absolute;
	left: 0;
	width: 22px;
	height: 2px;
	background: var(--hl-color-text);
	transition: transform 0.2s ease;
}

.site-header__toggle span::before {
	top: -7px;
}

.site-header__toggle span::after {
	top: 7px;
}

.site-header.is-open .site-header__toggle span {
	background: transparent;
}

.site-header.is-open .site-header__toggle span::before {
	top: 0;
	transform: rotate(45deg);
}

.site-header.is-open .site-header__toggle span::after {
	top: 0;
	transform: rotate(-45deg);
}

/* Responsive */
@media (max-width: 1200px) {
	.main-nav {
		gap: 24px;
	}
}

@media (max-width: 1024px) {
	:root {
		--hl-container-padding: 24px;
		--hl-header-height: 64px;
	}

	.site-header__inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: auto;
		padding: 10px 20px;
	}

	.site-header__right {
		display: contents;
	}

	.site-header__toggle {
		order: 1;
		flex-shrink: 0;
	}

	.site-header__logo {
		order: 2;
		flex-shrink: 0;
	}

	.site-header__logo img {
		width: 100px;
		height: auto;
	}

	.site-header__cta {
		order: 3;
		display: inline-flex;
		flex-shrink: 0;
		padding: 5px 10px;
		font-size: 12px;
		font-weight: 600;
		border-radius: 5px;
		gap: 6px;
	}

	.site-header__cta-arrow {
		width: 14px;
		height: 14px;
	}

	.site-header__cta-text--desktop {
		display: none;
	}

	.site-header__cta-text--mobile {
		display: inline;
	}

	.site-header__nav {
		flex: none;
		order: 4;
		display: block;
		position: fixed;
		top: var(--hl-header-height);
		left: 0;
		right: 0;
		bottom: 0;
		justify-content: flex-start;
		padding: 16px 20px 32px;
		background: var(--hl-color-white);
		overflow-x: hidden;
		overflow-y: auto;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.25s ease, visibility 0.25s ease;
		z-index: 1000;
	}

	.site-header.is-open .site-header__nav {
		opacity: 1;
		visibility: visible;
	}

	.main-nav {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
	}

	.main-nav__item {
		position: static;
		width: 100%;
		border-bottom: 1px solid rgba(26, 26, 26, 0.08);
	}

	.main-nav__link {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		padding: 16px 0;
		font-size: 16px;
		line-height: 24px;
		white-space: normal;
		text-decoration: none;
	}

	.main-nav__link.is-active {
		color: var(--hl-color-accent);
		text-decoration: underline;
		text-underline-offset: 4px;
	}

	.main-nav__item.is-expanded > .main-nav__link {
		color: var(--hl-color-accent);
	}

	.main-nav__item:hover .main-nav__angle,
	.main-nav__dropdown-item:hover > .main-nav__dropdown-link .main-nav__angle {
		transform: none;
	}

	.main-nav__item.is-expanded .main-nav__angle,
	.main-nav__dropdown-item.is-expanded > .main-nav__dropdown-link .main-nav__angle {
		transform: rotate(90deg);
	}

	/* Mobile accordion — reset all desktop dropdown positioning */
	.site-header__nav .main-nav__dropdown,
	.site-header__nav .main-nav__dropdown--nested {
		position: static;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		display: none;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: transparent;
		overflow: visible;
	}

	.main-nav__item.is-expanded > .main-nav__dropdown {
		display: block;
		padding: 4px 0 12px;
	}

	.main-nav__dropdown-item {
		position: static;
		width: 100%;
		border-bottom: 1px solid rgba(26, 26, 26, 0.06);
	}

	.main-nav__dropdown-item:last-child {
		border-bottom: 0;
	}

	.main-nav__dropdown-link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 14px 0 14px 16px;
		font-size: 15px;
		font-weight: 400;
		line-height: 22px;
		color: var(--hl-color-text);
		white-space: normal;
		word-break: break-word;
		-webkit-tap-highlight-color: transparent;
	}

	.main-nav__dropdown-link--nested,
	.main-nav__dropdown-subitem > .main-nav__dropdown-link {
		padding: 12px 0 12px 32px;
		font-size: 14px;
		line-height: 20px;
		color: var(--hl-color-text-muted);
	}

	.main-nav__dropdown-link:hover,
	.main-nav__dropdown-link:focus-visible {
		color: var(--hl-color-text);
		background: transparent;
	}

	.main-nav__dropdown-item.is-expanded > .main-nav__dropdown-link {
		color: var(--hl-color-accent);
		background: rgba(18, 120, 243, 0.06);
	}

	.main-nav__dropdown-item.is-expanded > .main-nav__dropdown--nested {
		display: block;
		margin: 0 0 8px 16px;
		padding: 0 0 4px 12px;
		border-left: 2px solid rgba(18, 120, 243, 0.2);
	}

	.main-nav__dropdown-subitem {
		border-bottom: 1px solid rgba(26, 26, 26, 0.06);
	}

	.main-nav__dropdown-subitem:last-child {
		border-bottom: 0;
	}

	.main-nav__dropdown-subitem > .main-nav__dropdown-link.is-active,
	.main-nav__dropdown-subitem > .main-nav__dropdown-link:active {
		color: var(--hl-color-accent);
	}

	.main-nav > .main-nav__item > .main-nav__link:hover {
		color: var(--hl-color-accent);
	}
}

/* Hero */
.hero {
	position: relative;
	display: flex;
	align-items: stretch;
	overflow: hidden;
	min-height: calc(100vh - var(--hl-header-height));
	min-height: calc(100dvh - var(--hl-header-height));
	background-color: #0a1520;
	color: var(--hl-color-white);
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.hero__video,
.hero__bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__bg {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	animation: hero-bg-drift 24s ease-in-out infinite alternate;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 26, 0.7);
}

@keyframes hero-bg-drift {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(1.06);
	}
}

.hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	padding-top: 100px;
	padding-bottom: 50px;
}

.hero__content {
	max-width: 960px;
}

.hero__eyebrow {
	margin: 0 0 50px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-white);
}

.hero__title {
	margin: 0 0 50px;
	font-size: 64px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--hl-color-white);
}

.hero__title-line {
	display: inline-block;
	white-space: nowrap;
}

.hero__title-accent {
	color: var(--hl-color-hero-accent);
}

.hero__description {
	max-width: 900px;
	margin: 0 0 50px;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 24px;
	font-family: var(--hl-font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	border-radius: 6px;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero__btn--primary {
	color: var(--hl-color-white);
	background: var(--hl-color-hero-accent);
	border: 1px solid var(--hl-color-hero-accent);
}

.hero__btn--primary:hover {
	background: var(--hl-color-cta-hover);
	border-color: var(--hl-color-cta-hover);
	color: var(--hl-color-white);
}

.hero__btn--secondary {
	color: var(--hl-color-white);
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero__btn--secondary:hover {
	border-color: var(--hl-color-white);
	color: var(--hl-color-white);
}

.hero__btn-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.hero__btn-text--mobile {
	display: none;
}

.hl-stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
}

.hl-stats__item {
	display: flex;
	flex: 0 1 auto;
	align-items: flex-start;
	gap: 12px;
}

.hl-stats__value {
	flex-shrink: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--hl-color-hero-accent);
}

.hl-stats__label {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: rgba(255, 255, 255, 0.85);
}

.hero__stats {
	margin-top: 50px;
	padding-top: 50px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
	.hero__inner {
		padding-top: 40px;
		padding-bottom: 32px;
	}

	.hero__eyebrow {
		margin-bottom: 24px;
		font-size: 12px;
		font-weight: 700;
		line-height: 20px;
		letter-spacing: 0.1em;
	}

	.hero__title {
		margin-bottom: 24px;
		font-size: 40px;
		font-weight: 700;
		line-height: 48px;
		letter-spacing: 0;
	}

	.hero__title-line {
		white-space: normal;
	}

	.hero__description {
		margin-bottom: 24px;
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
	}

	.hero__actions {
		flex-wrap: nowrap;
		gap: 12px;
	}

	.hero__btn {
		flex: 1 1 0;
		min-width: 0;
		padding: 12px 14px;
		font-size: 12px;
		font-weight: 600;
		line-height: 1.4;
	}

	.hero__btn-text--desktop {
		display: none;
	}

	.hero__btn-text--mobile {
		display: inline;
	}

	.hero__btn-icon {
		width: 14px;
		height: 14px;
	}

	.hero__stats {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 16px;
		margin-top: 32px;
		padding-top: 32px;
	}

	.hl-stats__item {
		flex-direction: column;
		flex: none;
		align-items: center;
		width: auto;
		gap: 4px;
		text-align: center;
	}

	.hl-stats__value {
		font-size: 32px;
		font-weight: 700;
		line-height: 48px;
		letter-spacing: 0;
	}

	.hl-stats__label {
		font-size: 12px;
		font-weight: 400;
		line-height: 16px;
	}
}

/* Why Water Matters page hero */
.why-water-page-hero {
	position: relative;
	display: flex;
	align-items: stretch;
	overflow: hidden;
	min-height: calc(100vh - var(--hl-header-height));
	min-height: calc(100dvh - var(--hl-header-height));
	background-color: #0a1520;
	color: var(--hl-color-white);
}

.why-water-page-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.why-water-page-hero__video,
.why-water-page-hero__bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.why-water-page-hero__bg {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.why-water-page-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 26, 0.7);
}

.why-water-page-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	padding-top: 80px;
	padding-bottom: 50px;
	text-align: center;
}

.why-water-page-hero__title {
	margin: 0 0 48px;
	font-size: 64px;
	font-weight: 700;
	line-height: 1.1;
	color: var(--hl-color-white);
}

.why-water-page-hero__callout {
	width: 100%;
	max-width: 720px;
	margin: 0 0 50px;
	padding: 50px 30px;
	border: 1px solid #dd5151;
	border-radius: 10px;
	background: rgba(221, 81, 81, 0.5);
}

.why-water-page-hero__highlight {
	margin: 0 0 16px;
	font-size: 64px;
	font-weight: 800;
	line-height: 48px;
	color: var(--hl-color-white);
}

.why-water-page-hero__highlight-text {
	margin: 0;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	color: var(--hl-color-white);
}

.why-water-page-hero__subtitle {
	display: none;
}

.why-water-page-hero__stats {
	margin-top: 0;
	padding-top: 50px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.why-water-page-hero__stats .hl-stats__item {
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	flex: 1 1 0;
	min-width: 0;
	max-width: 280px;
}

.why-water-page-hero__stats .hl-stats__label {
	text-align: left;
}

@media (max-width: 1024px) {
	.why-water-page-hero__inner {
		padding-top: 48px;
		padding-bottom: 32px;
	}

	.why-water-page-hero__title {
		align-self: flex-start;
		width: 100%;
		margin-bottom: 16px;
		font-size: 40px;
		font-weight: 700;
		line-height: 48px;
		text-align: left;
	}

	.why-water-page-hero__subtitle {
		display: block;
		align-self: flex-start;
		width: 100%;
		max-width: 100%;
		margin: 0 0 32px;
		font-size: 20px;
		font-weight: 400;
		line-height: 24px;
		text-align: left;
		color: var(--hl-color-white);
	}

	.why-water-page-hero__callout {
		margin-bottom: 32px;
		padding: 20px;
		border: 1px solid #1278f3;
		background: rgba(18, 120, 243, 0.1);
	}

	.why-water-page-hero__highlight {
		margin-bottom: 8px;
		font-size: 32px;
		font-weight: 700;
		line-height: 48px;
		color: #1278f3;
	}

	.why-water-page-hero__highlight-text {
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
	}

	.why-water-page-hero__stats {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 16px;
		padding-top: 32px;
	}

	.why-water-page-hero__stats .hl-stats__item {
		flex-direction: column;
		align-items: center;
		max-width: none;
		text-align: center;
	}

	.why-water-page-hero__stats .hl-stats__label {
		text-align: center;
	}
}

/* Why Water Matters page — SDG targets */
.why-water-page-targets {
	background: var(--hl-color-white);
	color: var(--hl-color-text);
}

.why-water-page-targets__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.why-water-page-targets__header {
	margin-bottom: 48px;
}

.why-water-page-targets__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 48px;
	color: var(--hl-color-accent);
}

.why-water-page-targets__title {
	margin: 0 0 16px;
	font-size: 32px;
	font-weight: 400;
	line-height: 48px;
	color: var(--hl-color-text);
}

.why-water-page-targets__description {
	margin: 0;
	max-width: 720px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text-muted);
}

.why-water-page-targets__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.why-water-page-targets__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	gap: 16px;
	padding: 40px 20px;
	background: var(--hl-color-white);
	border: 1px solid #cdc5b5;
	border-radius: 10px;
	text-align: center;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.why-water-page-targets__card:hover,
.why-water-page-targets__card.hl-animate.is-visible:hover {
	border-color: var(--hl-color-accent);
	box-shadow: 0 20px 30px -10px rgba(26, 26, 26, 0.2);
	transform: translateY(-20px);
}

.why-water-page-targets__icon {
	display: block;
	width: 160px;
	height: 160px;
	flex-shrink: 0;
}

.why-water-page-targets__code {
	margin: 0;
	font-size: 32px;
	font-weight: 600;
	line-height: 1;
	color: var(--hl-color-accent);
}

.why-water-page-targets__card-title {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	color: var(--hl-color-text);
}

.why-water-page-targets__card-text {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text-muted);
}

.why-water-page-targets__card-body {
	display: contents;
}

@media (max-width: 1024px) {
	.why-water-page-targets__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.why-water-page-targets__header {
		margin-bottom: 32px;
		text-align: left;
	}

	.why-water-page-targets__label {
		margin-bottom: 8px;
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
		text-transform: uppercase;
	}

	.why-water-page-targets__title {
		margin-bottom: 12px;
		font-size: 24px;
		font-weight: 400;
		line-height: 32px;
	}

	.why-water-page-targets__description {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}

	.why-water-page-targets__grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.why-water-page-targets__card {
		flex-direction: row;
		align-items: flex-start;
		gap: 12px;
		height: auto;
		padding: 16px;
		border-color: rgba(0, 0, 0, 0.08);
		border-radius: 10px;
		text-align: left;
	}

	.why-water-page-targets__card:hover,
	.why-water-page-targets__card.hl-animate.is-visible:hover {
		border-color: rgba(0, 0, 0, 0.08);
		box-shadow: none;
		transform: none;
	}

	.why-water-page-targets__card-body {
		display: flex;
		flex: 1;
		flex-direction: column;
		gap: 6px;
		min-width: 0;
	}

	.why-water-page-targets__icon {
		width: 72px;
		height: 72px;
	}

	.why-water-page-targets__code {
		font-size: 16px;
		font-weight: 600;
		line-height: 20px;
	}

	.why-water-page-targets__card-title {
		font-size: 16px;
		font-weight: 600;
		line-height: 24px;
	}

	.why-water-page-targets__card-text {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
		color: var(--hl-color-text-muted);
	}
}

/* Why Water Matters page — The Gap */
.why-water-page-gap {
	background: #f9f7f2;
	color: var(--hl-color-text);
}

.why-water-page-gap__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.why-water-page-gap__header {
	margin-bottom: 48px;
}

.why-water-page-gap__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 48px;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.why-water-page-gap__title {
	margin: 0 0 16px;
	font-size: 32px;
	font-weight: 400;
	line-height: 48px;
	color: var(--hl-color-text);
}

.why-water-page-gap__description {
	margin: 0;
	max-width: 720px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text-muted);
}

.why-water-page-gap__visual {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 64px;
	margin-bottom: 48px;
}

.why-water-page-gap__chart {
	flex: 0 0 auto;
	width: 500px;
	height: 500px;
	max-width: 100%;
	margin: 0;
}

.why-water-page-gap__chart-pie {
	position: relative;
	width: 100%;
	aspect-ratio: 1;
	container-type: inline-size;
}

.why-water-page-gap__chart-svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.why-water-page-gap__slice {
	transform-box: view-box;
	transform-origin: 250px 250px;
}

.why-water-page-gap__chart-value {
	position: absolute;
	transform: translate(-50%, -50%);
	font-size: 8cqi;
	font-weight: 700;
	line-height: 1;
	color: var(--hl-color-white);
	white-space: nowrap;
	pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
	html.hl-gap-charts-ready [data-hl-gap-chart]:not(.is-animated) .why-water-page-gap__slice {
		transform: scale(0);
		opacity: 0;
	}

	html.hl-gap-charts-ready [data-hl-gap-chart].is-animated .why-water-page-gap__slice {
		animation: hl-gap-pie-slice 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
		animation-delay: var(--slice-delay, 0s);
	}

	html.hl-gap-charts-ready [data-hl-gap-chart]:not(.is-animated) .why-water-page-gap__chart-value {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.88);
	}

	html.hl-gap-charts-ready [data-hl-gap-chart].is-animated .why-water-page-gap__chart-value {
		animation: hl-gap-pie-label 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
		animation-delay: var(--label-delay, 0.45s);
	}
}

@keyframes hl-gap-pie-slice {
	0% {
		transform: scale(0);
		opacity: 0;
	}

	20% {
		opacity: 1;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes hl-gap-pie-label {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.88);
	}

	100% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.why-water-page-gap__slice {
		transform: none;
		opacity: 1;
	}

	.why-water-page-gap__chart-value {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

.why-water-page-gap__legend {
	flex: 0 0 auto;
	min-width: 0;
}

.why-water-page-gap__legend-title {
	margin: 0 0 24px;
	font-size: 32px;
	font-weight: 400;
	line-height: 48px;
	white-space: nowrap;
	color: var(--hl-color-text);
}

.why-water-page-gap__legend-list {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.why-water-page-gap__legend-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.why-water-page-gap__legend-swatch {
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	margin-top: 4px;
	border-radius: 2px;
}

.why-water-page-gap__legend-text {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text-muted);
}

.why-water-page-gap__footnote {
	margin: 0;
	max-width: 960px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text-muted);
}

@media (max-width: 1024px) {
	.why-water-page-gap__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.why-water-page-gap__header {
		margin-bottom: 32px;
		text-align: left;
	}

	.why-water-page-gap__label {
		margin-bottom: 12px;
		font-size: 16px;
		line-height: 48px;
	}

	.why-water-page-gap__title {
		font-size: 24px;
		font-weight: 400;
		line-height: 32px;
	}

	.why-water-page-gap__description {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}

	.why-water-page-gap__visual {
		flex-direction: column;
		gap: 32px;
		margin-bottom: 32px;
	}

	.why-water-page-gap__chart {
		width: min(100%, 500px);
		height: auto;
		aspect-ratio: 1;
		margin-inline: auto;
	}

	.why-water-page-gap__legend {
		flex: none;
		width: 100%;
		max-width: none;
		text-align: left;
	}

	.why-water-page-gap__legend-title {
		margin-bottom: 24px;
		font-size: 32px;
		font-weight: 400;
		line-height: 32px;
		white-space: normal;
		text-align: left;
	}

	.why-water-page-gap__legend-text {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}

	.why-water-page-gap__footnote {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
	}
}

/* Why Water Matters page — HydraOffset */
.why-water-page-offset {
	background: var(--hl-color-white);
	color: var(--hl-color-text);
}

.why-water-page-offset__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.why-water-page-offset__mission {
	margin-bottom: 48px;
}

.why-water-page-offset__mission--mobile,
.why-water-page-offset__works--mobile {
	display: none;
}

.why-water-page-offset__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 48px;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.why-water-page-offset__title {
	margin: 0 0 16px;
	max-width: none;
	font-size: 32px;
	font-weight: 400;
	line-height: 48px;
	white-space: normal;
	color: var(--hl-color-text);
}

.why-water-page-offset__text {
	max-width: none;
	width: 100%;
}

.why-water-page-offset__text p {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text-muted);
}

.why-water-page-offset__text p + p {
	margin-top: 16px;
}

.why-water-page-offset__text a {
	color: var(--hl-color-accent);
	text-decoration: underline;
}

.why-water-page-offset__text a:hover {
	color: var(--hl-color-accent-hover);
}

.why-water-page-offset__section-title {
	margin: 0 0 16px;
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
	color: var(--hl-color-text);
}

.why-water-page-offset__focus {
	margin-bottom: 48px;
}

.why-water-page-offset__section-text {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text-muted);
}

.why-water-page-offset__list {
	margin: 0;
	padding-left: 24px;
}

.why-water-page-offset__list li {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text-muted);
}

.why-water-page-offset__list li + li {
	margin-top: 8px;
}

.why-water-page-offset__steps {
	margin-top: 0;
}

.why-water-page-offset__table-wrap {
	overflow-x: auto;
}

.why-water-page-offset__table {
	--why-water-offset-table-border: #b3d4fc;
	--why-water-offset-table-row-alt: #e8f2ff;
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	border: 1px solid var(--why-water-offset-table-border);
}

.why-water-page-offset__table thead th {
	padding: 14px 16px;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	letter-spacing: 0.04em;
	text-align: center;
	text-transform: uppercase;
	color: var(--hl-color-white);
	background: var(--hl-color-accent);
	border: 1px solid var(--why-water-offset-table-border);
}

.why-water-page-offset__table thead th:nth-child(2) {
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: 0.1em;
}

.why-water-page-offset__table thead th:first-child {
	width: 48px;
	padding-left: 12px;
	padding-right: 12px;
}

.why-water-page-offset__table tbody th,
.why-water-page-offset__table tbody td {
	padding: 20px 16px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	vertical-align: top;
	text-align: left;
	color: var(--hl-color-text);
	border: 1px solid var(--why-water-offset-table-border);
}

.why-water-page-offset__table tbody tr {
	background: var(--hl-color-white);
}

.why-water-page-offset__table tbody tr:nth-child(even) {
	background: var(--why-water-offset-table-row-alt);
}

.why-water-page-offset__table tbody th.why-water-page-offset__table-step {
	width: 48px;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: var(--hl-color-text);
}

.why-water-page-offset__table tbody td.why-water-page-offset__table-who {
	width: 16%;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: var(--hl-color-text);
}

.why-water-page-offset__table tbody td.why-water-page-offset__table-what {
	width: 48%;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.why-water-page-offset__table tbody td.why-water-page-offset__table-principle {
	width: 28%;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

@media (min-width: 1025px) {
	.why-water-page-offset__mission--desktop {
		margin-bottom: 80px;
	}

	.why-water-page-offset__focus {
		margin-bottom: 80px;
	}

	.why-water-page-offset__steps .why-water-page-offset__section-title {
		margin-bottom: 80px;
	}
}

.why-water-page-offset__works-title {
	margin: 0 0 48px;
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
	color: var(--hl-color-text);
}

.why-water-page-offset__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px;
}

.why-water-page-offset__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	padding: 30px 20px;
	background: var(--hl-color-white);
	border: 1px solid #cdc5b5;
	border-radius: 10px;
	text-align: left;
}

.why-water-page-offset__step {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 30px;
	background: #f7f4ee;
	border: 1px solid #cdc5b5;
	border-radius: 5px;
}

.why-water-page-offset__step-number {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	color: #d7d1c3;
}

.why-water-page-offset__card-title {
	margin: 0 0 20px;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	color: var(--hl-color-text);
}

.why-water-page-offset__card-text {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text-muted);
}

@media (max-width: 1024px) {
	.why-water-page-offset__mission--desktop,
	.why-water-page-offset__works--desktop {
		display: none;
	}

	.why-water-page-offset__mission--mobile,
	.why-water-page-offset__works--mobile {
		display: block;
	}

	.why-water-page-offset__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.why-water-page-offset__mission {
		margin-bottom: 32px;
		text-align: left;
	}

	.why-water-page-offset__label {
		margin-bottom: 12px;
		font-size: 16px;
		line-height: 48px;
	}

	.why-water-page-offset__title {
		font-size: 24px;
		font-weight: 400;
		line-height: 32px;
		white-space: normal;
	}

	.why-water-page-offset__text p {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}

	.why-water-page-offset__works-title {
		margin-bottom: 32px;
		font-size: 24px;
		font-weight: 400;
		line-height: 32px;
		text-align: left;
	}

	.why-water-page-offset__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.why-water-page-offset__card {
		padding: 30px 20px;
		border-radius: 10px;
		align-items: flex-start;
		text-align: left;
	}

	.why-water-page-offset__card-title {
		font-size: 16px;
		font-weight: 600;
		line-height: 24px;
	}

	.why-water-page-offset__card-text {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}

	.get-started--why-water-page .get-started__title,
	.get-started--infrastructure-planning-page .get-started__title {
		font-size: 32px;
		font-weight: 400;
		line-height: 48px;
	}

	.get-started--why-water-page .get-started__description,
	.get-started--infrastructure-planning-page .get-started__description {
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
	}

	.get-started--why-water-page .get-started__btn--primary,
	.get-started--infrastructure-planning-page .get-started__btn--primary {
		padding: 10px 15px;
		font-size: 14px;
		font-weight: 600;
		line-height: 1.4;
		letter-spacing: 0.03em;
		border-radius: 5px;
	}
}

/* Trusted by */
.trusted-by {
	background: var(--hl-color-white);
	color: var(--hl-color-text);
}

.trusted-by__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.trusted-by__header {
	margin-bottom: 80px;
}

.trusted-by__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.trusted-by__title {
	margin: 0;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--hl-color-text);
	white-space: nowrap;
}

.trusted-by__slider {
	--trusted-by-gap: 80px;
	--trusted-by-visible: 6;
	container-type: inline-size;
	overflow: hidden;
	width: 100%;
}

.trusted-by__track {
	display: flex;
	align-items: center;
	width: max-content;
	gap: var(--trusted-by-gap);
	animation: trusted-by-scroll var(--trusted-by-duration, 40s) linear infinite;
}

.trusted-by__slider:hover .trusted-by__track {
	animation-play-state: paused;
}

.trusted-by__slide {
	flex: 0 0 calc((100cqw - (var(--trusted-by-visible) - 1) * var(--trusted-by-gap)) / var(--trusted-by-visible));
	width: calc((100cqw - (var(--trusted-by-visible) - 1) * var(--trusted-by-gap)) / var(--trusted-by-visible));
	display: flex;
	align-items: center;
	justify-content: center;
	height: 64px;
}

.trusted-by__slide img {
	width: 100%;
	max-width: 100%;
	height: 64px;
	object-fit: contain;
	object-position: center;
}

.trusted-by__pagination {
	display: none;
}

@keyframes trusted-by-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-1 * var(--trusted-by-distance, 50%)));
	}
}

@media (max-width: 1024px) {
	.trusted-by__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.trusted-by__header {
		margin-bottom: 32px;
		text-align: left;
	}

	.trusted-by__label {
		margin-bottom: 4px;
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
		letter-spacing: 0.1em;
	}

	.trusted-by__title {
		font-size: 24px;
		font-weight: 400;
		line-height: 32px;
		white-space: normal;
	}

	.trusted-by__slider {
		--trusted-by-gap: 30px;
		width: calc(100% + (2 * var(--hl-container-padding)));
		max-width: none;
		margin-right: calc(-1 * var(--hl-container-padding));
		margin-left: calc(-1 * var(--hl-container-padding));
	}

	.trusted-by__slide {
		flex: 0 0 auto;
		width: auto;
		height: 48px;
	}

	.trusted-by__slide img {
		width: auto;
		max-width: 148px;
		height: 48px;
	}
}

/* Why water matters */
.why-water {
	background: #f7f5f1;
	color: var(--hl-color-text);
}

.why-water__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.why-water__header {
	margin-bottom: 48px;
}

.why-water__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.why-water__title {
	margin: 0 0 24px;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--hl-color-text);
}

.why-water__description {
	margin: 0;
	max-width: 900px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--hl-color-text);
}

.why-water__slider {
	width: 100%;
}

.why-water__track {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	padding-top: 20px;
	margin-top: -20px;
}

.why-water__slide {
	display: contents;
}

.why-water__card-title-mobile {
	display: none;
}

.why-water__pagination {
	display: none;
}

.why-water__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 32px 20px;
	background: var(--hl-color-white);
	border: 1px solid rgba(26, 26, 26, 0.12);
	border-radius: 10px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.why-water__card:hover,
.why-water__card.hl-animate.is-visible:hover {
	border-color: var(--hl-color-accent);
	box-shadow: 0 20px 30px -10px rgba(26, 26, 26, 0.2);
	transform: translateY(-20px);
}

.why-water__card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin-bottom: 24px;
}

.why-water__card-icon img {
	width: 64px;
	height: 64px;
}

.why-water__card-title {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--hl-color-text);
}

.why-water__card-text {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text-muted);
}

@media (max-width: 1200px) {
	.why-water__track {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 1024px) {
	.why-water__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.why-water__header {
		margin-bottom: 32px;
		text-align: left;
	}

	.why-water__label {
		margin-bottom: 4px;
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
	}

	.why-water__title {
		margin-bottom: 16px;
		font-size: 24px;
		line-height: 32px;
	}

	.why-water__description {
		font-size: 16px;
		line-height: 24px;
	}

	.why-water__slider {
		overflow: hidden;
		touch-action: pan-y;
	}

	.why-water__track {
		display: flex;
		gap: 0;
		padding-top: 0;
		margin-top: 0;
		transition: transform 0.35s ease;
		will-change: transform;
	}

	.why-water__slide {
		display: flex;
		flex: 0 0 100%;
		flex-direction: column;
		gap: 12px;
	}

	.why-water__card {
		display: grid;
		grid-template-columns: 56px 1fr;
		grid-template-rows: auto auto;
		align-items: start;
		gap: 4px 16px;
		padding: 20px 16px;
		text-align: left;
	}

	.why-water__card:hover,
	.why-water__card.hl-animate.is-visible:hover {
		border-color: rgba(26, 26, 26, 0.12);
		box-shadow: none;
		transform: none;
	}

	.why-water__card-icon {
		grid-row: 1 / -1;
		grid-column: 1;
		width: 56px;
		height: 56px;
		margin-bottom: 0;
	}

	.why-water__card-icon img {
		width: 56px;
		height: 56px;
	}

	.why-water__card-title {
		grid-column: 2;
		grid-row: 1;
		margin-bottom: 0;
		font-size: 16px;
		line-height: 24px;
	}

	.why-water__card-title-desktop {
		display: none;
	}

	.why-water__card-title-mobile {
		display: block;
	}

	.why-water__card-text {
		grid-column: 2;
		grid-row: 2;
		font-size: 14px;
		line-height: 20px;
	}

	.why-water__pagination {
		display: flex;
		justify-content: center;
		gap: 12px;
		margin-top: 32px;
	}

	.why-water__dot {
		width: 12px;
		height: 12px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: #cdc5b5;
		cursor: pointer;
		transition: background 0.2s ease;
	}

	.why-water__dot.is-active {
		background: #1278f3;
	}
}

/* Our approach */
.our-approach {
	background: var(--hl-color-white);
	color: var(--hl-color-text);
}

.our-approach__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.our-approach__header {
	margin-bottom: 48px;
}

.our-approach__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.our-approach__title {
	margin: 0 0 16px;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--hl-color-text);
}

.our-approach__description {
	margin: 0;
	max-width: 720px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--hl-color-text-muted);
}

.our-approach__diagram {
	width: 100%;
}

.our-approach__diagram-grid {
	display: grid;
	grid-template-columns: minmax(0, 300px) minmax(48px, 1fr) minmax(0, 350px) minmax(48px, 1fr) minmax(0, 300px);
	align-items: stretch;
	max-width: 1290px;
	min-height: 330px;
	margin: 0 auto;
	overflow: visible;
}

.our-approach__cards {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 119px;
	min-height: 330px;
}

.our-approach__card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 106px;
	padding: 20px 30px;
	background: var(--hl-color-white);
	border: none;
	border-radius: 10px;
	box-sizing: border-box;
	overflow: visible;
	text-align: center;
}

.our-approach__card-border {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
	pointer-events: none;
}

.our-approach__card-border-path {
	fill: none;
	stroke: #cdc5b5;
	stroke-width: 1;
	vector-effect: non-scaling-stroke;
}

.our-approach__card-title {
	margin: 0 0 4px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--hl-color-text);
}

.our-approach__card-subtitle {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--hl-color-text);
}

.our-approach__connectors {
	position: relative;
	z-index: 2;
	display: block;
	width: calc(100% + 8px);
	height: 330px;
	overflow: visible;
}

.our-approach__connectors--left {
	margin-left: -8px;
}

.our-approach__connectors--right {
	margin-right: -8px;
}

.our-approach__hub {
	position: relative;
	z-index: 3;
	align-self: center;
	justify-self: center;
	width: 100%;
	max-width: 350px;
	overflow: visible;
}

.our-approach__hub::before,
.our-approach__hub::after {
	content: '';
	position: absolute;
	border-radius: 10px;
	pointer-events: none;
}

.our-approach__hub::before {
	inset: -20px;
	background: rgba(18, 120, 243, 0.1);
}

.our-approach__hub::after {
	inset: -10px;
	background: rgba(18, 120, 243, 0.2);
}

.our-approach__hub-core {
	position: relative;
	z-index: 1;
	padding: 80px 30px;
	background: #f7f4ee;
	border: 1px solid #1278f3;
	border-radius: 10px;
	text-align: center;
}

.our-approach__hub-logo {
	display: block;
	width: 199px;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.our-approach__hub-outcome {
	margin: 40px 0 0;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--hl-color-text);
}

.our-approach__hub-node {
	position: absolute;
	top: 50%;
	z-index: 4;
	width: 23px;
	height: 23px;
	border: 1px solid #1278f3;
	border-radius: 50%;
	background: var(--hl-color-white);
	box-sizing: border-box;
	transform: translateY(-50%);
}

.our-approach__hub-node--left {
	left: -11.5px;
}

.our-approach__hub-node--right {
	right: -11.5px;
}

.our-approach__hub-node--top,
.our-approach__hub-node--bottom {
	display: none;
}

.our-approach__connectors--mobile-top,
.our-approach__connectors--mobile-bottom {
	display: none;
}

@media (max-width: 1100px) {
	.our-approach__diagram-grid {
		grid-template-columns: minmax(0, 1fr) minmax(32px, 80px) minmax(0, 300px) minmax(32px, 80px) minmax(0, 1fr);
	}

	.our-approach__hub-core {
		padding: 60px 24px;
	}

	.our-approach__hub-outcome {
		margin-top: 32px;
	}
}

@media (max-width: 1024px) {
	.our-approach__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.our-approach__header {
		margin-bottom: 32px;
		text-align: left;
	}

	.our-approach__label {
		margin-bottom: 4px;
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
	}

	.our-approach__title {
		margin-bottom: 16px;
		font-size: 24px;
		line-height: 32px;
	}

	.our-approach__description {
		font-size: 16px;
		line-height: 24px;
	}

	.our-approach__diagram-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 12px;
		row-gap: 0;
		min-height: 0;
		max-width: none;
	}

	.our-approach__cards--left,
	.our-approach__cards--right {
		display: contents;
	}

	.our-approach__card[data-our-approach-card='infrastructure'] {
		grid-column: 1;
		grid-row: 1;
	}

	.our-approach__card[data-our-approach-card='water-stewardship'] {
		grid-column: 2;
		grid-row: 1;
	}

	.our-approach__connectors--mobile-top {
		display: block;
		grid-column: 1 / -1;
		grid-row: 2;
		position: relative;
		z-index: 2;
		width: 100%;
		height: 48px;
		margin-top: -8px;
	}

	.our-approach__hub {
		grid-column: 1 / -1;
		grid-row: 3;
		max-width: none;
		margin: 0;
	}

	.our-approach__connectors--mobile-bottom {
		display: block;
		grid-column: 1 / -1;
		grid-row: 4;
		position: relative;
		z-index: 2;
		width: 100%;
		height: 48px;
		margin-bottom: -8px;
	}

	.our-approach__card[data-our-approach-card='operational-intelligence'] {
		grid-column: 1;
		grid-row: 5;
	}

	.our-approach__card[data-our-approach-card='integrated-planning'] {
		grid-column: 2;
		grid-row: 5;
	}

	.our-approach__connectors--left,
	.our-approach__connectors--right {
		display: none;
	}

	.our-approach__card {
		position: relative;
		z-index: 1;
		min-height: 0;
		padding: 20px;
	}

	.our-approach__card-title {
		margin-bottom: 2px;
		font-size: 14px;
		line-height: 18px;
	}

	.our-approach__card-subtitle {
		font-size: 11px;
		line-height: 14px;
	}

	.our-approach__hub-node--left,
	.our-approach__hub-node--right {
		display: none;
	}

	.our-approach__hub-node--top,
	.our-approach__hub-node--bottom {
		display: block;
		left: 50%;
		right: auto;
		width: 15px;
		height: 15px;
		transform: translateX(-50%);
	}

	.our-approach__hub-node--top {
		top: -7.5px;
	}

	.our-approach__hub-node--bottom {
		top: auto;
		bottom: -7.5px;
		transform: translateX(-50%);
	}

	.our-approach__hub-core {
		padding: 30px 20px;
	}

	.our-approach__hub-logo {
		width: 140px;
	}

	.our-approach__hub-outcome {
		margin-top: 16px;
		font-size: 18px;
		line-height: 24px;
	}
}

.our-approach__line-draw {
	stroke-width: 1;
	vector-effect: non-scaling-stroke;
}

.our-approach__connector-node {
	stroke-width: 1;
	opacity: 0;
	transition: opacity 0.25s ease 0.1s;
}

.our-approach__diagram.is-complete .our-approach__connector-node,
.our-approach__diagram [data-our-approach-line].is-reached .our-approach__connector-node {
	opacity: 1;
}

.our-approach__diagram.is-complete .our-approach__connector-node {
	transition: none;
}

.our-approach__diagram.is-complete .our-approach__line-draw {
	stroke-dasharray: none;
	stroke-dashoffset: 0;
}

.our-approach__diagram.is-complete .our-approach__card-border-path {
	stroke-dasharray: none;
	stroke-dashoffset: 0;
}

@media (prefers-reduced-motion: no-preference) {
	.our-approach__diagram[data-our-approach-diagram] .our-approach__hub:not(.is-visible) {
		transform: scale(0.5);
		transform-origin: center center;
	}

	.our-approach__diagram.is-ready .our-approach__hub.is-visible {
		transform: scale(1);
		transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	}

	.our-approach__diagram.is-complete .our-approach__hub.is-visible {
		transform: scale(1);
	}

	.our-approach__diagram.is-ready:not(.is-complete) .our-approach__card-title,
	.our-approach__diagram.is-ready:not(.is-complete) .our-approach__card-subtitle {
		opacity: 0;
	}

	.our-approach__diagram.is-ready .our-approach__card.is-visible .our-approach__card-title,
	.our-approach__diagram.is-ready .our-approach__card.is-visible .our-approach__card-subtitle {
		opacity: 1;
		transition: opacity 0.4s ease;
	}

	.our-approach__diagram.is-ready .our-approach__line-draw {
		transition: stroke-dashoffset 0.55s ease;
	}

	.our-approach__diagram.is-ready [data-our-approach-line].is-drawn .our-approach__line-draw {
		stroke-dashoffset: 0 !important;
	}

	.our-approach__diagram.is-ready .our-approach__card-border-path {
		transition: stroke-dashoffset 0.55s ease;
	}

	.our-approach__diagram.is-ready .our-approach__card.is-border-drawn .our-approach__card-border-path {
		stroke-dashoffset: 0 !important;
	}

	.our-approach__hub.is-pulsing .our-approach__hub-core {
		animation: our-approach-hub-pulse 2.5s ease-in-out infinite;
	}
}

@keyframes our-approach-hub-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(18, 120, 243, 0.4);
	}

	70% {
		box-shadow: 0 0 0 20px rgba(18, 120, 243, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.our-approach__connector-node {
		opacity: 1;
	}

	.our-approach__card-border-path {
		stroke-dasharray: none;
		stroke-dashoffset: 0;
	}

	.our-approach__hub.is-pulsing .our-approach__hub-core {
		animation: none;
	}
}

/* Services */
.services {
	background: #f9f7f2;
	color: var(--hl-color-text);
}

.services__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.services__header {
	margin-bottom: 48px;
}

.services__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.services__title {
	margin: 0 0 16px;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--hl-color-text);
}

.services__description {
	margin: 0;
	max-width: 820px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--hl-color-text-muted);
}

.services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: stretch;
}

.services__card {
	display: flex;
	flex-direction: column;
	background: var(--hl-color-white);
	border: 1px solid rgba(26, 26, 26, 0.1);
	border-radius: 12px;
	overflow: hidden;
}

.services__card-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 24px;
}

.services__card:nth-child(1) .services__card-head {
	background: rgb(18 120 243 / 10%);
}

.services__card:nth-child(2) .services__card-head {
	background: rgb(18 120 243 / 20%);
}

.services__card:nth-child(3) .services__card-head {
	background: rgb(18 120 243 / 30%);
}

.services__card-head-content {
	flex: 1;
	min-width: 0;
}

.services__card-title {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--hl-color-text);
}

.services__card-tags {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--hl-color-text-muted);
}

.services__card-icon {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
}

.services__card-body {
	flex: 1 1 auto;
	padding: 24px 24px 16px;
}

.services__card-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.services__card-list li {
	position: relative;
	padding-left: 16px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--hl-color-text);
}

.services__card-list li + li {
	margin-top: 12px;
}

.services__card-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--hl-color-text);
	transform: translateY(-50%);
}

.services__card-footer {
	padding: 0 24px 24px;
	margin-top: auto;
}

.services__card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px 20px;
	font-family: var(--hl-font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--hl-color-white);
	background: var(--hl-color-accent);
	border-radius: 6px;
	transition: background 0.2s ease;
}

.services__card-btn:hover {
	background: var(--hl-color-accent-hover);
	color: var(--hl-color-white);
}

.services__card-btn-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.services__card-more {
	display: none;
}

.services__card-title-mobile {
	display: none;
}

@media (max-width: 1024px) {
	.services__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.services__header {
		margin-bottom: 32px;
		text-align: left;
	}

	.services__label {
		margin-bottom: 4px;
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
	}

	.services__title {
		margin-bottom: 16px;
		font-size: 24px;
		line-height: 32px;
	}

	.services__description {
		font-size: 16px;
		line-height: 24px;
	}

	.services__grid {
		grid-template-columns: 1fr;
		gap: 16px;
		max-width: none;
		margin: 0;
	}

	.services__card-head {
		padding: 20px 16px;
	}

	.services__card-title {
		margin-bottom: 8px;
		font-size: 18px;
		line-height: 24px;
	}

	.services__card-title-desktop {
		display: none;
	}

	.services__card-title-mobile {
		display: block;
	}

	.services__card-tags {
		font-size: 14px;
		line-height: 20px;
	}

	.services__card-icon {
		width: 56px;
		height: 56px;
	}

	.services__card-more {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		padding: 12px 16px;
		font-family: var(--hl-font);
		font-size: 14px;
		font-weight: 600;
		line-height: 1;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: var(--hl-color-white);
		background: var(--hl-color-accent);
		border: 0;
		cursor: pointer;
		transition: background 0.2s ease;
	}

	.services__card-more:hover {
		background: var(--hl-color-accent-hover);
	}

	.services__card-body {
		display: none;
		padding: 16px;
	}

	.services__card.is-expanded .services__card-body {
		display: block;
	}

	.services__card-list li {
		font-size: 14px;
		line-height: 20px;
	}

	.services__card-list li + li {
		margin-top: 8px;
	}

	.services__card-footer {
		padding: 16px;
	}

	.services__card-btn {
		padding: 12px 16px;
		font-size: 14px;
		border-radius: 8px;
	}
}

/* Tools */
.tools {
	background: var(--hl-color-white);
	color: var(--hl-color-text);
}

.tools__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.tools__header {
	margin-bottom: 48px;
}

.tools__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.tools__title {
	margin: 0 0 16px;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--hl-color-text);
}

.tools__description {
	margin: 0;
	max-width: 720px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--hl-color-text-muted);
}

.tools__slider {
	width: 100%;
}

.tools__track {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.tools__slide {
	display: contents;
}

.tools__pagination {
	display: none;
}

.tools__card-content {
	display: contents;
}

.tools__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 32px 24px 28px;
	background: var(--hl-color-white);
	border: 1px solid rgba(26, 26, 26, 0.12);
	border-radius: 10px;
	overflow: hidden;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.tools__card--soon {
	opacity: 0.6;
}

.tools__card:not(.tools__card--soon):hover {
	border-color: var(--hl-color-accent);
	box-shadow: 0 20px 30px -10px rgba(26, 26, 26, 0.2);
	transform: translateY(-20px);
}

.tools__card:not(.tools__card--soon) .tools__card-btn--primary {
	animation: hl-pulse 2.5s ease-in-out infinite;
}

.tools__card-badge {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--hl-color-text-muted);
	background: #f3efe8;
	border-radius: 0 0 0 4px;
}

.tools__card-icon {
	width: 64px;
	height: 64px;
	margin-bottom: 24px;
}

.tools__card-title {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--hl-color-text);
}

.tools__card-text {
	margin: 0 0 24px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--hl-color-text-muted);
}

.tools__card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: auto;
	padding: 12px 20px;
	font-family: var(--hl-font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	border-radius: 6px;
}

.tools__card-btn--primary {
	color: #1a1a1a;
	background: transparent;
	border: 1px solid var(--hl-color-accent);
	transition: background 0.2s ease, color 0.2s ease;
}

.tools__card-btn--primary:hover {
	color: var(--hl-color-white);
	background: var(--hl-color-accent);
}

.tools__card-btn--disabled {
	color: rgba(26, 26, 26, 0.45);
	background: transparent;
	border: 1px solid rgba(26, 26, 26, 0.2);
	cursor: default;
}

.tools__card-btn-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

@media (max-width: 1200px) {
	.tools__track {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 1024px) {
	.tools__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.tools__header {
		margin-bottom: 32px;
		text-align: left;
	}

	.tools__label {
		margin-bottom: 4px;
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
	}

	.tools__title {
		margin-bottom: 16px;
		font-size: 24px;
		line-height: 32px;
	}

	.tools__description {
		font-size: 16px;
		line-height: 24px;
	}

	.tools__slider {
		overflow: hidden;
		touch-action: pan-y;
	}

	.tools__track {
		display: flex;
		gap: 0;
		transition: transform 0.35s ease;
		will-change: transform;
	}

	.tools__slide {
		display: flex;
		flex: 0 0 100%;
		flex-direction: column;
		gap: 12px;
	}

	.tools__card {
		display: grid;
		grid-template-columns: 56px 1fr;
		grid-template-rows: auto auto auto;
		align-items: start;
		gap: 8px 16px;
		padding: 20px 16px;
		text-align: left;
	}

	.tools__card:not(.tools__card--soon):hover {
		border-color: rgba(26, 26, 26, 0.12);
		box-shadow: none;
		transform: none;
	}

	.tools__card:not(.tools__card--soon) .tools__card-btn--primary {
		animation: none;
	}

	.tools__card-icon {
		grid-row: 1 / -1;
		grid-column: 1;
		width: 56px;
		height: 56px;
		margin-bottom: 0;
	}

	.tools__card-content {
		display: contents;
	}

	.tools__card-title {
		grid-column: 2;
		grid-row: 1;
		margin-bottom: 0;
		font-size: 16px;
		line-height: 24px;
	}

	.tools__card-text {
		grid-column: 2;
		grid-row: 2;
		margin-bottom: 0;
		font-size: 14px;
		line-height: 20px;
	}

	.tools__card-btn {
		grid-column: 2;
		grid-row: 3;
		justify-self: start;
		margin-top: 4px;
		padding: 5px 15px;
		font-size: 12px;
		font-weight: 600;
		border-radius: 5px;
	}

	.tools__card-btn--primary {
		color: var(--hl-color-accent);
	}

	.tools__pagination {
		display: flex;
		justify-content: center;
		gap: 12px;
		margin-top: 32px;
	}

	.tools__dot {
		width: 12px;
		height: 12px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: #cdc5b5;
		cursor: pointer;
		transition: background 0.2s ease;
	}

	.tools__dot.is-active {
		background: #1278f3;
	}
}

/* Get started */
.get-started {
	position: relative;
	overflow: hidden;
	background-color: #0a1520;
	color: var(--hl-color-white);
}

.get-started__bg {
	position: absolute;
	inset: -12% 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	will-change: transform;
}

.get-started__inner {
	position: relative;
	z-index: 1;
}

.get-started__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding-top: 80px;
	padding-bottom: 80px;
}

.get-started__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.get-started__title {
	margin: 0 0 24px;
	font-size: 48px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--hl-color-white);
}

.get-started__description {
	max-width: 960px;
	margin: 0 0 40px;
	font-size: 20px;
	font-weight: 400;
	line-height: 32px;
	color: rgba(255, 255, 255, 0.9);
}

.get-started__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.get-started__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 24px;
	font-family: var(--hl-font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	border-radius: 6px;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	cursor: pointer;
}

button.get-started__btn {
	appearance: none;
}

.get-started__btn--primary {
	color: var(--hl-color-white);
	background: var(--hl-color-accent);
	border: 1px solid var(--hl-color-accent);
}

.get-started__btn--primary:hover {
	background: var(--hl-color-accent-hover);
	border-color: var(--hl-color-accent-hover);
	color: var(--hl-color-white);
}

.get-started__btn--secondary {
	color: var(--hl-color-white);
	background: transparent;
	border: 1px solid var(--hl-color-accent);
}

.get-started__btn--secondary:hover {
	background: rgba(18, 120, 243, 0.12);
	border-color: var(--hl-color-accent);
	color: var(--hl-color-white);
}

.get-started__btn-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

@media (max-width: 1024px) {
	.get-started__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.get-started__label {
		margin-bottom: 8px;
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
	}

	.get-started__title {
		margin-bottom: 16px;
		font-size: 32px;
		font-weight: 400;
		line-height: 48px;
	}

	.get-started__description {
		margin-bottom: 24px;
		max-width: none;
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
	}

	.get-started__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		max-width: none;
		gap: 12px;
	}

	.get-started__btn {
		width: 100%;
		border-radius: 5px;
	}

	.get-started__btn--primary {
		padding: 10px 15px;
		font-size: 14px;
		font-weight: 600;
		line-height: 1.4;
	}

	.get-started__btn--secondary {
		padding: 12px 16px;
		font-size: 12px;
		font-weight: 600;
		line-height: 1.4;
	}

	.get-started__btn-icon {
		width: 14px;
		height: 14px;
	}
}

/* Tool iframe pages */
.tool-iframe {
	display: flex;
	flex-direction: column;
	min-height: calc(100vh - var(--hl-header-height));
	background: var(--hl-color-white);
}

.tool-iframe__head {
	padding-top: 32px;
	padding-bottom: 24px;
}

.tool-iframe__title {
	margin: 0;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--hl-color-text);
}

.tool-iframe__frame-wrap {
	flex: 1;
	width: 100%;
	min-height: 640px;
}

.tool-iframe__frame {
	display: block;
	width: 100%;
	height: calc(100vh - var(--hl-header-height) - 120px);
	min-height: 640px;
	border: 0;
	background: var(--hl-color-white);
}

@media (max-width: 768px) {
	.tool-iframe__head {
		padding-top: 24px;
		padding-bottom: 16px;
	}

	.tool-iframe__title {
		font-size: 24px;
	}

	.tool-iframe__frame {
		height: calc(100vh - var(--hl-header-height) - 96px);
		min-height: 520px;
	}
}

/* Industries */
.industries {
	background: #f9f7f2;
	color: var(--hl-color-text);
}

.industries__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.industries__header {
	margin-bottom: 80px;
}

.industries__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.industries__title {
	margin: 0 0 16px;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--hl-color-text);
}

.industries__description {
	margin: 0;
	max-width: 900px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--hl-color-text-muted);
}

.industries__slider {
	width: 100%;
}

.industries__track {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.industries__slide {
	display: contents;
}

.industries__pagination {
	display: none;
}

.industries__card {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 24px;
	background: var(--hl-color-white);
	border: 1px solid rgba(26, 26, 26, 0.1);
	border-radius: 10px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.industries__card:hover {
	border-color: var(--hl-color-accent);
	box-shadow: 0 8px 20px -8px rgba(18, 120, 243, 0.25);
	transform: translateX(4px);
}

.industries__card-icon {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
}

.industries__card-content {
	min-width: 0;
}

.industries__card-title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--hl-color-text);
}

.industries__card-text {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--hl-color-text-muted);
}

@media (max-width: 1024px) {
	.industries__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.industries__header {
		margin-bottom: 32px;
		text-align: left;
	}

	.industries__label {
		margin-bottom: 4px;
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
	}

	.industries__title {
		margin-bottom: 16px;
		font-size: 24px;
		line-height: 32px;
	}

	.industries__description {
		font-size: 16px;
		line-height: 24px;
	}

	.industries__slider {
		overflow: hidden;
		touch-action: pan-y;
	}

	.industries__track {
		display: flex;
		gap: 0;
		transition: transform 0.35s ease;
		will-change: transform;
	}

	.industries__slide {
		display: flex;
		flex: 0 0 100%;
		flex-direction: column;
		gap: 12px;
	}

	.industries__card {
		gap: 16px;
		padding: 20px 16px;
	}

	.industries__card:hover {
		border-color: rgba(26, 26, 26, 0.1);
		box-shadow: none;
		transform: none;
	}

	.industries__card-icon {
		width: 56px;
		height: 56px;
	}

	.industries__card-title {
		margin-bottom: 4px;
		font-size: 16px;
		line-height: 24px;
	}

	.industries__card-text {
		font-size: 14px;
		line-height: 20px;
	}

	.industries__pagination {
		display: flex;
		justify-content: center;
		gap: 12px;
		margin-top: 32px;
	}

	.industries__dot {
		width: 12px;
		height: 12px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: #cdc5b5;
		cursor: pointer;
		transition: background 0.2s ease;
	}

	.industries__dot.is-active {
		background: #1278f3;
	}
}

/* Why HydraLink */
.why-hydralink {
	background: var(--hl-color-white);
	color: var(--hl-color-text);
}

.why-hydralink__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.why-hydralink__header {
	margin-bottom: 48px;
}

.why-hydralink__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.why-hydralink__title {
	margin: 0 0 16px;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--hl-color-text);
}

.why-hydralink__description {
	margin: 0;
	max-width: 900px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--hl-color-text-muted);
}

.why-hydralink__content {
	display: grid;
	grid-template-columns: minmax(0, 850fr) minmax(0, 410fr);
	gap: 30px;
	max-width: 1290px;
	align-items: stretch;
}

.why-hydralink__reasons {
	display: flex;
	flex-direction: column;
	gap: 30px;
	height: 100%;
	min-height: 0;
}

.why-hydralink__reason {
	display: flex;
	flex: 1;
	min-height: 0;
	align-items: flex-start;
	gap: 20px;
	padding: 24px;
	background: var(--hl-color-white);
	border: 1px solid rgba(26, 26, 26, 0.1);
	border-radius: 10px;
}

.why-hydralink__reason-number {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	aspect-ratio: 1 / 1;
	font-size: 32px;
	font-weight: 400;
	line-height: 1;
	color: rgba(26, 26, 26, 0.35);
	background: #f7f5f1;
	border-radius: 8px;
}

.why-hydralink__reason-content {
	min-width: 0;
}

.why-hydralink__reason-title {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--hl-color-text);
}

.why-hydralink__reason-text {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text-muted);
}

.why-hydralink__profile {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	height: 100%;
	padding: 40px 24px;
	background: var(--hl-color-accent);
	border-radius: 12px;
	color: var(--hl-color-white);
}

.why-hydralink__profile-photo {
	width: 160px;
	height: 160px;
	margin-bottom: 24px;
	border-radius: 50%;
	object-fit: cover;
}

.why-hydralink__profile-name {
	margin: 0 0 12px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--hl-color-white);
}

.why-hydralink__profile-details {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: rgba(255, 255, 255, 0.95);
}

.why-hydralink__profile-divider {
	width: 100%;
	max-width: 200px;
	margin: 24px 0;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.why-hydralink__profile-quote {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 1024px) {
	.why-hydralink__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.why-hydralink__header {
		margin-bottom: 32px;
		text-align: left;
	}

	.why-hydralink__label {
		margin-bottom: 4px;
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
	}

	.why-hydralink__title {
		margin-bottom: 16px;
		font-size: 24px;
		line-height: 32px;
	}

	.why-hydralink__description {
		font-size: 16px;
		line-height: 24px;
	}

	.why-hydralink__content {
		grid-template-columns: 1fr;
		gap: 24px;
		max-width: none;
	}

	.why-hydralink__reasons {
		gap: 12px;
		height: auto;
	}

	.why-hydralink__reason {
		flex: none;
		gap: 16px;
		padding: 20px 16px;
	}

	.why-hydralink__reason-number {
		width: 48px;
		height: 48px;
		font-size: 24px;
		border-radius: 6px;
	}

	.why-hydralink__reason-title {
		margin-bottom: 4px;
		font-size: 16px;
		line-height: 24px;
	}

	.why-hydralink__reason-text {
		font-size: 14px;
		line-height: 20px;
	}

	.why-hydralink__profile {
		width: 100%;
		max-width: none;
		height: auto;
		margin: 0;
		padding: 32px 24px;
		border-radius: 10px;
	}

	.why-hydralink__profile-photo {
		width: 120px;
		height: 120px;
		margin-bottom: 16px;
	}

	.why-hydralink__profile-name {
		margin-bottom: 8px;
		font-size: 20px;
		line-height: 28px;
	}

	.why-hydralink__profile-details {
		font-size: 14px;
		line-height: 20px;
	}

	.why-hydralink__profile-divider {
		margin: 20px 0;
	}

	.why-hydralink__profile-quote {
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
	}
}

/* Proven Results */
.proven-results {
	--proven-results-autoplay: 6s;
	background-color: #1a1a1a;
	background-image: url('assets/images/proven-results/background.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	color: var(--hl-color-white);
}

@keyframes proven-results-tab-progress {
	from {
		width: 0;
	}

	to {
		width: 100%;
	}
}

.proven-results__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.proven-results__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 40px;
}

.proven-results__header {
	min-width: 0;
}

.proven-results__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.proven-results__title {
	margin: 0;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--hl-color-white);
}

.proven-results__nav {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.proven-results__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.proven-results__nav-btn:hover {
	opacity: 0.8;
}

.proven-results__nav-icon {
	display: block;
	width: 48px;
	height: 48px;
}

.proven-results__tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
	margin-bottom: 32px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.proven-results__tab {
	display: inline-flex;
	flex-direction: column;
	align-items: stretch;
	padding: 0;
	margin: 0;
	font-family: var(--hl-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.45);
	background: none;
	border: 0;
	cursor: pointer;
	transition: color 0.2s ease;
}

.proven-results__tab-text {
	padding-bottom: 12px;
}

.proven-results__tab-progress {
	display: none;
	height: 2px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.15);
}

.proven-results__tab.is-active .proven-results__tab-progress {
	display: block;
}

.proven-results__tab-progress-fill {
	display: block;
	width: 0;
	height: 100%;
	background: var(--hl-color-accent);
}

.proven-results__tab.is-active .proven-results__tab-progress-fill {
	animation: proven-results-tab-progress var(--proven-results-autoplay) linear forwards;
}

.proven-results__tab-progress-fill.is-instant {
	width: 100%;
	animation: none;
}

.proven-results.is-autoplay-paused .proven-results__tab.is-active .proven-results__tab-progress-fill {
	animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
	.proven-results__tab.is-active .proven-results__tab-progress-fill {
		animation: none;
		width: 100%;
	}
}

.proven-results__tab.is-active {
	color: var(--hl-color-white);
}

.proven-results__tab:hover {
	color: var(--hl-color-white);
}

.proven-results__slider {
	--proven-results-gap: 24px;
	overflow: hidden;
	margin-right: calc(-1 * var(--hl-container-padding));
}

.proven-results__track {
	display: flex;
	gap: var(--proven-results-gap);
	transition: transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1);
	will-change: transform;
}

.proven-results__slide {
	flex: 0 0 calc((100% - var(--proven-results-gap)) / 1.5);
	min-width: 0;
}

.proven-results__card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
	gap: 32px;
	align-items: stretch;
	padding: 40px;
	background: var(--hl-color-white);
	border-radius: 10px;
	color: var(--hl-color-text);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.proven-results__card:hover {
	box-shadow: 0 12px 24px -8px rgba(26, 26, 26, 0.15);
	transform: translateY(-4px);
}

.proven-results__card-content {
	min-width: 0;
}

.proven-results__card-category {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.proven-results__card-title {
	margin: 0 0 24px;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--hl-color-text);
}

.proven-results__card-section + .proven-results__card-section {
	margin-top: 20px;
}

.proven-results__card-label {
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: rgba(26, 26, 26, 0.45);
}

.proven-results__card-text {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text);
}

.proven-results__card-media {
	min-width: 0;
}

.proven-results__card-media img {
	width: 100%;
	height: 100%;
	min-height: 280px;
	border-radius: 10px;
	object-fit: cover;
}

.proven-results__footer {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.proven-results__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 24px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--hl-color-white);
	background: transparent;
	border: 1px solid var(--hl-color-accent);
	border-radius: 6px;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.proven-results__cta:hover {
	background: rgba(18, 120, 243, 0.12);
	border-color: var(--hl-color-accent);
	color: var(--hl-color-white);
}

.proven-results__cta-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.proven-results__pagination {
	display: none;
}

@media (max-width: 1024px) {
	.proven-results {
		background-image: url('assets/images/proven-results/background-mobile.svg');
	}

	.proven-results__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.proven-results__top {
		flex-direction: column;
		gap: 0;
		margin-bottom: 24px;
	}

	.proven-results__header {
		text-align: left;
	}

	.proven-results__label {
		margin-bottom: 4px;
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
	}

	.proven-results__title {
		font-size: 24px;
		line-height: 32px;
	}

	.proven-results__nav {
		display: none;
	}

	.proven-results__tabs {
		flex-wrap: nowrap;
		justify-content: flex-start;
		gap: 24px;
		margin-right: calc(-1 * var(--hl-container-padding));
		margin-left: calc(-1 * var(--hl-container-padding));
		margin-bottom: 24px;
		padding-right: var(--hl-container-padding);
		padding-left: var(--hl-container-padding);
		padding-bottom: 0;
		border-bottom: 0;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.proven-results__tabs::-webkit-scrollbar {
		display: none;
	}

	.proven-results__tab {
		flex-shrink: 0;
		font-size: 12px;
		white-space: nowrap;
	}

	.proven-results__tab-text {
		padding-bottom: 8px;
	}

	.proven-results__slider {
		margin-right: 0;
		touch-action: pan-y;
	}

	.proven-results__slide {
		flex: 0 0 100%;
	}

	.proven-results__card {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 20px 16px;
	}

	.proven-results__card:hover {
		box-shadow: none;
		transform: none;
	}

	.proven-results__card-title {
		margin-bottom: 16px;
		font-size: 24px;
	}

	.proven-results__card-section + .proven-results__card-section {
		margin-top: 12px;
	}

	.proven-results__card-label {
		font-size: 12px;
	}

	.proven-results__card-text {
		font-size: 14px;
		line-height: 20px;
	}

	.proven-results__card-media img {
		min-height: 0;
		aspect-ratio: 16 / 10;
		border-radius: 8px;
	}

	.proven-results__pagination {
		display: flex;
		justify-content: center;
		gap: 12px;
		margin-top: 24px;
	}

	.proven-results__dot {
		width: 12px;
		height: 12px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: #cdc5b5;
		cursor: pointer;
		transition: background 0.2s ease;
	}

	.proven-results__dot.is-active {
		background: #1278f3;
	}

	.proven-results__footer {
		margin-top: 24px;
	}

	.proven-results__cta {
		width: 100%;
		padding: 12px 16px;
		font-size: 14px;
		border-radius: 5px;
	}
}

/* Insights & Resources */
.insights-resources {
	background: #f7f4ee;
	color: var(--hl-color-text);
}

.insights-resources__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.insights-resources__header {
	margin-bottom: 48px;
}

.insights-resources__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.insights-resources__title {
	margin: 0;
	max-width: 900px;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--hl-color-text);
}

.insights-resources__slider {
	position: relative;
}

.insights-resources__nav {
	display: none;
}

.insights-resources__track {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
	padding-top: 20px;
	margin-top: -20px;
}

.insights-resources__slide {
	min-width: 0;
	height: 100%;
}

.insights-resources__card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	background: var(--hl-color-white);
	border: 1px solid rgba(26, 26, 26, 0.1);
	border-radius: 10px;
	color: inherit;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.insights-resources__card:hover,
.insights-resources__card.hl-animate.is-visible:hover {
	border-color: var(--hl-color-accent);
	box-shadow: 0 20px 30px -10px rgba(26, 26, 26, 0.2);
	transform: translateY(-20px);
}

.insights-resources__card:hover .insights-resources__card-title {
	color: var(--hl-color-accent);
}

.insights-resources__card-media {
	overflow: hidden;
}

.insights-resources__card-media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.insights-resources__card-media-placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	background: #e8e4dc;
}

.insights-resources__card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.insights-resources__card-category {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.insights-resources__card-title {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--hl-color-text);
	transition: color 0.2s ease;
}

.insights-resources__card-meta {
	margin: auto 0 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: rgba(26, 26, 26, 0.55);
}

.insights-resources__footer {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}

.insights-resources__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 24px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--hl-color-text);
	background: var(--hl-color-white);
	border: 1px solid var(--hl-color-accent);
	border-radius: 6px;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.insights-resources__cta:hover {
	color: var(--hl-color-accent);
	background: rgba(18, 120, 243, 0.06);
	border-color: var(--hl-color-accent);
}

.insights-resources__cta-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	color: var(--hl-color-accent);
}

.insights-resources__pagination {
	display: none;
}

.insights-resources--related .insights-resources__label {
	margin-bottom: 12px;
	font-size: 14px;
	letter-spacing: 0.1em;
}

.insights-resources--related .insights-resources__title {
	font-size: 32px;
	font-weight: 400;
	line-height: 48px;
}

.insights-resources--related .insights-resources__header {
	margin-bottom: 40px;
}

.insights-resources--related .insights-resources__inner {
	padding-top: 80px;
}

@media (max-width: 1024px) {
	.insights-resources__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.insights-resources__header {
		margin-bottom: 32px;
		text-align: left;
	}

	.insights-resources__label {
		margin-bottom: 4px;
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
	}

	.insights-resources__title {
		font-size: 24px;
		line-height: 32px;
	}

	.insights-resources__slider {
		overflow: hidden;
		touch-action: pan-y;
	}

	.insights-resources__track {
		display: flex;
		gap: 0;
		padding-top: 0;
		margin-top: 0;
		transition: transform 0.35s ease;
		will-change: transform;
	}

	.insights-resources__slide {
		flex: 0 0 100%;
	}

	.insights-resources__card:hover,
	.insights-resources__card.hl-animate.is-visible:hover {
		border-color: rgba(26, 26, 26, 0.1);
		box-shadow: none;
		transform: none;
	}

	.insights-resources__card-body {
		padding: 20px 16px;
	}

	.insights-resources__card-category {
		margin-bottom: 8px;
		font-size: 12px;
	}

	.insights-resources__card-title {
		margin-bottom: 12px;
		font-size: 16px;
		line-height: 24px;
	}

	.insights-resources__card-meta {
		font-size: 12px;
		line-height: 20px;
	}

	.insights-resources__pagination {
		display: flex;
		justify-content: center;
		gap: 12px;
		margin-top: 24px;
	}

	.insights-resources__dot {
		width: 12px;
		height: 12px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: #cdc5b5;
		cursor: pointer;
		transition: background 0.2s ease;
	}

	.insights-resources__dot.is-active {
		background: #1278f3;
	}

	.insights-resources__footer {
		margin-top: 24px;
	}

	.insights-resources__cta {
		width: 100%;
		padding: 12px 16px;
		font-size: 14px;
		border-radius: 5px;
	}

	.insights-resources--related .insights-resources__header {
		margin-bottom: 32px;
	}

	.insights-resources--related .insights-resources__inner {
		padding-top: 48px;
	}
}

/* Client reviews */
.client-reviews {
	background: var(--hl-color-white);
	color: var(--hl-color-text);
}

.client-reviews__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.client-reviews__header {
	margin-bottom: 48px;
}

.client-reviews__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.client-reviews__title {
	margin: 0 0 24px;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--hl-color-text);
}

.client-reviews__description {
	margin: 0;
	max-width: 900px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--hl-color-text);
}

.client-reviews__slider {
	width: 100%;
}

.client-reviews__track {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.client-reviews__slide {
	display: contents;
}

.client-reviews__pagination {
	display: none;
}

.client-reviews__card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 32px;
	background: var(--hl-color-white);
	border: 1px solid rgba(26, 26, 26, 0.1);
	border-radius: 10px;
}

.client-reviews__badge {
	position: absolute;
	top: 24px;
	right: 24px;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-white);
	background: var(--hl-color-accent);
	border-radius: 5px;
}

.client-reviews__stars {
	display: flex;
	gap: 4px;
	margin-bottom: 20px;
	color: #f5a623;
}

.client-reviews__star {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.client-reviews__card-title {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--hl-color-text);
}

.client-reviews__card--pending .client-reviews__card-title {
	padding-right: 120px;
}

.client-reviews__card-quote {
	flex: 1;
	margin: 0 0 24px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--hl-color-text);
}

.client-reviews__card-footer {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-top: 24px;
	border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.client-reviews__card-logo {
	flex-shrink: 0;
	overflow: hidden;
	width: 64px;
	height: 64px;
	border-radius: 8px;
	background: #f3f3f3;
}

.client-reviews__card-logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.client-reviews__card-author {
	min-width: 0;
}

.client-reviews__card-person {
	margin: 0 0 4px;
	line-height: 1.3;
}

.client-reviews__card-name {
	font-size: 20px;
	font-weight: 600;
	color: var(--hl-color-text);
}

.client-reviews__card-role {
	font-size: 14px;
	font-weight: 600;
	color: var(--hl-color-text);
}

.client-reviews__card-company {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	color: #cdc5b5;
}

.client-reviews__footer {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}

.client-reviews__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 24px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--hl-color-text);
	background: var(--hl-color-white);
	border: 1px solid var(--hl-color-accent);
	border-radius: 6px;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.client-reviews__cta:hover {
	color: var(--hl-color-accent);
	background: rgba(18, 120, 243, 0.06);
	border-color: var(--hl-color-accent);
}

.client-reviews__cta-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	color: var(--hl-color-accent);
}

@media (max-width: 1024px) {
	.client-reviews__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.client-reviews__header {
		margin-bottom: 32px;
		text-align: left;
	}

	.client-reviews__label {
		margin-bottom: 4px;
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
	}

	.client-reviews__title {
		margin-bottom: 16px;
		font-size: 24px;
		line-height: 32px;
	}

	.client-reviews__description {
		font-size: 16px;
		line-height: 24px;
	}

	.client-reviews__slider {
		overflow: hidden;
		touch-action: pan-y;
	}

	.client-reviews__track {
		display: flex;
		gap: 0;
		transition: transform 0.35s ease;
		will-change: transform;
	}

	.client-reviews__slide {
		display: block;
		flex: 0 0 100%;
	}

	.client-reviews__card {
		min-height: 0;
		padding: 20px 16px;
	}

	.client-reviews__badge {
		top: 16px;
		right: 16px;
		padding: 8px 16px;
		font-size: 14px;
	}

	.client-reviews__card--pending .client-reviews__card-title {
		padding-right: 100px;
	}

	.client-reviews__stars {
		margin-bottom: 12px;
	}

	.client-reviews__card-title {
		margin-bottom: 12px;
		font-size: 16px;
		line-height: 24px;
	}

	.client-reviews__card-quote {
		margin-bottom: 16px;
		font-size: 14px;
		line-height: 20px;
	}

	.client-reviews__card-footer {
		padding-top: 16px;
		gap: 12px;
	}

	.client-reviews__card-logo {
		width: 56px;
		height: 56px;
	}

	.client-reviews__card-name {
		font-size: 18px;
	}

	.client-reviews__card-role {
		font-size: 14px;
	}

	.client-reviews__card-company {
		font-size: 14px;
	}

	.client-reviews__pagination {
		display: flex;
		justify-content: center;
		gap: 12px;
		margin-top: 24px;
	}

	.client-reviews__dot {
		width: 12px;
		height: 12px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: #cdc5b5;
		cursor: pointer;
		transition: background 0.2s ease;
	}

	.client-reviews__dot.is-active {
		background: #1278f3;
	}

	.client-reviews__footer {
		margin-top: 24px;
	}

	.client-reviews__cta {
		width: 100%;
		padding: 12px 16px;
		font-size: 14px;
		border-radius: 5px;
	}
}

/* About page */
.about-page-hero {
	background: #1a1a1a;
	color: var(--hl-color-white);
}

.about-page-hero__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.about-page-hero__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.about-page-hero__title {
	margin: 0 0 24px;
	font-size: 48px;
	font-weight: 700;
	line-height: 64px;
	white-space: nowrap;
	color: var(--hl-color-white);
}

.about-page-hero__title-accent {
	color: var(--hl-color-accent);
}

.about-page-hero__description {
	margin: 0 0 32px;
	max-width: 960px;
	font-size: 20px;
	font-weight: 400;
	line-height: 32px;
	color: rgba(255, 255, 255, 0.9);
}

.about-page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.about-page-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 20px;
	font-family: var(--hl-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	border-radius: 5px;
	white-space: nowrap;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.about-page-hero__btn--primary {
	color: var(--hl-color-white);
	background: var(--hl-color-accent);
	border: 1px solid var(--hl-color-accent);
}

.about-page-hero__btn--primary:hover {
	background: var(--hl-color-accent-hover);
	border-color: var(--hl-color-accent-hover);
	color: var(--hl-color-white);
}

.about-page-hero__btn--secondary {
	color: var(--hl-color-white);
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.55);
}

.about-page-hero__btn--secondary:hover {
	border-color: var(--hl-color-white);
	color: var(--hl-color-white);
}

.about-page-hero__btn-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.about-page-hero__btn-text--mobile {
	display: none;
}

@media (max-width: 1024px) {
	.about-page-hero__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.about-page-hero__label {
		margin-bottom: 8px;
		font-size: 14px;
		font-weight: 700;
		line-height: 20px;
		letter-spacing: 0.1em;
	}

	.about-page-hero__title {
		margin-bottom: 16px;
		font-size: 32px;
		font-weight: 700;
		line-height: 48px;
		white-space: normal;
	}

	.about-page-hero__description {
		margin-bottom: 24px;
		max-width: none;
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
	}

	.about-page-hero__actions {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		gap: 12px;
	}

	.about-page-hero__btn-text--desktop {
		display: none;
	}

	.about-page-hero__btn-text--mobile {
		display: inline;
	}

	.about-page-hero__btn {
		width: auto;
		padding: 5px 15px;
		font-size: 12px;
		font-weight: 600;
		line-height: 1.4;
		letter-spacing: 0.03em;
	}
}

/* Infrastructure Planning page */
.infrastructure-planning-hero {
	background: #1a1a1a;
	color: var(--hl-color-white);
}

.infrastructure-planning-hero__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.infrastructure-planning-hero__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.infrastructure-planning-hero__title {
	margin: 0 0 24px;
	max-width: 960px;
	font-size: 48px;
	font-weight: 700;
	line-height: 64px;
	color: var(--hl-color-white);
}

.infrastructure-planning-hero__description {
	margin: 0 0 32px;
	max-width: 960px;
	font-size: 20px;
	font-weight: 400;
	line-height: 32px;
	color: rgba(255, 255, 255, 0.9);
}

.infrastructure-planning-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.infrastructure-planning-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 20px;
	font-family: var(--hl-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	border-radius: 5px;
	white-space: nowrap;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.infrastructure-planning-hero__btn--primary {
	color: var(--hl-color-white);
	background: var(--hl-color-accent);
	border: 1px solid var(--hl-color-accent);
}

.infrastructure-planning-hero__btn--primary:hover {
	background: var(--hl-color-accent-hover);
	border-color: var(--hl-color-accent-hover);
	color: var(--hl-color-white);
}

.infrastructure-planning-hero__btn--secondary {
	color: var(--hl-color-white);
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.55);
}

.infrastructure-planning-hero__btn--secondary:hover {
	border-color: var(--hl-color-white);
	color: var(--hl-color-white);
}

.infrastructure-planning-hero__btn-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

@media (max-width: 1024px) {
	.infrastructure-planning-hero__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.infrastructure-planning-hero__label {
		margin-bottom: 8px;
		font-size: 14px;
		font-weight: 700;
		line-height: 20px;
	}

	.infrastructure-planning-hero__title {
		margin-bottom: 16px;
		font-size: 32px;
		line-height: 48px;
	}

	.infrastructure-planning-hero__description {
		margin-bottom: 24px;
		font-size: 16px;
		line-height: 24px;
	}

	.infrastructure-planning-hero__btn {
		padding: 5px 15px;
		font-size: 12px;
	}
}

.infrastructure-planning-nav {
	background: #d2cdc1;
	color: var(--hl-color-text);
}

.infrastructure-planning-nav__inner {
	padding-top: 24px;
	padding-bottom: 24px;
}

.infrastructure-planning-nav__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 16px;
}

.infrastructure-planning-nav__item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 15px;
	font-family: var(--hl-font);
	color: var(--hl-color-text);
	background: var(--hl-color-white);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.infrastructure-planning-nav__item:hover,
.infrastructure-planning-nav__item:focus-visible {
	box-shadow: 0 4px 16px rgba(26, 26, 26, 0.08);
	outline: none;
}

.infrastructure-planning-nav__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 5px 10px;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	color: var(--hl-color-white);
	background: #c5c0b6;
	border-radius: 999px;
}

.infrastructure-planning-nav__item.is-active .infrastructure-planning-nav__number {
	background: var(--hl-color-accent);
}

.infrastructure-planning-nav__label {
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	text-align: left;
}

@media (max-width: 1024px) {
	.infrastructure-planning-nav__inner {
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 20px;
		padding-right: 0;
	}

	.infrastructure-planning-nav__list {
		justify-content: flex-start;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 4px;
	}

	.infrastructure-planning-nav__list::-webkit-scrollbar {
		display: none;
	}

	.infrastructure-planning-nav__item {
		flex: 0 0 auto;
		padding: 5px 10px;
	}

	.infrastructure-planning-nav__number {
		font-size: 12px;
		font-weight: 400;
		line-height: 16px;
	}

	.infrastructure-planning-nav__label {
		font-size: 12px;
		font-weight: 400;
		line-height: 16px;
	}
}

.infrastructure-planning-service {
	background: var(--hl-color-white);
	color: var(--hl-color-text);
}

.infrastructure-planning-service[hidden] {
	display: none !important;
}

.infrastructure-planning-services {
	background: var(--hl-color-white);
}

.infrastructure-planning-service__inner {
	padding-top: 64px;
	padding-bottom: 80px;
}

.infrastructure-planning-service__intro {
	max-width: 100%;
	margin-bottom: 0;
}

.infrastructure-planning-service__meta {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.infrastructure-planning-service__title {
	margin: 0 0 12px;
	font-size: 32px;
	font-weight: 400;
	line-height: 48px;
	color: var(--hl-color-text);
}

.infrastructure-planning-service__tagline {
	margin: 0 0 80px;
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	color: var(--hl-color-text);
}

.infrastructure-planning-service__text {
	margin: 0 0 20px;
	max-width: 960px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: rgba(26, 26, 26, 0.75);
}

.infrastructure-planning-service__intro .infrastructure-planning-service__btn--primary {
	margin-bottom: 24px;
}

.infrastructure-planning-service__intro-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-bottom: 24px;
}

.infrastructure-planning-service__intro-actions .infrastructure-planning-service__btn--primary {
	margin-bottom: 0;
}

.infrastructure-planning-service__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 20px;
	font-family: var(--hl-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	border-radius: 10px;
	border: 1px solid transparent;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.infrastructure-planning-service__btn--primary {
	color: var(--hl-color-white);
	background: var(--hl-color-accent);
	border-color: var(--hl-color-accent);
}

.infrastructure-planning-service__btn--primary:hover {
	background: var(--hl-color-accent-hover);
	border-color: var(--hl-color-accent-hover);
	color: var(--hl-color-white);
}

.infrastructure-planning-service__btn--outline {
	color: var(--hl-color-accent);
	background: var(--hl-color-white);
	border-color: var(--hl-color-accent);
}

.infrastructure-planning-service__btn--outline:hover {
	background: rgba(18, 120, 243, 0.06);
	color: var(--hl-color-accent-hover);
	border-color: var(--hl-color-accent-hover);
}

.infrastructure-planning-service__btn-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.infrastructure-planning-service__challenge {
	padding: 20px 24px;
	background: rgba(18, 120, 243, 0.08);
	border-left: 4px solid var(--hl-color-accent);
	border-radius: 10px;
}

.infrastructure-planning-service__challenge-label {
	margin: 0 0 12px;
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	color: var(--hl-color-text);
}

.infrastructure-planning-service__challenge-text {
	margin: 0;
	max-width: 960px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: rgba(26, 26, 26, 0.75);
}

.infrastructure-planning-service__availability {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
	padding: 24px;
	background: #f9f7f2;
	border-radius: 10px;
}

.infrastructure-planning-service__availability-copy {
	flex: 1 1 auto;
	min-width: 0;
}

.infrastructure-planning-service__availability-meta {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(26, 26, 26, 0.55);
}

.infrastructure-planning-service__availability-title {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	color: var(--hl-color-text);
}

.infrastructure-planning-service__availability-text {
	margin: 0;
	max-width: 720px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: rgba(26, 26, 26, 0.75);
}

.infrastructure-planning-service__btn--reserve {
	flex-shrink: 0;
	color: var(--hl-color-white);
	background: #b8956a;
	border-color: #b8956a;
}

.infrastructure-planning-service__btn--reserve:hover {
	color: var(--hl-color-white);
	background: #a6845d;
	border-color: #a6845d;
}

.infrastructure-planning-service__tools-cta {
	margin-top: 56px;
	padding: 24px;
	background: rgba(18, 120, 243, 0.08);
	border-left: 4px solid var(--hl-color-accent);
	border-radius: 10px;
}

.infrastructure-planning-service__tools-cta-title {
	margin: 0 0 12px;
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	color: var(--hl-color-text);
}

.infrastructure-planning-service__tools-cta-text {
	margin: 0 0 20px;
	max-width: 960px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: rgba(26, 26, 26, 0.75);
}

.infrastructure-planning-service__tools-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.infrastructure-planning-service__divider {
	margin: 40px 0;
	border: 0;
	border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.infrastructure-planning-service__areas {
	margin-bottom: 0;
}

.infrastructure-planning-service__areas-title {
	margin: 0 0 32px;
	font-size: 24px;
	font-weight: 600;
	line-height: 48px;
	color: var(--hl-color-text);
}

.infrastructure-planning-service__projects-title {
	margin: 0 0 24px;
	font-size: 24px;
	font-weight: 600;
	line-height: 48px;
	color: var(--hl-color-text);
}

.infrastructure-planning-service__areas-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 20px;
}

.infrastructure-planning-service--areas-4 .infrastructure-planning-service__areas-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.infrastructure-planning-service--areas-5 .infrastructure-planning-service__areas-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.infrastructure-planning-service__area-card {
	padding: 40px 20px;
	text-align: center;
	background: var(--hl-color-white);
	border: 1px solid rgba(26, 26, 26, 0.12);
	border-radius: 10px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.infrastructure-planning-service__area-card:hover,
.infrastructure-planning-service__area-card.hl-animate.is-visible:hover {
	border-color: var(--hl-color-accent);
	box-shadow: 0 20px 30px -10px rgba(26, 26, 26, 0.2);
	transform: translateY(-20px);
}

.infrastructure-planning-service__area-title {
	margin: 0 0 12px;
	min-height: 48px;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	color: var(--hl-color-accent);
}

.infrastructure-planning-service__area-text {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text);
}

.infrastructure-planning-service__meta-row {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 24px;
	margin-top: 40px;
	margin-bottom: 40px;
	padding: 40px 20px;
	border-top: 1px solid rgba(26, 26, 26, 0.12);
	border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}

.infrastructure-planning-service__meta-col--timeline {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.infrastructure-planning-service__meta-expert-group {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: flex-end;
	gap: 40px;
	margin-left: auto;
}

.infrastructure-planning-service__meta-col--expert {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.infrastructure-planning-service__meta-col--cta {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

.infrastructure-planning-service__meta-row .infrastructure-planning-service__meta-label {
	margin: 0 0 16px;
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	color: var(--hl-color-text);
}

.infrastructure-planning-service__timeline-value {
	margin: 0 0 8px;
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	color: var(--hl-color-accent);
}

.infrastructure-planning-service__timeline-note {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: rgba(26, 26, 26, 0.55);
}

.infrastructure-planning-service__expert-photo {
	display: block;
	width: 100px;
	height: 100px;
	margin: 0 0 16px;
	border-radius: 50%;
	object-fit: cover;
}

.infrastructure-planning-service__expert-name {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: var(--hl-color-text);
}

.infrastructure-planning-service__expert-role {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: rgba(26, 26, 26, 0.55);
}

.infrastructure-planning-service__meta-col--cta .infrastructure-planning-service__btn--primary {
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}

.infrastructure-planning-service__expert-credentials {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: rgba(26, 26, 26, 0.55);
}

.infrastructure-planning-service__projects-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
}

.infrastructure-planning-service__project-card {
	display: flex;
	gap: 24px;
	align-items: center;
	padding: 40px;
	background: var(--hl-color-white);
	border: 1px solid rgba(26, 26, 26, 0.12);
	border-radius: 10px;
}

.infrastructure-planning-service__project-badge-wrap {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	padding: 10px 15px;
	border: 1px solid rgba(18, 120, 243, 0.25);
	border-radius: 10px;
}

.infrastructure-planning-service__project-badge {
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-accent);
	text-align: center;
	white-space: nowrap;
}

.infrastructure-planning-service__project-title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
	color: var(--hl-color-text);
}

.infrastructure-planning-service__project-text {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	color: var(--hl-color-text);
}

.infrastructure-planning-service__projects .infrastructure-planning-service__btn--outline {
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	color: #1a1a1a;
	border-color: #1a1a1a;
}

.infrastructure-planning-service__projects .infrastructure-planning-service__btn--outline:hover {
	color: #1a1a1a;
	border-color: #1a1a1a;
	background: rgba(26, 26, 26, 0.06);
}

@media (max-width: 1200px) {
	.infrastructure-planning-service--areas-5 .infrastructure-planning-service__areas-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.infrastructure-planning-service--areas-4 .infrastructure-planning-service__areas-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.infrastructure-planning-service__inner {
		padding-top: 32px;
		padding-bottom: 40px;
	}

	.infrastructure-planning-service__intro-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.infrastructure-planning-service__intro-actions .infrastructure-planning-service__btn {
		width: 100%;
		justify-content: center;
	}

	.infrastructure-planning-service__challenge {
		padding: 16px 20px;
	}

	.infrastructure-planning-service__divider {
		margin: 40px 0;
	}

	.infrastructure-planning-service--areas-4 .infrastructure-planning-service__areas-grid,
	.infrastructure-planning-service--areas-5 .infrastructure-planning-service__areas-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.infrastructure-planning-service__area-card {
		padding: 32px 20px;
	}

	.infrastructure-planning-service__area-card:hover,
	.infrastructure-planning-service__area-card.hl-animate.is-visible:hover {
		border-color: rgba(26, 26, 26, 0.12);
		box-shadow: none;
		transform: none;
	}

	.infrastructure-planning-service__area-title br,
	.infrastructure-planning-service__area-text br {
		display: none;
	}

	.infrastructure-planning-service__meta-row {
		flex-direction: column;
		align-items: center;
		gap: 0;
		margin-top: 40px;
		margin-bottom: 40px;
		padding: 40px 0;
	}

	.infrastructure-planning-service__meta-col--timeline {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		padding-bottom: 32px;
		margin-bottom: 32px;
		border-bottom: 0;
		text-align: center;
	}

	.infrastructure-planning-service__meta-expert-group {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 32px;
		width: 100%;
		margin-left: 0;
	}

	.infrastructure-planning-service__meta-col--expert,
	.infrastructure-planning-service__meta-col--cta {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		text-align: center;
	}

	.infrastructure-planning-service__meta-row .infrastructure-planning-service__meta-label,
	.infrastructure-planning-service__timeline-note,
	.infrastructure-planning-service__expert-role,
	.infrastructure-planning-service__expert-credentials {
		width: 100%;
		text-align: center;
	}

	.infrastructure-planning-service__expert-photo {
		margin: 0 auto 16px;
	}

	.infrastructure-planning-service__meta-col--cta .infrastructure-planning-service__btn--primary {
		align-self: stretch;
		width: 100%;
		max-width: 100%;
	}

	.infrastructure-planning-service__projects-list {
		gap: 16px;
		margin-bottom: 20px;
	}

	.infrastructure-planning-service__project-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding: 20px;
	}

	.infrastructure-planning-service__project-copy {
		width: 100%;
		text-align: left;
	}

	.infrastructure-planning-service__project-badge-wrap {
		align-self: flex-start;
	}

	.infrastructure-planning-service__projects .infrastructure-planning-service__btn--outline {
		width: auto;
		align-self: flex-start;
	}

	.infrastructure-planning-service__availability {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
	}

	.infrastructure-planning-service__availability .infrastructure-planning-service__btn--reserve {
		width: 100%;
		justify-content: center;
	}

	.infrastructure-planning-service__tools-cta {
		margin-top: 40px;
		padding: 20px;
	}

	.infrastructure-planning-service__tools-cta-actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.infrastructure-planning-service__tools-cta-actions .infrastructure-planning-service__btn {
		width: 100%;
		justify-content: center;
	}

	.infrastructure-planning-service--standard .infrastructure-planning-service__meta {
		font-size: 14px;
		font-weight: 600;
		line-height: 48px;
		letter-spacing: 0.1em;
	}

	.infrastructure-planning-service--standard .infrastructure-planning-service__title {
		font-size: 24px;
		font-weight: 400;
		line-height: 32px;
	}

	.infrastructure-planning-service--standard .infrastructure-planning-service__tagline {
		margin-bottom: 24px;
		font-size: 16px;
		font-weight: 700;
		line-height: 24px;
	}

	.infrastructure-planning-service--standard .infrastructure-planning-service__text {
		margin-bottom: 16px;
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}

	.infrastructure-planning-service--standard .infrastructure-planning-service__challenge-label {
		font-size: 16px;
		font-weight: 600;
		line-height: 24px;
	}

	.infrastructure-planning-service--standard .infrastructure-planning-service__challenge-text {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}

	.infrastructure-planning-service--standard .infrastructure-planning-service__areas-title,
	.infrastructure-planning-service--standard .infrastructure-planning-service__projects-title {
		margin-bottom: 16px;
		font-size: 16px;
		font-weight: 600;
		line-height: 24px;
	}

	.infrastructure-planning-service--standard .infrastructure-planning-service__area-title {
		min-height: auto;
		font-size: 16px;
		font-weight: 600;
		line-height: 24px;
	}

	.infrastructure-planning-service--standard .infrastructure-planning-service__area-text {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}

	.infrastructure-planning-service--standard .infrastructure-planning-service__meta-row .infrastructure-planning-service__meta-label {
		font-size: 16px;
		font-weight: 600;
		line-height: 24px;
	}

	.infrastructure-planning-service--standard .infrastructure-planning-service__timeline-value {
		font-size: 24px;
		font-weight: 700;
		line-height: 32px;
	}

	.infrastructure-planning-service--standard .infrastructure-planning-service__timeline-note {
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
	}

	.infrastructure-planning-service--standard .infrastructure-planning-service__expert-name {
		font-size: 16px;
		font-weight: 600;
		line-height: 24px;
	}

	.infrastructure-planning-service--standard .infrastructure-planning-service__expert-role {
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
	}

	.infrastructure-planning-service--standard .infrastructure-planning-service__expert-credentials {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}

	.infrastructure-planning-service--standard .infrastructure-planning-service__project-text {
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
	}
}

.infrastructure-planning-impact {
	background: #1a1a1a;
	color: var(--hl-color-white);
}

.infrastructure-planning-impact__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.infrastructure-planning-impact__header {
	margin-bottom: 48px;
}

.infrastructure-planning-impact__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.infrastructure-planning-impact__title {
	margin: 0;
	max-width: 720px;
	font-size: 32px;
	font-weight: 400;
	line-height: 48px;
	color: var(--hl-color-white);
}

.infrastructure-planning-impact__stats .hl-stats__value {
	color: var(--hl-color-accent);
}

@media (min-width: 1025px) {
	.infrastructure-planning-impact__stats {
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
		gap: 24px;
		width: 100%;
	}

	.infrastructure-planning-impact__stats .hl-stats__item {
		flex: 0 1 auto;
		align-items: center;
		gap: 16px;
	}

	.infrastructure-planning-impact__stats .hl-stats__value {
		font-size: 48px;
		font-weight: 700;
		line-height: 1;
	}

	.infrastructure-planning-impact__stats .hl-stats__label {
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
		color: var(--hl-color-white);
	}
}

@media (max-width: 1024px) {
	.infrastructure-planning-impact__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.infrastructure-planning-impact__header {
		margin-bottom: 32px;
	}

	.infrastructure-planning-impact__label {
		margin-bottom: 12px;
		font-size: 12px;
		line-height: 20px;
	}

	.infrastructure-planning-impact__title {
		font-size: 24px;
		line-height: 32px;
	}

	.infrastructure-planning-impact__stats {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 16px;
	}

	.infrastructure-planning-impact__stats .hl-stats__item {
		flex-direction: column;
		align-items: center;
		gap: 4px;
		text-align: center;
	}

	.infrastructure-planning-impact__stats .hl-stats__value {
		font-size: 32px;
		line-height: 48px;
	}

	.infrastructure-planning-impact__stats .hl-stats__label {
		font-size: 12px;
		line-height: 16px;
		color: var(--hl-color-white);
	}
}

.infrastructure-planning-faqs {
	background: #f9f7f2;
	color: var(--hl-color-text);
}

.infrastructure-planning-faqs__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.infrastructure-planning-faqs__title {
	margin: 0 0 48px;
	font-size: 32px;
	font-weight: 400;
	line-height: 48px;
	color: var(--hl-color-text);
}

.infrastructure-planning-faqs__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.infrastructure-planning-faqs__item {
	padding: 24px;
	background: var(--hl-color-white);
	border: 1px solid rgba(26, 26, 26, 0.12);
	border-radius: 10px;
}

.infrastructure-planning-faqs__trigger {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	width: 100%;
	padding: 0;
	font-family: inherit;
	color: inherit;
	text-align: left;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.infrastructure-planning-faqs__trigger:focus-visible {
	outline: 2px solid var(--hl-color-accent);
	outline-offset: 4px;
}

.infrastructure-planning-faqs__icon {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
}

.infrastructure-planning-faqs__icon-img {
	display: block;
	width: 32px;
	height: 32px;
}

.infrastructure-planning-faqs__icon-img--close {
	display: none;
}

.infrastructure-planning-faqs__item.is-open .infrastructure-planning-faqs__icon-img--open {
	display: none;
}

.infrastructure-planning-faqs__item.is-open .infrastructure-planning-faqs__icon-img--close {
	display: block;
}

.infrastructure-planning-faqs__question {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 20px;
	font-weight: 400;
	line-height: 32px;
	color: var(--hl-color-text);
}

.infrastructure-planning-faqs__panel {
	padding-left: 48px;
	margin-top: 12px;
}

.infrastructure-planning-faqs__answer {
	margin: 0;
	max-width: 960px;
	font-family: 'Proxima Nova', var(--hl-font), sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: rgba(26, 26, 26, 0.75);
}

@media (max-width: 1024px) {
	.infrastructure-planning-faqs__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.infrastructure-planning-faqs__title {
		margin-bottom: 24px;
		font-size: 24px;
		font-weight: 400;
		line-height: 32px;
	}

	.infrastructure-planning-faqs__list {
		gap: 12px;
	}

	.infrastructure-planning-faqs__item {
		padding: 16px;
	}

	.infrastructure-planning-faqs__trigger {
		gap: 12px;
	}

	.infrastructure-planning-faqs__icon,
	.infrastructure-planning-faqs__icon-img {
		width: 24px;
		height: 24px;
	}

	.infrastructure-planning-faqs__question {
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
	}

	.infrastructure-planning-faqs__panel {
		padding-left: 36px;
		margin-top: 8px;
	}

	.infrastructure-planning-faqs__answer {
		font-family: 'Proxima Nova', var(--hl-font), sans-serif;
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}
}

.about-page-story {
	background: #f9f7f2;
	color: var(--hl-color-text);
}

.about-page-story__inner {
	padding-top: 80px;
	padding-bottom: 0;
}

.about-page-story__layout {
	display: grid;
	grid-template-columns: minmax(260px, 400px) minmax(0, 1fr);
	gap: 48px 64px;
	align-items: end;
}

.about-page-story__media {
	align-self: end;
	line-height: 0;
}

.about-page-story__photo {
	display: block;
	width: 100%;
	height: auto;
}

.about-page-story__content {
	padding-bottom: 80px;
}

.about-page-story__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.about-page-story__title {
	margin: 0 0 24px;
	font-size: 32px;
	font-weight: 400;
	line-height: 48px;
	color: var(--hl-color-text);
}

.about-page-story__text {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.about-page-story__text p {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text-muted);
}

.about-page-story__quote {
	margin: 32px 0 0;
	padding-left: 20px;
	border-left: 3px solid var(--hl-color-accent);
}

.about-page-story__quote-text {
	margin: 0 0 8px;
	font-size: 24px;
	font-weight: 600;
	line-height: 48px;
	font-style: normal;
	color: var(--hl-color-text);
}

.about-page-story__quote-author {
	display: block;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	font-style: normal;
	color: rgba(26, 26, 26, 0.55);
}

@media (max-width: 1024px) {
	.about-page-story__inner {
		padding-top: 48px;
		padding-bottom: 0;
	}

	.about-page-story__content {
		padding-bottom: 48px;
	}

	.about-page-story__layout {
		grid-template-columns: 1fr;
		gap: 32px;
		align-items: start;
	}

	.about-page-story__content {
		order: 1;
	}

	.about-page-story__media {
		order: 2;
		max-width: 320px;
		margin: 0 auto;
	}

	.about-page-story__label {
		margin-bottom: 8px;
		font-size: 14px;
		font-weight: 600;
		line-height: 48px;
		letter-spacing: 0.1em;
	}

	.about-page-story__title {
		margin-bottom: 16px;
		font-size: 24px;
		font-weight: 400;
		line-height: 32px;
	}

	.about-page-story__text p {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}

	.about-page-story__quote {
		margin-top: 24px;
		padding-left: 16px;
	}

	.about-page-story__quote-text {
		font-size: 20px;
		font-weight: 600;
		line-height: 30px;
	}

	.about-page-story__quote-author {
		font-size: 14px;
		font-weight: 400;
		line-height: 24px;
	}
}

.projects-page-founder .about-page-story__layout {
	grid-template-columns: minmax(260px, 400px) minmax(0, 1fr);
	gap: 48px 128px;
	align-items: stretch;
}

.projects-page-founder .about-page-story__media {
	align-self: end;
}

.projects-page-founder .about-page-story__content {
	display: flex;
	align-items: center;
	padding-bottom: 0;
}

.projects-page-founder .about-page-story__quote {
	margin-top: 0;
	max-width: 560px;
}

.projects-page-founder .about-page-story__inner {
	padding-bottom: 0;
}

@media (max-width: 1024px) {
	.projects-page-founder .about-page-story__layout {
		grid-template-columns: 1fr;
		gap: 32px;
		align-items: start;
	}

	.projects-page-founder .about-page-story__content {
		display: block;
		order: 1;
		padding-bottom: 0;
	}

	.projects-page-founder .about-page-story__media {
		order: 2;
		align-self: center;
		max-width: 320px;
		margin: 0 auto;
	}

	.projects-page-founder .about-page-story__quote {
		margin-top: 0;
		max-width: none;
	}
}

.about-page-mission {
	background: #cdc5b5;
	color: var(--hl-color-text);
}

.about-page-mission__inner {
	padding-top: 30px;
	padding-bottom: 30px;
}

.about-page-mission__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.about-page-mission__card {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 50px 30px;
	background: var(--hl-color-white);
	border-radius: 10px;
}

.about-page-mission__icon {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
}

.about-page-mission__content {
	min-width: 0;
}

.about-page-mission__title {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
	color: var(--hl-color-text);
}

.about-page-mission__text {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text-muted);
}

@media (max-width: 1024px) {
	.about-page-mission__inner {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.about-page-mission__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.about-page-mission__card {
		flex-direction: column;
		align-items: center;
		padding: 30px 20px;
		gap: 16px;
		text-align: center;
	}

	.about-page-mission__icon {
		width: 56px;
		height: 56px;
	}

	.about-page-mission__title {
		margin-bottom: 8px;
		font-size: 16px;
		font-weight: 600;
		line-height: 24px;
	}

	.about-page-mission__text {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}
}

.about-page-impact {
	background: #1a1a1a;
	color: var(--hl-color-white);
}

.about-page-impact__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.about-page-impact__header {
	margin-bottom: 48px;
}

.about-page-impact__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.about-page-impact__title {
	margin: 0;
	font-size: 32px;
	font-weight: 400;
	line-height: 48px;
	letter-spacing: 0;
	color: var(--hl-color-white);
}

.about-page-impact__stats {
	justify-content: space-between;
}

@media (max-width: 1024px) {
	.about-page-impact__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.about-page-impact__header {
		margin-bottom: 32px;
	}

	.about-page-impact__label {
		margin-bottom: 12px;
		font-size: 12px;
		line-height: 20px;
	}

	.about-page-impact__stats {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 16px;
	}

	.about-page-impact__stats .hl-stats__item {
		flex-direction: column;
		align-items: center;
		gap: 4px;
		text-align: center;
	}

	.about-page-impact__stats .hl-stats__value {
		font-size: 32px;
		line-height: 48px;
	}

	.about-page-impact__stats .hl-stats__label {
		font-size: 12px;
		line-height: 16px;
	}
}

.about-page-approach {
	background: #f9f7f2;
	color: var(--hl-color-text);
}

.about-page-approach__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.about-page-approach__header {
	margin-bottom: 48px;
}

.about-page-approach__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.about-page-approach__title {
	margin: 0 0 16px;
	font-size: 32px;
	font-weight: 400;
	line-height: 48px;
	color: var(--hl-color-text);
}

.about-page-approach__description {
	margin: 0;
	max-width: 720px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text-muted);
}

.about-page-approach__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.about-page-approach__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	padding: 40px 20px;
	background: #ffffff;
	border: 1px solid #cdc5b5;
	border-radius: 10px;
	text-align: center;
}

.about-page-approach__step {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: #f7f4ee;
	border: 1px solid #cdc5b5;
	border-radius: 5px;
}

.about-page-approach__step-number {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	color: #d7d1c3;
}

.about-page-approach__card-title {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
	color: var(--hl-color-text);
}

.about-page-approach__card-text {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text-muted);
}

@media (max-width: 1024px) {
	.about-page-approach__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.about-page-approach__header {
		margin-bottom: 32px;
	}

	.about-page-approach__label {
		margin-bottom: 12px;
		font-size: 12px;
		line-height: 20px;
	}

	.about-page-approach__title {
		font-size: 24px;
		font-weight: 400;
		line-height: 32px;
	}

	.about-page-approach__description {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}

	.about-page-approach__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.about-page-approach__step {
		width: 48px;
		height: 48px;
	}

	.about-page-approach__step-number {
		font-size: 24px;
	}

	.about-page-approach__card-title {
		font-size: 20px;
		font-weight: 600;
		line-height: 24px;
	}

	.about-page-approach__card-text {
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
	}
}

.about-page-testimonial {
	background: var(--hl-color-white);
	color: var(--hl-color-text);
}

.about-page-testimonial__inner {
	display: flex;
	justify-content: center;
	padding-top: 0;
	padding-bottom: 80px;
}

.about-page-testimonial__quote {
	margin: 0;
	width: fit-content;
	max-width: 960px;
	padding-left: 24px;
	border-left: 3px solid var(--hl-color-accent);
	text-align: left;
}

.about-page-testimonial__text {
	margin: 0 0 24px;
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	font-style: normal;
	color: var(--hl-color-text);
}

.about-page-testimonial__break {
	display: inline;
}

.about-page-testimonial__author {
	display: block;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	font-style: normal;
}

.about-page-testimonial__author-accent {
	color: var(--hl-color-accent);
}

.about-page-testimonial__author-company {
	color: var(--hl-color-text);
}

@media (max-width: 1024px) {
	.about-page-testimonial__inner {
		padding-top: 0;
		padding-bottom: 48px;
	}

	.about-page-testimonial__quote {
		width: 100%;
		max-width: 100%;
		padding-left: 16px;
	}

	.about-page-testimonial__break {
		display: none;
	}

	.about-page-testimonial__text {
		margin-bottom: 16px;
		font-size: 16px;
		font-weight: 600;
		line-height: 24px;
	}

	.about-page-testimonial__author {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}
}

/* Insights page */
.insights-page-hero {
	background: #1a1a1a;
	color: var(--hl-color-white);
}

.insights-page-hero__inner {
	padding-top: 80px;
	padding-bottom: 64px;
}

.insights-page-hero__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.insights-page-hero__title {
	margin: 0 0 24px;
	max-width: 960px;
	font-size: 48px;
	font-weight: 700;
	line-height: 64px;
	color: var(--hl-color-white);
}

.insights-page-hero__break {
	display: inline;
}

.insights-page-hero__description {
	margin: 0;
	max-width: 960px;
	font-size: 20px;
	font-weight: 400;
	line-height: 32px;
	color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1024px) {
	.insights-page-hero__inner {
		padding-top: 48px;
		padding-bottom: 40px;
	}

	.insights-page-hero__label {
		margin-bottom: 12px;
		font-size: 12px;
		line-height: 20px;
	}

	.insights-page-hero__title {
		margin-bottom: 16px;
		font-size: 32px;
		line-height: 48px;
	}

	.insights-page-hero__break {
		display: none;
	}

	.insights-page-hero__description {
		font-size: 16px;
		line-height: 24px;
	}
}

.insights-page-filters {
	background: #cdc5b5;
	color: var(--hl-color-white);
}

.insights-page-filters__inner {
	padding-top: 24px;
	padding-bottom: 24px;
}

.insights-page-filters__bar {
	display: flex;
	align-items: center;
	gap: 24px;
}

.insights-page-filters__label {
	flex-shrink: 0;
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 16px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ffffff;
}

.insights-page-filters__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	min-width: 0;
}

.insights-page-filters__pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 15px;
	border: none;
	border-radius: 999px;
	background: #ffffff;
	color: var(--hl-color-text);
	font-family: var(--hl-font);
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.insights-page-filters__pill:hover,
.insights-page-filters__pill.is-active {
	background: #1278f3;
	color: var(--hl-color-white);
}

.insights-page-filters__pill:hover .insights-page-filters__count,
.insights-page-filters__pill.is-active .insights-page-filters__count {
	background: #ffffff;
	color: #1278f3;
}

.insights-page-filters__pill-text {
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	white-space: nowrap;
}

.insights-page-filters__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 28px;
	padding: 0 6px;
	border-radius: 999px;
	background: #cdc5b5;
	color: var(--hl-color-white);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	transition: background-color 0.2s ease, color 0.2s ease;
}

@media (max-width: 1024px) {
	.insights-page-filters__inner {
		padding-top: 16px;
		padding-bottom: 16px;
	}

	.insights-page-filters__bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.insights-page-filters__list {
		flex-wrap: nowrap;
		gap: 30px;
		width: 100%;
		overflow-x: auto;
		padding-bottom: 4px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.insights-page-filters__list::-webkit-scrollbar {
		display: none;
	}

	.insights-page-filters__pill {
		flex-shrink: 0;
		padding: 10px 15px;
	}

	.insights-page-filters__count {
		min-width: 24px;
		height: 24px;
		font-size: 11px;
	}
}

.insights-page-content {
	background: var(--hl-color-white);
	color: var(--hl-color-text);
}

.insights-page-content__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.insights-page-content__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
	gap: 48px 40px;
	align-items: start;
}

.insights-page-articles__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.insights-page-articles__item--featured {
	grid-column: 1 / -1;
}

.insights-page-articles__item.is-filter-hidden,
.insights-page-articles__item.is-load-hidden {
	display: none;
}

.insights-page-card {
	height: 100%;
	background: var(--hl-color-white);
	border: 1px solid rgba(26, 26, 26, 0.1);
	border-radius: 10px;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.insights-page-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
}

.insights-page-card:not(.insights-page-card--featured) .insights-page-card__link {
	gap: 16px;
	padding: 24px;
}

.insights-page-card:hover {
	border-color: var(--hl-color-accent);
	box-shadow: 0 16px 24px -12px rgba(26, 26, 26, 0.16);
}

.insights-page-card__media {
	overflow: hidden;
}

.insights-page-card__media img,
.insights-page-card__media-placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	background: #e8e4dc;
}

.insights-page-card:not(.insights-page-card--featured) .insights-page-card__media,
.insights-page-card:not(.insights-page-card--featured) .insights-page-card__media img,
.insights-page-card:not(.insights-page-card--featured) .insights-page-card__media-placeholder {
	border-radius: 6px;
}

.insights-page-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.insights-page-card:not(.insights-page-card--featured) .insights-page-card__body {
	padding: 0;
}

.insights-page-card--featured .insights-page-card__body {
	padding: 32px;
}

.insights-page-card--featured .insights-page-card__media img,
.insights-page-card--featured .insights-page-card__media-placeholder {
	aspect-ratio: 16 / 7;
}

.insights-page-card__category {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.insights-page-card__title {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
	color: var(--hl-color-text);
	transition: color 0.2s ease;
}

.insights-page-card--featured .insights-page-card__title {
	font-size: 24px;
	line-height: 32px;
}

.insights-page-card:hover .insights-page-card__title {
	color: var(--hl-color-accent);
}

.insights-page-card__excerpt {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: rgba(26, 26, 26, 0.75);
}

.insights-page-card--featured .insights-page-card__excerpt {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 24px;
	color: rgba(26, 26, 26, 0.65);
}

.insights-page-card__footer {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	margin-top: auto;
}

.insights-page-card--featured .insights-page-card__footer {
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.insights-page-card__meta {
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	color: rgba(26, 26, 26, 0.55);
}

.insights-page-card--featured .insights-page-card__meta {
	font-size: 14px;
	line-height: 20px;
}

.insights-page-card__action {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	border: 1px solid var(--hl-color-accent);
	border-radius: 5px;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	color: var(--hl-color-accent);
	background: var(--hl-color-white);
	transition: background-color 0.2s ease, color 0.2s ease;
}

.insights-page-card:hover .insights-page-card__action {
	background: rgba(18, 120, 243, 0.06);
}

.insights-page-card__action-icon {
	flex-shrink: 0;
	width: 14px;
	height: 14px;
}

.insights-page-articles__footer {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.insights-page-articles__load-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	border: 1px solid #1278f3;
	border-radius: 5px;
	background: #ffffff;
	color: var(--hl-color-text);
	font-family: var(--hl-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.insights-page-articles__load-more:hover {
	background: rgba(18, 120, 243, 0.06);
}

.insights-page-articles__load-more-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.insights-page-articles__load-more[hidden] {
	display: none;
}

.insights-page-sidebar {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.insights-page-sidebar__widget {
	padding: 32px 24px;
	border-radius: 10px;
}

.insights-page-sidebar__widget--download,
.insights-page-sidebar__widget--newsletter,
.insights-page-sidebar__widget--cta {
	background: #f9f7f2;
}

.insights-page-sidebar__widget--topics {
	background: #1a1a1a;
	color: var(--hl-color-white);
	padding: 24px;
}

.insights-page-sidebar__widget--topics .insights-page-sidebar__title {
	margin-bottom: 0;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 18px;
	font-weight: 600;
	line-height: 24px;
}

.insights-page-sidebar__widget--author {
	background: #1278f3;
	color: var(--hl-color-white);
	text-align: center;
}

.insights-page-sidebar__label {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.insights-page-sidebar__title {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
	color: var(--hl-color-text);
}

.insights-page-sidebar__title--light {
	color: var(--hl-color-white);
}

.insights-page-sidebar__text {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: rgba(26, 26, 26, 0.75);
}

.insights-page-sidebar__text--light {
	color: rgba(255, 255, 255, 0.9);
}

.insights-page-sidebar__list {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

.insights-page-sidebar__list li {
	position: relative;
	margin: 0 0 8px;
	padding-left: 16px;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: rgba(26, 26, 26, 0.75);
}

.insights-page-sidebar__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 4px;
	height: 4px;
	border-radius: 999px;
	background: var(--hl-color-text);
}

.insights-page-sidebar__form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.insights-page-sidebar__input {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid rgba(26, 26, 26, 0.12);
	border-radius: 5px;
	background: var(--hl-color-white);
	font-family: var(--hl-font);
	font-size: 14px;
	line-height: 20px;
	color: var(--hl-color-text);
}

.insights-page-sidebar__input::placeholder {
	color: rgba(26, 26, 26, 0.45);
}

.insights-page-sidebar__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 12px 20px;
	border: none;
	border-radius: 5px;
	background: #1278f3;
	color: var(--hl-color-white);
	font-family: var(--hl-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.insights-page-sidebar__btn:hover {
	background: var(--hl-color-accent-hover);
}

.insights-page-sidebar__btn-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.insights-page-sidebar__topics {
	margin: 0;
	padding: 0;
	list-style: none;
}

.insights-page-sidebar__topics li + li {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.insights-page-sidebar__topic {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 14px 0;
	border: none;
	background: transparent;
	color: var(--hl-color-white);
	font-family: var(--hl-font);
	text-align: left;
	cursor: pointer;
	transition: color 0.2s ease;
}

.insights-page-sidebar__topic:hover {
	color: rgba(255, 255, 255, 0.75);
}

.insights-page-sidebar__topic-label {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.insights-page-sidebar__topic-count {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 6px;
	border-radius: 999px;
	background: #ffffff;
	color: var(--hl-color-text);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}

.insights-page-sidebar__icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	border-radius: 999px;
	background: rgba(18, 120, 243, 0.12);
	color: var(--hl-color-accent);
}

.insights-page-sidebar__icon {
	width: 24px;
	height: 24px;
}

.insights-page-sidebar__author-photo {
	width: 120px;
	height: 120px;
	margin: 0 auto 16px;
	border-radius: 999px;
	object-fit: cover;
}

.insights-page-sidebar__widget--author .insights-page-sidebar__title {
	margin-bottom: 24px;
	font-weight: 600;
}

.insights-page-sidebar__author-name {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
	color: var(--hl-color-white);
}

.insights-page-sidebar__author-role {
	margin: 0 0 20px;
}

.insights-page-sidebar__author-role p {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.9);
}

.insights-page-sidebar__author-divider {
	width: 48px;
	height: 1px;
	margin: 0 auto 20px;
	border: 0;
	background: rgba(255, 255, 255, 0.5);
}

.insights-page-sidebar__author-bio {
	margin: 0 auto 16px;
	max-width: 280px;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.9);
}

.insights-page-sidebar__author-credentials {
	margin: 0 auto;
	padding: 0;
	max-width: 280px;
	list-style: none;
	text-align: left;
}

.insights-page-sidebar__author-credentials li {
	position: relative;
	margin: 0 0 8px;
	padding-left: 14px;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.9);
}

.insights-page-sidebar__author-credentials li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 4px;
	height: 4px;
	border-radius: 999px;
	background: var(--hl-color-white);
}

.insights-page-sidebar__author-credentials li:last-child {
	margin-bottom: 0;
}

/* Insights single post */
.insights-single-content {
	background: var(--hl-color-white);
	color: var(--hl-color-text);
}

.insights-single-content__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.insights-single-content__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
	gap: 48px 40px;
	align-items: start;
}

.insights-single-header__category {
	margin: 0 0 16px;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.insights-single-header__title {
	margin: 0 0 32px;
	font-size: 40px;
	font-weight: 700;
	line-height: 48px;
	color: var(--hl-color-text);
}

.insights-single-header__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px 24px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.insights-single-header__author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.insights-single-header__avatar {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	object-fit: cover;
}

.insights-single-header__author-name {
	margin: 0 0 2px;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: var(--hl-color-text);
}

.insights-single-header__author-role {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: rgba(26, 26, 26, 0.55);
}

.insights-single-header__read-time {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: rgba(26, 26, 26, 0.55);
}

a.insights-page-sidebar__topic {
	text-decoration: none;
}

.insights-single-body {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.insights-single-body > :first-child {
	margin-top: 40px;
}

.insights-single-body__paragraph {
	margin: 0 0 24px;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	color: rgba(26, 26, 26, 0.8);
}

.insights-single-body__heading {
	margin: 32px 0 20px;
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	color: var(--hl-color-text);
}

.insights-single-body__heading:first-child {
	margin-top: 0;
}

.insights-single-body__list {
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.insights-single-body__list li {
	position: relative;
	margin: 0 0 12px;
	padding-left: 18px;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	color: rgba(26, 26, 26, 0.8);
}

.insights-single-body__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	width: 5px;
	height: 5px;
	border-radius: 999px;
	background: var(--hl-color-text);
}

.insights-single-body__list li:last-child {
	margin-bottom: 0;
}

.insights-single-checklist {
	margin: 0 0 24px;
	padding: 24px;
	border-radius: 10px;
	background: rgba(18, 120, 243, 0.06);
}

.insights-single-checklist__label {
	margin: 0 0 16px;
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.insights-single-checklist__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.insights-single-checklist__item {
	margin: 0 0 12px;
}

.insights-single-checklist__option {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	color: rgba(26, 26, 26, 0.8);
}

.insights-single-checklist__input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.insights-single-checklist__mark {
	position: relative;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	margin-top: 5px;
	border: 1.5px solid rgba(18, 120, 243, 0.55);
	border-radius: 3px;
	background: var(--hl-color-white);
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.insights-single-checklist__mark::after {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0;
	border-radius: 2px;
	background-color: var(--hl-color-accent);
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2L6.4 11.1L12.5 4.9' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 12px 12px;
	transition: opacity 0.2s ease;
}

.insights-single-checklist__input:checked + .insights-single-checklist__mark {
	border-color: var(--hl-color-accent);
}

.insights-single-checklist__input:checked + .insights-single-checklist__mark::after {
	opacity: 1;
}

.insights-single-checklist__input:focus-visible + .insights-single-checklist__mark {
	outline: 2px solid var(--hl-color-accent);
	outline-offset: 2px;
}

.insights-single-checklist__text {
	flex: 1;
}

.insights-single-checklist__item:last-child {
	margin-bottom: 0;
}

.insights-single-cta {
	margin: 32px 0;
	padding: 28px 28px 28px 24px;
	border-left: 4px solid var(--hl-color-accent);
	border-radius: 10px;
	background: rgba(18, 120, 243, 0.06);
}

.insights-single-cta__title {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
	color: var(--hl-color-text);
}

.insights-single-cta__text {
	margin: 0 0 20px;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	color: rgba(26, 26, 26, 0.8);
}

.insights-single-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 5px;
	background: var(--hl-color-accent);
	color: var(--hl-color-white);
	font-family: var(--hl-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.insights-single-cta__btn:hover {
	background: #0f66d4;
	color: var(--hl-color-white);
}

.insights-single-cta__btn-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.insights-single-tags {
	background: var(--hl-color-white);
	border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.insights-single-tags__inner {
	padding-top: 20px;
	padding-bottom: 20px;
}

.insights-single-tags__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 32px;
}

.insights-single-tags__item {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text);
}

@media (max-width: 1024px) {
	.insights-page-content__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.insights-page-content__layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.insights-page-articles__grid {
		grid-template-columns: 1fr;
	}

	.insights-page-card--featured .insights-page-card__title {
		font-size: 20px;
		line-height: 28px;
	}

	.insights-page-card:not(.insights-page-card--featured) .insights-page-card__link {
		padding: 20px;
	}

	.insights-page-card--featured .insights-page-card__footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.insights-page-card--featured .insights-page-card__action {
		width: 100%;
		justify-content: center;
	}

	.insights-single-content__inner {
		padding-top: 48px;
		padding-bottom: 80px;
	}

	.insights-single-content__layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.insights-single-header__title {
		font-size: 28px;
		line-height: 36px;
	}

	.insights-single-header__meta {
		flex-direction: column;
		align-items: flex-start;
	}

	.insights-single-body > :first-child {
		margin-top: 32px;
	}

	.insights-single-body__heading {
		margin-top: 24px;
		font-size: 20px;
		line-height: 28px;
	}

	.insights-single-checklist,
	.insights-single-cta {
		padding: 20px;
	}

	.insights-single-tags__inner {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.insights-single-tags__list {
		gap: 8px 20px;
	}

	.insights-single-tags__item {
		font-size: 14px;
		line-height: 20px;
	}
}

/* Contact page */
.contact-page-hero {
	background: #1a1a1a;
	color: var(--hl-color-white);
}

.contact-page-hero__inner {
	padding-top: 80px;
	padding-bottom: 64px;
}

.contact-page-hero__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.contact-page-hero__title {
	margin: 0 0 24px;
	font-size: 48px;
	font-weight: 700;
	line-height: 64px;
	color: var(--hl-color-white);
}

.contact-page-hero__title-accent {
	color: var(--hl-color-accent);
}

.contact-page-hero__description {
	margin: 0;
	font-size: 20px;
	font-weight: 400;
	line-height: 32px;
	white-space: nowrap;
	color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
	.contact-page-hero__inner {
		padding-top: 48px;
		padding-bottom: 40px;
	}

	.contact-page-hero__label {
		margin-bottom: 8px;
		font-size: 14px;
		line-height: 20px;
	}

	.contact-page-hero__title {
		margin-bottom: 16px;
		font-size: 32px;
		font-weight: 700;
		line-height: 48px;
	}

	.contact-page-hero__description {
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
		white-space: normal;
	}
}

/* Projects page */
.projects-page-hero {
	background: #1a1a1a;
	color: var(--hl-color-white);
}

.projects-page-hero__inner {
	padding-top: 80px;
	padding-bottom: 48px;
}

.projects-page-hero__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.projects-page-hero__title {
	margin: 0 0 24px;
	max-width: 960px;
	font-size: 48px;
	font-weight: 700;
	line-height: 64px;
	color: var(--hl-color-white);
}

.projects-page-hero__description {
	margin: 0;
	max-width: 960px;
	font-size: 20px;
	font-weight: 400;
	line-height: 32px;
	color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1024px) {
	.projects-page-hero__inner {
		padding-top: 48px;
		padding-bottom: 32px;
	}

	.projects-page-hero__label {
		margin-bottom: 12px;
		font-size: 12px;
		line-height: 20px;
	}

	.projects-page-hero__title {
		margin-bottom: 16px;
		font-size: 32px;
		line-height: 48px;
	}

	.projects-page-hero__description {
		font-size: 16px;
		line-height: 24px;
	}

	.projects-page-stats__grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 16px;
	}

	.projects-page-stats__grid .hl-stats__item {
		flex-direction: column;
		align-items: center;
		gap: 4px;
		text-align: center;
	}

	.projects-page-stats__grid .hl-stats__value {
		font-size: 32px;
		line-height: 48px;
	}

	.projects-page-stats__grid .hl-stats__label {
		font-size: 12px;
		line-height: 16px;
		color: var(--hl-color-white);
	}
}

.projects-page-stats {
	background: #000000;
	color: var(--hl-color-white);
}

.projects-page-stats__inner {
	padding-top: 40px;
	padding-bottom: 40px;
}

@media (min-width: 1025px) {
	.projects-page-stats__grid {
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
		gap: 24px;
		width: 100%;
	}

	.projects-page-stats__grid .hl-stats__item {
		flex: 0 1 auto;
		align-items: center;
		gap: 16px;
	}

	.projects-page-stats__grid .hl-stats__value {
		font-size: 48px;
		font-weight: 700;
		line-height: 1;
		color: var(--hl-color-accent);
	}

	.projects-page-stats__grid .hl-stats__label {
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
		color: var(--hl-color-white);
	}
}

.projects-page-categories {
	background: #f9f7f2;
	color: var(--hl-color-text);
}

.projects-page-categories__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.projects-page-categories__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.projects-page-categories__title {
	margin: 0 0 48px;
	max-width: 720px;
	font-size: 32px;
	font-weight: 400;
	line-height: 48px;
	color: var(--hl-color-text);
}

.projects-page-categories__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.projects-page-categories__card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 10px;
	perspective: 1200px;
	cursor: pointer;
}

.projects-page-categories__card-inner {
	flex: 1 1 auto;
	display: grid;
	width: 100%;
	min-height: 280px;
	transform-style: preserve-3d;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.projects-page-categories__card:hover .projects-page-categories__card-inner,
.projects-page-categories__card:focus-within .projects-page-categories__card-inner,
.projects-page-categories__card.is-flipped .projects-page-categories__card-inner {
	transform: rotateY(180deg);
}

.projects-page-categories__card-face {
	grid-area: 1 / 1;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
	padding: 40px 32px 48px;
	border-radius: 10px;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.projects-page-categories__card-face--front {
	align-items: stretch;
	justify-content: flex-start;
	background: var(--hl-color-white);
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.projects-page-categories__card-face--back {
	align-items: center;
	justify-content: center;
	gap: 16px;
	text-align: center;
	background: rgba(205, 197, 181, 1);
	transform: rotateY(180deg);
}

.projects-page-categories__example-label {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: var(--hl-color-accent);
}

.projects-page-categories__example-title {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
	color: var(--hl-color-text);
}

.projects-page-categories__icon {
	align-self: center;
	width: 80px;
	height: 80px;
	margin-bottom: 24px;
}

.projects-page-categories__card-title {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
	text-align: center;
	color: var(--hl-color-text);
}

.projects-page-categories__card-text {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
	color: var(--hl-color-text-muted);
}

@media (max-width: 1024px) {
	.projects-page-categories__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.projects-page-categories__label {
		margin-bottom: 12px;
		font-size: 12px;
		line-height: 20px;
	}

	.projects-page-categories__title {
		margin-bottom: 32px;
		font-size: 24px;
		line-height: 32px;
	}

	.projects-page-categories__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.projects-page-categories__card-inner {
		min-height: 240px;
	}

	.projects-page-categories__card-face {
		padding: 32px 24px 40px;
	}

	.projects-page-categories__example-label {
		font-size: 14px;
		line-height: 20px;
	}

	.projects-page-categories__example-title {
		font-size: 16px;
		line-height: 24px;
	}

	.projects-page-categories__icon {
		width: 64px;
		height: 64px;
		margin-bottom: 16px;
	}

	.projects-page-categories__card-title {
		margin-bottom: 8px;
		font-size: 16px;
		line-height: 24px;
	}

	.projects-page-categories__card-text {
		font-size: 14px;
		line-height: 20px;
	}
}

.projects-page-portfolio-cta {
	position: relative;
	overflow: hidden;
	background-color: #0a1520;
	color: var(--hl-color-white);
}

.projects-page-portfolio-cta__bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.projects-page-portfolio-cta__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(10, 21, 32, 0.35);
}

.projects-page-portfolio-cta__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
}

.projects-page-portfolio-cta__title {
	margin: 0 0 32px;
	max-width: 1280px;
	font-size: 48px;
	font-weight: 400;
	line-height: 64px;
	color: var(--hl-color-white);
}

.projects-page-portfolio-cta__break {
	display: inline;
}

.projects-page-portfolio-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 20px;
	font-family: var(--hl-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--hl-color-white);
	background: var(--hl-color-accent);
	border: 1px solid var(--hl-color-accent);
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.projects-page-portfolio-cta__btn:hover {
	background: var(--hl-color-accent-hover);
	border-color: var(--hl-color-accent-hover);
	color: var(--hl-color-white);
}

.projects-page-portfolio-cta__btn-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.projects-page-portfolio-cta__note {
	margin: 32px 0 0;
	max-width: 720px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1024px) {
	.projects-page-portfolio-cta__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.projects-page-portfolio-cta__title {
		margin-bottom: 24px;
		font-size: 32px;
		line-height: 48px;
	}

	.projects-page-portfolio-cta__break {
		display: none;
	}

	.projects-page-portfolio-cta__note {
		margin-top: 24px;
		font-size: 14px;
		line-height: 20px;
	}
}

body.is-portfolio-modal-open {
	overflow: hidden;
}

.portfolio-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.portfolio-modal[hidden] {
	display: none;
}

.portfolio-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 26, 0.55);
}

.portfolio-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 720px;
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	padding: 80px;
	background: #f9f7f2;
	border-radius: 30px;
}

.portfolio-modal__close {
	position: absolute;
	top: 24px;
	right: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.portfolio-modal__close-icon {
	display: block;
	width: 24px;
	height: 24px;
}

.portfolio-modal__content {
	text-align: center;
}

.portfolio-modal__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.portfolio-modal__title {
	margin: 0 0 16px;
	font-size: 32px;
	font-weight: 400;
	line-height: 48px;
	color: var(--hl-color-text);
}

.portfolio-modal__description {
	margin: 0 auto 32px;
	max-width: 560px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: rgba(26, 26, 26, 0.55);
}

.portfolio-modal__form {
	max-width: none;
	margin: 0;
}

.portfolio-modal__fields {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 24px;
}

.portfolio-modal__field-label {
	background: #f9f7f2;
}

.portfolio-modal__submit {
	padding: 16px 24px;
	border-radius: 6px;
}

.portfolio-modal__privacy {
	margin: 24px 0 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: rgba(26, 26, 26, 0.55);
}

@media (max-width: 1024px) {
	.portfolio-modal {
		padding: 16px;
	}

	.portfolio-modal__dialog {
		max-height: calc(100vh - 32px);
		padding: 48px 24px 32px;
		border-radius: 24px;
	}

	.portfolio-modal__close {
		top: 16px;
		right: 16px;
	}

	.portfolio-modal__label {
		margin-bottom: 12px;
		font-size: 14px;
		line-height: 20px;
	}

	.portfolio-modal__title {
		margin-bottom: 12px;
		font-size: 24px;
		line-height: 32px;
	}

	.portfolio-modal__description {
		margin-bottom: 24px;
		font-size: 14px;
		line-height: 20px;
	}

	.portfolio-modal__fields {
		gap: 20px;
		margin-bottom: 20px;
	}

	.portfolio-modal__submit {
		padding: 14px 20px;
		font-size: 14px;
	}
}

/* Project Experience page */
.project-experience-hero {
	--project-experience-filter-overlap: 44px;
	padding-bottom: var(--project-experience-filter-overlap);
	background: #f9f7f2;
}

.project-experience-hero__dark {
	padding-top: 80px;
	padding-bottom: var(--project-experience-filter-overlap);
	background: #1a1a1a;
	color: var(--hl-color-white);
}

.project-experience-hero__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.project-experience-hero__title {
	margin: 0 0 16px;
	font-size: 48px;
	font-weight: 700;
	line-height: 64px;
	color: var(--hl-color-white);
}

.project-experience-hero__subtitle {
	margin: 0 0 48px;
	font-size: 20px;
	font-weight: 400;
	line-height: 32px;
	color: var(--hl-color-white);
}

.project-experience-hero__filters-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 30px;
}

.project-experience-hero__filters-bar-wrap {
	position: relative;
	z-index: 2;
	margin-top: calc(var(--project-experience-filter-overlap) * -1);
}

.project-experience-hero__filters-label,
.project-experience-hero__filters-count {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-white);
}

.project-experience-hero__filters-bar {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px;
	background: var(--hl-color-white);
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.08);
}

.project-experience-hero__filters-fields {
	display: grid;
	flex: 1;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.project-experience-hero__field {
	padding-top: 10px;
}

.project-experience-hero__field-label {
	background: var(--hl-color-white);
}

.project-experience-hero__control {
	padding-top: 14px;
	padding-bottom: 14px;
}

.project-experience-hero__reset {
	flex-shrink: 0;
	padding: 14px 20px;
	font-family: var(--hl-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	color: rgba(26, 26, 26, 0.45);
	background: transparent;
	border: 1px solid rgba(26, 26, 26, 0.2);
	border-radius: 6px;
	cursor: pointer;
	white-space: nowrap;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.project-experience-hero__reset:hover {
	border-color: rgba(26, 26, 26, 0.35);
	color: rgba(26, 26, 26, 0.65);
}

@media (max-width: 1024px) {
	.project-experience-hero {
		--project-experience-filter-overlap: 36px;
	}

	.project-experience-hero__dark {
		padding-top: 48px;
	}

	.project-experience-hero__label {
		margin-bottom: 12px;
		font-size: 12px;
		line-height: 20px;
	}

	.project-experience-hero__title {
		margin-bottom: 12px;
		font-size: 32px;
		line-height: 48px;
	}

	.project-experience-hero__subtitle {
		margin-bottom: 32px;
		font-size: 16px;
		line-height: 24px;
	}

	.project-experience-hero__filters-label,
	.project-experience-hero__filters-count {
		font-size: 12px;
	}

	.project-experience-hero__filters-bar {
		flex-direction: column;
		align-items: stretch;
		padding: 20px;
	}

	.project-experience-hero__filters-fields {
		grid-template-columns: 1fr;
	}

	.project-experience-hero__reset {
		width: 100%;
	}
}

.project-experience-province {
	background: #f9f7f2;
}

.project-experience-province--first {
	padding-top: 48px;
}

.project-experience-province:not([hidden]):not(:has(~ .project-experience-province:not([hidden]))) {
	padding-bottom: 80px;
}

.project-experience-province:not(.project-experience-province--first) {
	padding-top: 64px;
}

.project-experience-province__header {
	margin-bottom: 32px;
}

.project-experience-province__label {
	margin: 0 0 12px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.project-experience-province__title {
	margin: 0;
	font-size: 48px;
	font-weight: 400;
	line-height: 64px;
	color: var(--hl-color-text);
}

.project-experience-province__cards {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.project-experience-card {
	padding: 40px;
	background: var(--hl-color-white);
	border: 1px solid rgba(26, 26, 26, 0.12);
	border-radius: 20px;
}

.project-experience-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.project-experience-card__tag {
	display: inline-flex;
	align-items: center;
	padding: 10px 15px;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: var(--hl-color-text);
	background: #f7f4ee;
	border-radius: 20px;
}

.project-experience-card__title {
	margin: 0 0 24px;
	font-size: 32px;
	font-weight: 600;
	line-height: 30px;
	color: #1a1a1a;
}

.project-experience-card__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px 32px;
}

.project-experience-card__label {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: var(--hl-color-text);
}

.project-experience-card__text {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #1a1a1a;
}

.project-experience-card.is-filter-hidden {
	display: none;
}

.project-experience-province[hidden] {
	display: none;
}

@media (max-width: 1024px) {
	.project-experience-province--first {
		padding-top: 32px;
	}

	.project-experience-province:not([hidden]):not(:has(~ .project-experience-province:not([hidden]))) {
		padding-bottom: 48px;
	}

	.project-experience-province:not(.project-experience-province--first) {
		padding-top: 48px;
	}

	.project-experience-province__header {
		margin-bottom: 24px;
	}

	.project-experience-province__label {
		margin-bottom: 8px;
		font-size: 12px;
		line-height: 20px;
	}

	.project-experience-province__title {
		font-size: 32px;
		line-height: 48px;
	}

	.project-experience-province__cards {
		gap: 16px;
	}

	.project-experience-card {
		padding: 24px;
	}

	.project-experience-card__tags {
		margin-bottom: 16px;
	}

	.project-experience-card__tag {
		font-size: 12px;
		line-height: 18px;
	}

	.project-experience-card__title {
		margin-bottom: 20px;
		font-size: 24px;
		line-height: 28px;
	}

	.project-experience-card__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.project-experience-card__label {
		font-size: 14px;
		line-height: 20px;
	}
}

.contact-page-body {
	background: var(--hl-color-white);
	color: var(--hl-color-text);
}

.contact-page-body__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.contact-page-body__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 48px 64px;
	align-items: start;
}

.contact-page-body__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.contact-page-body__title {
	margin: 0 0 16px;
	font-size: 32px;
	font-weight: 400;
	line-height: 48px;
	color: var(--hl-color-text);
}

.contact-page-body__intro {
	margin: 0;
	max-width: 480px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text-muted);
}

.contact-page-body__group {
	margin-top: 32px;
}

.contact-page-body__group-title {
	margin: 0 0 12px;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.contact-page-body__location {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text);
}

.contact-page-body__flag {
	flex-shrink: 0;
	width: 20px;
	height: 14px;
}

.contact-page-body__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.contact-page-body__links li + li {
	margin-top: 12px;
}

.contact-page-body__link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text);
	transition: color 0.2s ease;
}

.contact-page-body__link:hover {
	color: var(--hl-color-accent);
}

.contact-page-body__link-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
}

.contact-page-body__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 4px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--hl-color-white);
	background: var(--hl-color-accent);
	border-radius: 5px;
	transition: background 0.2s ease;
}

.contact-page-body__cta:hover {
	background: var(--hl-color-accent-hover);
	color: var(--hl-color-white);
}

.contact-page-body__cta-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.contact-page-body__form-card {
	padding: 40px;
	background: #f9f7f2;
	border-radius: 10px;
}

.contact-page-body__form-card .contact__flow {
	max-width: none;
	margin: 0;
}

.contact-page-body__form-card .contact__header[data-hl-contact-header="form"] {
	display: none;
}

.contact-page-body__form-card .contact__header[data-hl-contact-header="calendar"]:not([hidden]) {
	display: block;
	margin-bottom: 32px;
}

.contact-page-body__form-card .contact__calendar {
	max-width: none;
}

.contact-page-body__form-card .contact__calendar-frame {
	min-height: 640px;
}

.contact-page-body__form-card .contact-flow-thanks {
	max-width: none;
}

.contact-page-body__form-card .contact-flow-thanks__cards {
	grid-template-columns: 1fr;
}

.contact-page-body__form-header {
	display: none;
}

.contact-page-body__form {
	max-width: none;
	margin: 0;
}

.contact-page-body__form-card .contact__field-label {
	background: #f9f7f2;
}

.contact-page-body__form-card .contact__submit {
	padding: 10px 24px;
	border-radius: 5px;
}

@media (max-width: 1024px) {
	.contact-page-body__inner {
		padding-top: 48px;
		padding-bottom: 0;
	}

	.contact-page-body__layout {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.contact-page-body__info {
		padding-bottom: 48px;
	}

	.contact-page-body__label {
		margin-bottom: 8px;
		font-size: 14px;
		line-height: 20px;
	}

	.contact-page-body__title {
		margin-bottom: 12px;
		font-size: 24px;
		font-weight: 400;
		line-height: 32px;
	}

	.contact-page-body__intro {
		max-width: none;
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}

	.contact-page-body__group {
		margin-top: 24px;
	}

	.contact-page-body__group-title {
		margin-bottom: 8px;
		font-size: 14px;
		font-weight: 700;
		line-height: 20px;
		letter-spacing: 0.1em;
	}

	.contact-page-body__location,
	.contact-page-body__link {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}

	.contact-page-body__cta {
		width: auto;
		padding: 10px 15px;
		font-size: 14px;
		font-weight: 600;
		line-height: 1.4;
		letter-spacing: 0.03em;
		border-radius: 5px;
	}

	.contact-page-body__form-card {
		width: calc(100% + (2 * var(--hl-container-padding)));
		margin-top: 0;
		margin-left: calc(-1 * var(--hl-container-padding));
		margin-right: calc(-1 * var(--hl-container-padding));
		padding: 48px var(--hl-container-padding);
		background: #f7f4ee;
		border-radius: 0;
	}

	.contact-page-body__form-card .contact__header[data-hl-contact-header="form"]:not([hidden]) {
		display: block;
		margin-bottom: 32px;
		text-align: center;
	}

	.contact-page-body__form-card .contact__header[data-hl-contact-header="calendar"]:not([hidden]) {
		text-align: center;
	}

	.contact-page-body__form-card .contact__calendar-frame {
		min-height: 560px;
	}

	.contact-page-body__form-card .contact-flow-thanks__cards {
		grid-template-columns: 1fr;
	}

	.contact-page-body__form-label {
		margin: 0 0 8px;
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: var(--hl-color-accent);
	}

	.contact-page-body__form-title {
		margin: 0 0 8px;
		font-size: 24px;
		font-weight: 400;
		line-height: 32px;
		color: var(--hl-color-text);
	}

	.contact-page-body__form-subtitle {
		margin: 0;
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
		color: var(--hl-color-text-muted);
	}

	.contact-page-body__form-card .contact__field-label {
		background: #f7f4ee;
	}

	.contact-page-body__form-card .contact__grid {
		gap: 16px;
		margin-bottom: 16px;
	}

	.contact-page-body__form-card .contact__control {
		padding: 16px;
		font-size: 14px;
		border-radius: 5px;
		background: #f7f4ee;
	}

	.contact-page-body__form-card .contact__field-label {
		font-size: 12px;
	}

	.contact-page-body__form-card .contact__control--textarea {
		min-height: 120px;
	}

	.contact-page-body__form-card .contact__submit {
		padding: 12px 16px;
		font-size: 14px;
		font-weight: 600;
		border-radius: 5px;
	}
}

.contact-page-highlights {
	background: #f7f4ee;
	color: var(--hl-color-text);
}

.contact-page-highlights__inner {
	padding-top: 48px;
	padding-bottom: 48px;
}

.contact-page-highlights__list {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.contact-page-highlights__item {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 0 1 auto;
	min-width: 0;
	max-width: calc((100% - 48px) / 3);
}

.contact-page-highlights__icon {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
}

.contact-page-highlights__text {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text);
}

.contact-page-highlights__line {
	display: block;
}

@media (max-width: 1024px) {
	.contact-page-highlights__inner {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.contact-page-highlights__list {
		flex-direction: column;
		justify-content: flex-start;
		gap: 24px;
	}

	.contact-page-highlights__item {
		max-width: none;
	}

	.contact-page-highlights__line {
		display: inline;
	}

	.contact-page-highlights__line + .contact-page-highlights__line::before {
		content: ' ';
	}

	.contact-page-highlights__text {
		font-size: 14px;
		line-height: 20px;
	}

	.contact-page-highlights__icon {
		width: 56px;
		height: 56px;
	}
}

.contact-page-cta {
	position: relative;
	overflow: hidden;
	background-color: #0a1520;
	color: var(--hl-color-white);
}

.contact-page-cta__bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.contact-page-cta__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding-top: 80px;
	padding-bottom: 80px;
}

.contact-page-cta__content {
	min-width: 0;
}

.contact-page-cta__title {
	margin: 0 0 16px;
	font-size: 48px;
	font-weight: 400;
	line-height: 64px;
	color: var(--hl-color-white);
}

.contact-page-cta__description {
	margin: 0;
	max-width: 560px;
	font-size: 20px;
	font-weight: 400;
	line-height: 32px;
	color: rgba(255, 255, 255, 0.9);
}

.contact-page-cta__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.contact-page-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 20px;
	font-family: var(--hl-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	border-radius: 5px;
	white-space: nowrap;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contact-page-cta__btn--primary {
	color: var(--hl-color-white);
	background: var(--hl-color-accent);
	border: 1px solid var(--hl-color-accent);
}

.contact-page-cta__btn--primary:hover {
	background: var(--hl-color-accent-hover);
	border-color: var(--hl-color-accent-hover);
	color: var(--hl-color-white);
}

.contact-page-cta__btn--secondary {
	color: var(--hl-color-white);
	background: transparent;
	border: 1px solid var(--hl-color-accent);
}

.contact-page-cta__btn--secondary:hover {
	background: rgba(18, 120, 243, 0.12);
	border-color: var(--hl-color-accent);
	color: var(--hl-color-white);
}

.contact-page-cta__btn-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

@media (max-width: 1024px) {
	.contact-page-cta__inner {
		flex-direction: column;
		align-items: center;
		padding-top: 48px;
		padding-bottom: 48px;
		text-align: center;
	}

	.contact-page-cta__content {
		width: 100%;
	}

	.contact-page-cta__title {
		margin-bottom: 12px;
		font-size: 32px;
		font-weight: 400;
		line-height: 48px;
	}

	.contact-page-cta__description {
		max-width: none;
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
	}

	.contact-page-cta__actions {
		width: auto;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 12px;
	}

	.contact-page-cta__btn {
		width: auto;
		padding: 10px 15px;
		font-size: 14px;
		font-weight: 600;
		line-height: 1.4;
		letter-spacing: 0.03em;
		border-radius: 5px;
	}
}

/* Contact */
.contact {
	background: #f9f7f2;
	color: var(--hl-color-text);
}

.contact__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.contact__header {
	max-width: 800px;
	margin: 0 auto 48px;
	text-align: center;
}

.contact__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.trusted-by__label,
.why-water__label,
.our-approach__label,
.services__label,
.tools__label,
.get-started__label,
.industries__label,
.why-hydralink__label,
.about-page-impact__label,
.about-page-approach__label,
.insights-page-hero__label,
.projects-page-hero__label,
.legal-page-hero__label,
.projects-page-categories__label,
.project-experience-hero__label,
.project-experience-province__label,
.insights-page-filters__label,
.proven-results__label,
.insights-resources__label,
.client-reviews__label,
.contact__label {
	letter-spacing: 0.1em;
}

.contact__title {
	margin: 0 0 12px;
	font-size: 48px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--hl-color-text);
}

.contact__subtitle {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--hl-color-text-muted);
}

.contact__form {
	max-width: 800px;
	margin: 0 auto;
}

.contact__flow {
	max-width: 960px;
	margin: 0 auto;
}

.contact__step[hidden] {
	display: none;
}

.contact__header[hidden] {
	display: none;
}

.contact__calendar {
	max-width: 800px;
	margin: 0 auto;
}

.contact__calendar-frame {
	display: block;
	width: 100%;
	min-height: 720px;
	border: 1px solid rgba(26, 26, 26, 0.12);
	border-radius: 12px;
	background: var(--hl-color-white);
}

.contact__calendar-fallback {
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: var(--hl-color-text-muted);
}

.contact__calendar-fallback a {
	color: var(--hl-color-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.contact__calendar-continue {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin-top: 16px;
	padding: 14px 20px;
	font-family: var(--hl-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	color: var(--hl-color-white);
	background: var(--hl-color-accent);
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.contact__calendar-continue:hover,
.contact__calendar-continue:focus-visible {
	background: var(--hl-color-accent-hover);
}

.contact-flow-thanks {
	max-width: 960px;
	margin: 0 auto;
	text-align: center;
}

.contact-flow-thanks__status {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.contact-flow-thanks__title {
	margin: 0 0 12px;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.25;
	color: var(--hl-color-text);
}

.contact-flow-thanks__text {
	margin: 0 auto 24px;
	max-width: 720px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: rgba(26, 26, 26, 0.65);
}

.contact-flow-thanks__note {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0 0 28px;
	padding: 15px;
	text-align: left;
	background: var(--hl-color-white);
	border: 1px solid rgba(26, 26, 26, 0.12);
	border-radius: 10px;
}

.contact-flow-thanks__note-text {
	flex: 1;
	min-width: 0;
	margin: 0;
	font-size: 12px;
	font-weight: 400;
	line-height: 20px;
	color: rgba(26, 26, 26, 0.75);
}

.contact-flow-thanks__note-author {
	flex: 0 0 132px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.contact-flow-thanks__note-photo {
	display: block;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
}

.contact-flow-thanks__note-name {
	margin: 0;
	font-size: 12px;
	font-weight: 600;
	line-height: 24px;
	color: var(--hl-color-text);
	text-align: center;
}

.contact-flow-thanks__note-role {
	margin: 0;
	font-size: 9px;
	font-weight: 400;
	line-height: 16px;
	color: rgba(26, 26, 26, 0.55);
	text-align: center;
}

.contact-flow-thanks__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	text-align: center;
}

.contact-flow-thanks__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 28px 24px 24px;
	background: var(--hl-color-white);
	border: 1px solid rgba(26, 26, 26, 0.12);
	border-radius: 12px;
}

.contact-flow-thanks__card-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 500;
	line-height: 16px;
	color: var(--hl-color-text);
	background: #e8e2d6;
	border-radius: 999px;
}

.contact-flow-thanks__card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 8px 0 20px;
}

.contact-flow-thanks__card-icon-image {
	display: block;
	width: 120px;
	height: 120px;
	object-fit: contain;
}

.contact-flow-thanks__card-title {
	margin: 0 0 12px;
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
	color: var(--hl-color-text);
}

.contact-flow-thanks__card-text {
	flex: 1;
	margin: 0 0 20px;
	font-size: 12px;
	font-weight: 400;
	line-height: 20px;
	color: rgba(26, 26, 26, 0.65);
}

.contact-flow-thanks__card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	color: var(--hl-color-accent);
	text-decoration: none;
	background: var(--hl-color-white);
	border: 1px solid var(--hl-color-accent);
	border-radius: 5px;
	transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.contact-flow-thanks__card-btn:hover,
.contact-flow-thanks__card-btn:focus-visible {
	color: var(--hl-color-accent-hover);
	border-color: var(--hl-color-accent-hover);
	background: rgba(18, 120, 243, 0.04);
}

.contact__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 24px;
}

.contact__field {
	position: relative;
	padding-top: 10px;
}

.contact__field--full {
	grid-column: 1 / -1;
}

.contact__field-label {
	position: absolute;
	top: 0;
	left: 16px;
	z-index: 1;
	padding: 0 6px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: rgba(26, 26, 26, 0.55);
	background: #f9f7f2;
}

.contact__required {
	color: rgba(26, 26, 26, 0.55);
}

.contact__control {
	width: 100%;
	padding: 18px 16px;
	font-family: var(--hl-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--hl-color-text);
	background: transparent;
	border: 1px solid rgba(26, 26, 26, 0.2);
	border-radius: 6px;
	outline: none;
	transition: border-color 0.2s ease;
}

.contact__control::placeholder {
	color: rgba(26, 26, 26, 0.35);
}

.contact__control:focus {
	border-color: var(--hl-color-accent);
	box-shadow: 0 0 0 3px rgba(18, 120, 243, 0.15);
}

.contact__control--textarea {
	min-height: 140px;
	resize: vertical;
}

.contact__select-wrap {
	position: relative;
}

.contact__control--select {
	appearance: none;
	padding-right: 40px;
	cursor: pointer;
}

.contact__control--select:invalid {
	color: rgba(26, 26, 26, 0.35);
}

.contact__select-wrap::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 18px;
	width: 7px;
	height: 7px;
	border-top: 1.5px solid rgba(26, 26, 26, 0.45);
	border-right: 1.5px solid rgba(26, 26, 26, 0.45);
	transform: translateY(-50%) rotate(45deg);
	pointer-events: none;
}

.contact__submit {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 16px 24px;
	font-family: var(--hl-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--hl-color-white);
	background: var(--hl-color-accent);
	border: 1px solid var(--hl-color-accent);
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.contact__submit:hover {
	background: var(--hl-color-accent-hover);
	border-color: var(--hl-color-accent-hover);
}

.contact__submit.is-loading {
	pointer-events: none;
}

.contact__submit.is-loading .contact__submit-text,
.contact__submit.is-loading .contact__submit-icon {
	opacity: 0;
}

.contact__submit-spinner {
	display: none;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: var(--hl-color-white);
	border-radius: 50%;
	animation: hl-spin 0.8s linear infinite;
}

.contact__submit.is-loading .contact__submit-spinner {
	display: inline-block;
}

.contact__submit-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

@media (max-width: 1024px) {
	.contact__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.contact__header {
		margin-bottom: 32px;
	}

	.contact__label {
		margin-bottom: 8px;
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
	}

	.contact__title {
		margin-bottom: 8px;
		font-size: 32px;
		line-height: 40px;
	}

	.contact__subtitle {
		font-size: 16px;
		line-height: 24px;
	}

	.contact__form {
		max-width: none;
	}

	.contact__grid {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-bottom: 16px;
	}

	.contact__field--full {
		grid-column: auto;
	}

	.contact__field-label {
		font-size: 12px;
	}

	.contact__control {
		padding: 16px;
		font-size: 14px;
		border-radius: 5px;
	}

	.contact__control--textarea {
		min-height: 120px;
	}

	.contact__submit {
		padding: 12px 16px;
		font-size: 14px;
		border-radius: 5px;
	}

	.contact__calendar-frame {
		min-height: 560px;
		border-radius: 8px;
	}

	.contact__calendar-continue {
		margin-top: 12px;
		padding: 12px 16px;
		font-size: 14px;
		border-radius: 5px;
	}

	.contact-flow-thanks__title {
		font-size: 28px;
		line-height: 36px;
	}

	.contact-flow-thanks__text {
		font-size: 14px;
		line-height: 22px;
	}

	.contact-flow-thanks__note {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
		padding: 16px;
	}

	.contact-flow-thanks__note-author {
		flex: none;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		width: 100%;
	}

	.contact-flow-thanks__note-name,
	.contact-flow-thanks__note-role {
		text-align: left;
	}

	.contact-flow-thanks__cards {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.contact-flow-thanks__card {
		padding: 24px 20px 20px;
	}

	.contact-flow-thanks__card-icon-image {
		width: 96px;
		height: 96px;
	}
}

/* Footer */
.site-footer {
	background: #1a1a1a;
	color: var(--hl-color-white);
}

.site-footer__inner {
	padding-top: 64px;
	padding-bottom: 48px;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) repeat(4, minmax(0, 1fr));
	gap: 40px;
}

.site-footer__brand-title {
	margin: 0;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--hl-color-white);
}

.site-footer__brand-subtitle {
	margin: 0 0 20px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.85);
}

.site-footer__description {
	margin: 0 0 24px;
	max-width: 320px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 32px;
}

.site-footer__copyright {
	margin: 0;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.45);
}

.site-footer__heading {
	margin: 0 0 20px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.45);
}

.site-footer__list,
.site-footer__contacts {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__list li + li,
.site-footer__contacts li + li {
	margin-top: 12px;
}

.site-footer__link {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--hl-color-white);
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-offset: 3px;
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.site-footer__link:hover {
	color: var(--hl-color-accent);
	text-decoration-color: var(--hl-color-accent);
}

.site-footer__legal .site-footer__link {
	text-decoration-color: rgba(255, 255, 255, 0.55);
}

.site-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--hl-color-white);
}

.site-footer__flag {
	flex-shrink: 0;
	margin-top: 3px;
}

.site-footer__col--contacts {
	display: flex;
	flex-direction: column;
}

.site-footer__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: fit-content;
	max-width: none;
	margin-top: 24px;
	padding: 14px 20px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	white-space: nowrap;
	color: var(--hl-color-text);
	background: var(--hl-color-white);
	border-radius: 6px;
	transition: background 0.2s ease, color 0.2s ease;
}

.site-footer__cta:hover {
	color: var(--hl-color-text);
	background: rgba(255, 255, 255, 0.9);
}

.site-footer__cta-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.site-footer__social {
	display: inline-flex;
	margin-top: auto;
	padding-top: 32px;
	align-self: flex-end;
	opacity: 0.95;
	transition: opacity 0.2s ease;
}

.site-footer__social:hover {
	opacity: 0.75;
}

@media (max-width: 1200px) {
	.site-footer__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.site-footer__col--brand {
		grid-column: 1 / -1;
	}

	.site-footer__col--contacts {
		grid-column: span 1;
	}
}

@media (max-width: 1024px) {
	.site-footer__inner {
		padding-top: 48px;
		padding-bottom: 40px;
	}

	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px 24px;
	}

	.site-footer__col--brand,
	.site-footer__grid > .site-footer__col:nth-child(2),
	.site-footer__col--contacts {
		grid-column: 1 / -1;
	}

	.site-footer__brand-title {
		font-size: 24px;
	}

	.site-footer__brand-subtitle {
		margin-bottom: 12px;
		font-size: 14px;
	}

	.site-footer__description {
		max-width: none;
		margin-bottom: 20px;
		font-size: 14px;
		line-height: 20px;
	}

	.site-footer__legal {
		gap: 16px;
		margin-bottom: 20px;
	}

	.site-footer__copyright {
		font-size: 12px;
		line-height: 16px;
	}

	.site-footer__heading {
		margin-bottom: 12px;
		font-size: 12px;
		letter-spacing: 0.1em;
	}

	.site-footer__list li + li,
	.site-footer__contacts li + li {
		margin-top: 8px;
	}

	.site-footer__link {
		font-size: 14px;
		line-height: 20px;
	}

	.site-footer__contact-item {
		font-size: 14px;
		line-height: 20px;
	}

	.site-footer__cta {
		width: 100%;
		margin-top: 20px;
		padding: 12px 16px;
		font-size: 14px;
		border-radius: 5px;
	}

	.site-footer__social {
		align-self: flex-start;
		margin-top: 0;
		padding-top: 24px;
	}
}

/* Scroll & load animations */
@keyframes hl-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(18, 120, 243, 0.35);
	}

	50% {
		box-shadow: 0 0 0 8px rgba(18, 120, 243, 0);
	}
}

@keyframes hl-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: no-preference) {
	.hl-animate {
		opacity: 0;
		transition: opacity 0.65s ease, transform 0.65s ease;
	}

	.hl-animate.is-visible {
		opacity: 1;
	}

	.hl-animate--fade-up:not(.is-visible) {
		transform: translateY(24px);
	}

	.hl-animate--fade-down:not(.is-visible) {
		transform: translateY(-24px);
	}

	.hl-animate--fade-in:not(.is-visible) {
		transform: none;
	}

	.hl-animate--slide-up:not(.is-visible) {
		transform: translateY(30px);
	}

	.hl-animate--slide-left:not(.is-visible) {
		transform: translateX(-40px);
	}

	.hl-animate--slide-right:not(.is-visible) {
		transform: translateX(40px);
	}

	.why-water__card.hl-animate.is-visible,
	.insights-resources__card.hl-animate.is-visible,
	.why-water-page-targets__card.hl-animate.is-visible,
	.infrastructure-planning-service__area-card.hl-animate.is-visible {
		transform: translate3d(0, 0, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hl-animate {
		opacity: 1;
		transform: none;
	}

	.hero__bg {
		animation: none;
	}

	.tools__card:not(.tools__card--soon) .tools__card-btn--primary {
		animation: none;
	}
}

/* Legal pages */
.legal-page-hero {
	background: var(--hl-color-white);
	color: var(--hl-color-text);
}

.legal-page-hero__inner {
	padding-top: 80px;
	padding-bottom: 0;
}

.legal-page-hero__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.legal-page-hero__title {
	margin: 0;
	max-width: 960px;
	font-size: 48px;
	font-weight: 400;
	line-height: 64px;
	color: var(--hl-color-text);
}

.legal-page-content {
	background: var(--hl-color-white);
	color: var(--hl-color-text);
}

.legal-page-content__inner {
	padding-top: 32px;
	padding-bottom: 80px;
}

.legal-page-body {
	max-width: 840px;
}

.legal-page-body__heading {
	margin: 32px 0 16px;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: var(--hl-color-text);
}

.legal-page-body__heading:first-child,
.legal-page-body > .legal-page-body__paragraph:first-child {
	margin-top: 0;
}

.legal-page-body__paragraph {
	margin: 0 0 20px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text);
}

.legal-page-body__paragraph a {
	color: var(--hl-color-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.legal-page-body__paragraph a:hover {
	color: var(--hl-color-accent-hover);
}

.legal-page-body__list {
	margin: 0 0 20px;
	padding-left: 20px;
	list-style: disc;
}

.legal-page-body__list li {
	margin: 0 0 12px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text);
}

.legal-page-body__list li:last-child {
	margin-bottom: 0;
}

@media (max-width: 1024px) {
	.legal-page-hero__inner {
		padding-top: 48px;
		padding-bottom: 0;
	}

	.legal-page-hero__label {
		margin-bottom: 8px;
		font-size: 14px;
		line-height: 20px;
	}

	.legal-page-hero__title {
		font-size: 32px;
		line-height: 40px;
	}

	.legal-page-content__inner {
		padding-top: 24px;
		padding-bottom: 48px;
	}

	.legal-page-body__heading {
		margin-top: 24px;
		margin-bottom: 12px;
		font-size: 14px;
		line-height: 20px;
	}

	.legal-page-body__paragraph,
	.legal-page-body__list li {
		font-size: 14px;
		line-height: 20px;
	}
}

/* Checklist modal */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

body.is-checklist-modal-open {
	overflow: hidden;
}

.checklist-modal {
	position: fixed;
	inset: 0;
	z-index: 2100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.checklist-modal[hidden] {
	display: none;
}

.checklist-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 26, 0.55);
}

.checklist-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 720px;
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	padding: 48px 56px 40px;
	background: #f9f7f2;
	border-radius: 30px;
	text-align: center;
}

.checklist-modal__dialog--wide {
	max-width: 960px;
}

.checklist-modal__close {
	position: absolute;
	top: 24px;
	right: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.checklist-modal__close-icon {
	display: block;
	width: 24px;
	height: 24px;
}

.checklist-modal__brand {
	margin-bottom: 24px;
}

.checklist-modal__logo {
	display: block;
	height: 40px;
	width: auto;
	margin: 0 auto;
}

.checklist-modal__stepper {
	position: relative;
	margin: 0 0 32px;
	padding-top: 8px;
}

.checklist-modal__stepper-track {
	position: absolute;
	left: 0;
	right: 0;
	top: 28px;
	height: 2px;
	background: rgba(26, 26, 26, 0.12);
}

.checklist-modal__stepper-progress {
	display: block;
	height: 100%;
	width: 0;
	background: var(--hl-color-accent);
	transition: width 0.25s ease;
}

.checklist-modal__stepper-labels {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.checklist-modal__stepper-item {
	position: relative;
	z-index: 1;
	flex: 1;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.08em;
	color: rgba(26, 26, 26, 0.35);
}

.checklist-modal__stepper-item.is-active {
	color: var(--hl-color-accent);
}

.checklist-modal__stepper-item.is-current {
	color: var(--hl-color-accent);
}

.checklist-modal__panel[hidden] {
	display: none;
}

.checklist-modal__title {
	margin: 0 0 20px;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.25;
	color: var(--hl-color-text);
}

.checklist-modal__title--question {
	margin-bottom: 12px;
}

.checklist-modal__title--thank-you {
	margin-bottom: 12px;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.25;
}

.checklist-modal__badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 20px;
}

.checklist-modal__badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--hl-color-text);
	background: #fff;
	border: 1px solid rgba(26, 26, 26, 0.12);
	border-radius: 999px;
}

.checklist-modal__description {
	margin: 0 auto 24px;
	max-width: 560px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: rgba(26, 26, 26, 0.65);
}

.checklist-modal__description--question {
	margin-bottom: 24px;
}

.checklist-modal__file-preview {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 0 0 28px;
	padding: 18px 20px;
	text-align: left;
	background: #fff;
	border: 1px solid rgba(26, 26, 26, 0.12);
	border-radius: 12px;
}

.checklist-modal__file-icon {
	flex: 0 0 40px;
}

.checklist-modal__file-icon svg,
.checklist-modal__file-icon-image {
	display: block;
	width: 40px;
	height: 48px;
	object-fit: contain;
}

.checklist-modal__file-title {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--hl-color-text);
}

.checklist-modal__file-meta {
	margin: 0;
	font-size: 14px;
	line-height: 1.4;
	color: rgba(26, 26, 26, 0.55);
}

.checklist-modal__options {
	margin: 0 0 28px;
	padding: 0;
	border: 0;
	text-align: left;
}

.checklist-modal__option {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 12px;
	padding: 16px 18px;
	background: #fff;
	border: 1px solid rgba(26, 26, 26, 0.12);
	border-radius: 12px;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checklist-modal__option:last-child {
	margin-bottom: 0;
}

.checklist-modal__option.is-selected,
.checklist-modal__option:has(.checklist-modal__option-input:checked) {
	border-color: var(--hl-color-accent);
	box-shadow: 0 0 0 1px var(--hl-color-accent);
}

.checklist-modal__option-input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.checklist-modal__option-radio {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	border: 2px solid rgba(26, 26, 26, 0.25);
	border-radius: 50%;
}

.checklist-modal__option-input:checked + .checklist-modal__option-radio {
	border-color: var(--hl-color-accent);
	background: radial-gradient(circle, var(--hl-color-accent) 0 5px, transparent 6px);
}

.checklist-modal__option-copy {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.checklist-modal__option-label {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--hl-color-text);
}

.checklist-modal__option-description {
	font-size: 14px;
	line-height: 1.4;
	color: rgba(26, 26, 26, 0.55);
}

.checklist-modal__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.checklist-modal__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 12px 24px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	border-radius: 8px;
	border: 0;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.checklist-modal__btn--primary {
	color: #fff;
	background: var(--hl-color-accent);
}

.checklist-modal__btn--primary:hover,
.checklist-modal__btn--primary:focus-visible {
	background: var(--hl-color-accent-hover);
}

.checklist-modal__btn--back {
	color: rgba(26, 26, 26, 0.45);
	background: rgba(26, 26, 26, 0.06);
}

.checklist-modal__btn--full {
	width: 100%;
}

.checklist-modal__btn-arrow {
	font-size: 18px;
	line-height: 1;
}

.checklist-modal__fields {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 28px;
	text-align: left;
}

.checklist-modal__field {
	position: relative;
}

.checklist-modal__field-label {
	position: absolute;
	top: -10px;
	left: 14px;
	z-index: 1;
	padding: 0 6px;
	font-size: 13px;
	line-height: 1.2;
	color: rgba(26, 26, 26, 0.55);
	background: #f9f7f2;
}

.checklist-modal__control {
	display: block;
	width: 100%;
	padding: 16px 18px;
	font-family: inherit;
	font-size: 16px;
	line-height: 1.4;
	color: var(--hl-color-text);
	background: #fff;
	border: 1px solid rgba(26, 26, 26, 0.18);
	border-radius: 10px;
}

.checklist-modal__control:focus {
	outline: none;
	border-color: var(--hl-color-accent);
	box-shadow: 0 0 0 3px rgba(18, 120, 243, 0.15);
}

.checklist-modal__form {
	margin: 0;
}

.checklist-modal__status {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.1em;
	color: var(--hl-color-accent);
}

.checklist-modal__thank-text {
	margin: 0 auto 24px;
	max-width: 720px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: rgba(26, 26, 26, 0.65);
}

.checklist-modal__note {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0 0 28px;
	padding: 15px;
	text-align: left;
	background: #fff;
	border: 1px solid rgba(26, 26, 26, 0.12);
	border-radius: 10px;
}

.checklist-modal__note-text {
	flex: 1;
	min-width: 0;
	margin: 0;
	font-size: 12px;
	font-weight: 400;
	line-height: 20px;
	color: rgba(26, 26, 26, 0.75);
}

.checklist-modal__note-author {
	flex: 0 0 132px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.checklist-modal__note-photo {
	display: block;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
}

.checklist-modal__note-name {
	margin: 0;
	font-size: 12px;
	font-weight: 600;
	line-height: 24px;
	color: var(--hl-color-text);
	text-align: center;
}

.checklist-modal__note-role {
	margin: 0;
	font-size: 9px;
	font-weight: 400;
	line-height: 16px;
	color: rgba(26, 26, 26, 0.55);
	text-align: center;
}

.checklist-modal__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 28px;
}

.checklist-modal__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 28px 24px 24px;
	text-align: center;
	background: #fff;
	border: 1px solid rgba(26, 26, 26, 0.12);
	border-radius: 12px;
}

.checklist-modal__card-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 500;
	line-height: 16px;
	color: var(--hl-color-text);
	background: #e8e2d6;
	border-radius: 999px;
}

.checklist-modal__card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 8px 0 20px;
}

.checklist-modal__card-icon svg,
.checklist-modal__card-icon-image {
	display: block;
	width: 120px;
	height: 120px;
	object-fit: contain;
}

.checklist-modal__card-title {
	margin: 0 0 12px;
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
	color: var(--hl-color-text);
}

.checklist-modal__card-text {
	flex: 1;
	margin: 0 0 20px;
	font-size: 12px;
	font-weight: 400;
	line-height: 20px;
	color: rgba(26, 26, 26, 0.65);
}

.checklist-modal__card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	align-self: center;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	color: var(--hl-color-accent);
	text-decoration: none;
	background: #fff;
	border: 1px solid var(--hl-color-accent);
	border-radius: 5px;
	transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.checklist-modal__card-btn:hover,
.checklist-modal__card-btn:focus-visible {
	color: var(--hl-color-accent-hover);
	border-color: var(--hl-color-accent-hover);
	background: rgba(18, 120, 243, 0.04);
}

.checklist-modal__consult-label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text);
}

.checklist-modal__panel--thank-you .checklist-modal__btn--primary.checklist-modal__btn--full {
	letter-spacing: 0.03em;
}

@media (max-width: 1024px) {
	.checklist-modal {
		padding: 16px;
		align-items: center;
	}

	.checklist-modal__dialog,
	.checklist-modal__dialog--wide {
		max-width: none;
		max-height: calc(100dvh - 32px);
		padding: 32px 20px 24px;
		border-radius: 24px;
	}

	.checklist-modal__close {
		top: 16px;
		right: 16px;
	}

	.checklist-modal__brand {
		margin-bottom: 20px;
	}

	.checklist-modal__logo {
		height: 32px;
	}

	.checklist-modal__stepper {
		margin-bottom: 24px;
	}

	.checklist-modal__stepper-item {
		font-size: 10px;
		font-weight: 700;
		line-height: 1.2;
		letter-spacing: 0.08em;
	}

	.checklist-modal__title,
	.checklist-modal__title--question,
	.checklist-modal__title--thank-you {
		margin-bottom: 12px;
		font-size: 24px;
		font-weight: 400;
		line-height: 32px;
	}

	.checklist-modal__badges {
		margin-bottom: 16px;
		gap: 8px;
	}

	.checklist-modal__badge {
		padding: 4px 12px;
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
	}

	.checklist-modal__description,
	.checklist-modal__description--question {
		margin-bottom: 20px;
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}

	.checklist-modal__file-preview {
		gap: 12px;
		margin-bottom: 20px;
		padding: 14px 16px;
		border-radius: 8px;
	}

	.checklist-modal__file-icon {
		flex-basis: 36px;
	}

	.checklist-modal__file-icon-image,
	.checklist-modal__file-icon svg {
		width: 36px;
		height: 44px;
	}

	.checklist-modal__file-title {
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
	}

	.checklist-modal__file-meta {
		font-size: 12px;
		font-weight: 400;
		line-height: 16px;
	}

	.checklist-modal__options {
		margin-bottom: 20px;
	}

	.checklist-modal__option {
		gap: 12px;
		margin-bottom: 10px;
		padding: 14px 12px;
		border-radius: 4px;
	}

	.checklist-modal__option-radio {
		flex-basis: 18px;
		width: 18px;
		height: 18px;
		margin-top: 1px;
	}

	.checklist-modal__option-label {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}

	.checklist-modal__option-description {
		font-size: 10px;
		font-weight: 400;
		line-height: 16px;
	}

	.checklist-modal__nav {
		flex-direction: row;
		align-items: stretch;
		gap: 12px;
	}

	.checklist-modal__btn {
		min-height: 0;
		padding: 10px 20px;
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
		border-radius: 5px;
	}

	.checklist-modal__btn--back {
		flex: 0 0 44px;
		width: 44px;
		padding: 10px;
	}

	.checklist-modal__btn--back .checklist-modal__btn-text {
		display: none;
	}

	.checklist-modal__nav .checklist-modal__btn--primary {
		flex: 1 1 auto;
		width: auto;
	}

	.checklist-modal__btn--full {
		width: 100%;
	}

	.checklist-modal__fields {
		gap: 16px;
		margin-bottom: 20px;
	}

	.checklist-modal__field-label {
		font-size: 12px;
	}

	.checklist-modal__control {
		padding: 14px 16px;
		font-size: 14px;
		border-radius: 4px;
	}

	.checklist-modal__status {
		font-size: 12px;
	}

	.checklist-modal__thank-text {
		margin-bottom: 20px;
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
	}

	.checklist-modal__note {
		flex-direction: column;
		align-items: center;
		gap: 12px;
		margin-bottom: 20px;
		padding: 15px;
		border-radius: 10px;
		text-align: center;
	}

	.checklist-modal__note-author {
		order: -1;
	}

	.checklist-modal__note-text {
		font-size: 12px;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
	}

	.checklist-modal__note-photo {
		width: 56px;
		height: 56px;
	}

	.checklist-modal__note-name {
		font-size: 12px;
		font-weight: 600;
		line-height: 24px;
	}

	.checklist-modal__note-role {
		font-size: 9px;
		font-weight: 400;
		line-height: 16px;
	}

	.checklist-modal__cards {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-bottom: 20px;
	}

	.checklist-modal__card-icon svg,
	.checklist-modal__card-icon-image {
		width: 96px;
		height: 96px;
	}

	.checklist-modal__card {
		padding: 20px 16px 16px;
		border-radius: 10px;
	}

	.checklist-modal__card-badge {
		font-size: 11px;
	}

	.checklist-modal__card-title {
		font-size: 16px;
		font-weight: 600;
		line-height: 20px;
	}

	.checklist-modal__card-text {
		margin-bottom: 14px;
		font-size: 12px;
		font-weight: 400;
		line-height: 20px;
	}

	.checklist-modal__card-btn {
		align-self: stretch;
		justify-content: center;
		padding: 10px 20px;
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
		border: 1px solid var(--hl-color-accent);
		border-radius: 5px;
	}

	.checklist-modal__consult-label {
		margin-bottom: 12px;
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
	}

	.checklist-modal__panel--thank-you .checklist-modal__btn--primary.checklist-modal__btn--full {
		letter-spacing: 0.03em;
	}
}

/* Scroll to top */
.hl-scroll-top {
	position: fixed;
	right: var(--hl-container-padding);
	bottom: 24px;
	z-index: 1050;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	font-family: var(--hl-font);
	color: var(--hl-color-white);
	background: var(--hl-color-accent);
	border: 1px solid var(--hl-color-accent);
	border-radius: 6px;
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(12px);
	transition:
		opacity 0.25s ease,
		transform 0.25s ease,
		visibility 0.25s ease,
		background 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease;
}

.hl-scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.hl-scroll-top:hover,
.hl-scroll-top:focus-visible {
	color: var(--hl-color-white);
	background: var(--hl-color-accent-hover);
	border-color: var(--hl-color-accent-hover);
	outline: none;
}

.hl-scroll-top:focus-visible {
	box-shadow:
		0 8px 24px rgba(26, 26, 26, 0.12),
		0 0 0 3px rgba(18, 120, 243, 0.2);
}

.hl-scroll-top__icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

@media (max-width: 1024px) {
	.hl-scroll-top {
		right: 16px;
		bottom: 16px;
		width: 44px;
		height: 44px;
		border-radius: 5px;
	}
}

/* Coming soon page */
.coming-soon-hero {
	background: #f9f7f2;
	color: var(--hl-color-text);
}

.coming-soon-hero__inner {
	padding-top: 80px;
	padding-bottom: 80px;
}

.coming-soon-hero__label {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hl-color-accent);
}

.coming-soon-hero__title {
	margin: 0 0 16px;
	max-width: 720px;
	font-size: 48px;
	font-weight: 400;
	line-height: 64px;
	color: var(--hl-color-text);
}

.coming-soon-hero__description {
	margin: 0 0 32px;
	max-width: 640px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--hl-color-text-muted);
}

.coming-soon-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.coming-soon-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 24px;
	font-family: var(--hl-font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	border-radius: 6px;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.coming-soon-hero__btn--primary {
	color: var(--hl-color-white);
	background: var(--hl-color-accent);
	border: 1px solid var(--hl-color-accent);
}

.coming-soon-hero__btn--primary:hover {
	color: var(--hl-color-white);
	background: var(--hl-color-accent-hover);
	border-color: var(--hl-color-accent-hover);
}

.coming-soon-hero__btn--secondary {
	color: var(--hl-color-text);
	background: var(--hl-color-white);
	border: 1px solid rgba(26, 26, 26, 0.2);
}

.coming-soon-hero__btn--secondary:hover {
	border-color: var(--hl-color-accent);
	color: var(--hl-color-accent);
}

.coming-soon-hero__btn-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

@media (max-width: 1024px) {
	.coming-soon-hero__inner {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.coming-soon-hero__label {
		margin-bottom: 8px;
		font-size: 14px;
		line-height: 20px;
	}

	.coming-soon-hero__title {
		font-size: 32px;
		line-height: 40px;
	}

	.coming-soon-hero__description {
		margin-bottom: 24px;
		font-size: 14px;
		line-height: 20px;
	}

	.coming-soon-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.coming-soon-hero__btn {
		width: 100%;
		padding: 12px 16px;
		font-size: 14px;
		border-radius: 5px;
	}
}

/* Schedule call modal */
body.is-schedule-call-modal-open {
	overflow: hidden;
}

.schedule-call-modal {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
}

.schedule-call-modal[hidden] {
	display: none;
}

.schedule-call-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 26, 0.55);
}

.schedule-call-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(960px, 100%);
	max-height: min(92vh, 980px);
	overflow-y: auto;
	padding: 32px 24px 40px;
	background: var(--hl-color-white);
	border-radius: 12px;
	box-shadow: 0 24px 60px rgba(26, 26, 26, 0.2);
}

.schedule-call-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	background: var(--hl-color-white);
	border: 1px solid rgba(26, 26, 26, 0.12);
	border-radius: 8px;
	cursor: pointer;
}

.schedule-call-modal__close-icon {
	display: block;
	width: 24px;
	height: 24px;
}

.schedule-call-modal__flow {
	max-width: none;
	margin: 0;
}

.schedule-call-modal__flow .contact__header {
	max-width: none;
	margin: 0 0 24px;
	text-align: left;
}

.schedule-call-modal__flow .contact__label {
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 20px;
}

.schedule-call-modal__flow .contact__title {
	margin-bottom: 8px;
	font-size: 24px;
	line-height: 32px;
}

.schedule-call-modal__flow .contact__subtitle {
	font-size: 16px;
	line-height: 24px;
}

.schedule-call-modal__flow .contact__form {
	max-width: none;
	margin: 0;
}

.schedule-call-modal__flow .contact__calendar {
	max-width: none;
	margin: 0;
}

.schedule-call-modal__flow .contact__calendar-frame {
	min-height: 620px;
}

.schedule-call-modal__flow .contact-flow-thanks {
	max-width: none;
	margin: 0;
}

@media (max-width: 1024px) {
	.schedule-call-modal {
		padding: 0;
		align-items: stretch;
	}

	.schedule-call-modal__dialog {
		width: 100%;
		max-height: 100vh;
		border-radius: 0;
		padding: 56px 16px 32px;
	}

	.schedule-call-modal__flow .contact__calendar-frame {
		min-height: 520px;
	}
}
