:root {
	--brand: #224476;
	--brand-strong: #16325f;
	--ink: #172033;
	--muted: #5d6b80;
	--line: #dce4ec;
	--surface: #ffffff;
	--surface-soft: #f5f8fb;
	--surface-tint: #edf6f4;
	--teal: #2b8f8a;
	--amber: #c89135;
	--danger: #a93f3f;
	--success: #257a54;
	--shadow: 0 18px 44px rgba(23, 32, 51, 0.12);
	--radius: 8px;
	--header-offset: 112px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-offset);
}

body {
	margin: 0;
	background: var(--surface);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.55;
	text-rendering: optimizeLegibility;
}

body.nav-open {
	overflow: hidden;
}

img,
svg {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

.page-shell {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.site-header {
	position: sticky;
	z-index: 30;
	top: 0;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(220, 228, 236, 0.8);
	backdrop-filter: blur(18px);
}

.top-strip {
	background: var(--brand);
	color: #ffffff;
	font-size: 0.9rem;
}

.top-strip__inner,
.top-strip__contacts,
.main-nav,
.main-menu,
.brand,
.hero__actions,
.hero__topics,
.contact-direct {
	display: flex;
	align-items: center;
}

.top-strip__inner {
	width: 100%;
	max-width: none;
	min-height: 38px;
	justify-content: space-between;
	gap: 18px;
	padding-inline: clamp(32px, 6vw, 96px);
}

.top-strip a {
	color: #ffffff;
	opacity: 0.94;
}

.top-strip a:hover,
.top-strip a:focus-visible {
	opacity: 1;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.top-strip__contacts {
	gap: 18px;
	white-space: nowrap;
}

.main-nav {
	min-height: 74px;
	justify-content: space-between;
	gap: clamp(24px, 4vw, 72px);
}

.main-nav.page-shell {
	width: 100%;
	max-width: none;
	padding-inline: clamp(32px, 6vw, 96px);
}

.brand {
	gap: 12px;
	color: var(--brand);
	font-size: 1.02rem;
	font-weight: 760;
	letter-spacing: 0;
	text-transform: uppercase;
	white-space: nowrap;
}

.brand img {
	width: 40px;
	height: 40px;
}

.brand--header img {
	width: clamp(220px, 18vw, 276px);
	height: auto;
}

.main-menu {
	flex: 1;
	gap: 10px;
	justify-content: flex-end;
	font-size: 0.96rem;
	font-weight: 650;
	color: #26364f;
}

.main-menu a {
	position: relative;
	border-radius: var(--radius);
	padding: 10px 12px;
	transition: color 160ms ease, background-color 160ms ease;
}

.main-menu a:not(.social-link)::after {
	position: absolute;
	right: 12px;
	bottom: 5px;
	left: 12px;
	height: 2px;
	background: var(--teal);
	border-radius: 999px;
	content: "";
	opacity: 0;
	transform: scaleX(0.72);
	transition: opacity 160ms ease, transform 160ms ease;
}

.main-menu a:hover,
.main-menu a:focus-visible {
	background: #edf3fb;
	color: var(--brand);
	outline: 0;
}

.main-menu a.is-active {
	background: #edf3fb;
	color: var(--brand);
}

.main-menu a:not(.social-link):hover::after,
.main-menu a:not(.social-link):focus-visible::after,
.main-menu a.is-active:not(.social-link)::after {
	opacity: 1;
	transform: scaleX(1);
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: 50%;
	padding: 0;
	min-width: 44px;
	text-align: center;
	color: var(--brand);
}

.social-link svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
	background: var(--brand);
	border-color: var(--brand);
	color: #ffffff;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
}

.nav-toggle span:not(.visually-hidden) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--brand);
	transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.hero {
	position: relative;
	isolation: isolate;
	min-height: calc(100svh - var(--header-offset));
	overflow: hidden;
	background: #f7fbfc;
}

.hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	height: 28%;
	background: linear-gradient(180deg, rgba(247, 251, 252, 0), #ffffff 92%);
	content: "";
	pointer-events: none;
}

.hero__background {
	position: absolute;
	z-index: -1;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 36%, rgba(255, 255, 255, 0.62) 58%, rgba(255, 255, 255, 0.1) 100%),
		linear-gradient(180deg, rgba(255, 255, 255, 0) 74%, rgba(255, 255, 255, 0.76) 100%),
		url("/img/hero/abstract-blue-waves-pexels-29915897.jpg");
	background-position: center, center, right 46% center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero__inner {
	display: flex;
	align-items: center;
	min-height: inherit;
	padding-block: 72px;
}

.hero__content {
	width: min(790px, 100%);
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--teal);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
	margin: 0;
	color: var(--brand-strong);
	font-weight: 820;
	letter-spacing: 0;
	line-height: 1.04;
}

.hero h1 {
	font-size: clamp(4.1rem, 5.1vw, 5.6rem);
	max-width: 850px;
	text-wrap: balance;
}

.hero h1 span {
	display: block;
}

.hero__lead {
	max-width: 620px;
	margin: 24px 0 0;
	color: #34445c;
	font-size: 1.28rem;
	line-height: 1.5;
}

.hero__actions {
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	padding: 0 20px;
	font-weight: 760;
	line-height: 1;
	transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
	outline: 0;
}

.button--primary {
	background: var(--brand);
	color: #ffffff;
	box-shadow: 0 12px 26px rgba(34, 68, 118, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
	background: var(--brand-strong);
}

.button--secondary {
	background: rgba(255, 255, 255, 0.72);
	border-color: rgba(34, 68, 118, 0.28);
	color: var(--brand);
}

.button--secondary:hover,
.button--secondary:focus-visible {
	background: #ffffff;
	border-color: var(--brand);
}

.button:disabled {
	cursor: wait;
	opacity: 0.68;
	transform: none;
}

.hero__topics {
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	margin: 34px 0 0;
	list-style: none;
	color: #2f415c;
	font-size: 0.95rem;
	font-weight: 700;
}

.hero__topics li {
	position: relative;
	padding-left: 18px;
}

.hero__topics li::before {
	position: absolute;
	top: 0.63em;
	left: 0;
	width: 7px;
	height: 7px;
	background: var(--amber);
	border-radius: 50%;
	content: "";
}

.section {
	padding-block: 96px;
}

.section-heading {
	max-width: 780px;
	margin-bottom: 40px;
}

.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
	align-items: end;
	gap: 42px;
	max-width: none;
}

.section-heading h2,
.contact-copy h2 {
	font-size: 3.15rem;
}

.section-heading p:not(.eyebrow),
.contact-copy p {
	margin: 0;
	color: var(--muted);
	font-size: 1.07rem;
}

.section-heading h2 + p,
.contact-copy h2 + p {
	margin-top: 18px;
}

.team {
	background: var(--surface);
}

.team-grid,
.service-grid,
.values-grid,
.metrics__grid,
.footer-grid,
.contact-layout,
.form-grid {
	display: grid;
}

.team-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
}

.team-card {
	display: flex;
	flex: 1 1 340px;
	flex-direction: column;
	overflow: hidden;
	max-width: calc((100% - 36px) / 3);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 12px 30px rgba(23, 32, 51, 0.07);
}

.team-card:first-child {
	display: flex;
	grid-column: auto;
	grid-template-columns: none;
}

.team-card__media {
	display: grid;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	min-height: 0;
	background: #e6f0f1;
	place-items: center;
}

.team-card:not(:first-child) .team-card__media {
	aspect-ratio: 4 / 3;
}

.team-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.team-card__initials {
	display: grid;
	width: 86px;
	height: 86px;
	background: var(--brand);
	border-radius: 50%;
	color: #ffffff;
	font-size: 1.35rem;
	font-weight: 820;
	place-items: center;
}

.team-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 218px;
	padding: 22px;
}

.team-card h3,
.service-card h3,
.value-item h3 {
	margin: 0;
	color: var(--brand-strong);
	font-size: 1.22rem;
	line-height: 1.2;
	letter-spacing: 0;
}

.team-card__role {
	margin: 6px 0 16px;
	color: var(--teal);
	font-size: 0.95rem;
	font-weight: 760;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.tag-list span {
	border: 1px solid #d4e2e6;
	border-radius: 999px;
	padding: 5px 9px;
	background: #f4faf9;
	color: #315463;
	font-size: 0.82rem;
	font-weight: 680;
	line-height: 1;
}

.team-card__email {
	margin-top: auto;
	padding-top: 18px;
	color: var(--brand);
	font-size: 0.94rem;
	font-weight: 720;
	overflow-wrap: anywhere;
}

.team-card__email:hover,
.team-card__email:focus-visible {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.metrics {
	padding-block: 18px;
	background:
		linear-gradient(135deg, rgba(24, 54, 101, 0.94), rgba(34, 68, 118, 0.93)),
		radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.08), transparent 34%);
	color: #ffffff;
}

.metrics__grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
}

.metric {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 198px;
	padding: 32px 24px 30px;
	text-align: center;
}

.metric__icon {
	display: grid;
	width: 58px;
	height: 58px;
	margin-bottom: 28px;
	background: rgba(255, 255, 255, 0.075);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 18px;
	color: rgba(255, 255, 255, 0.88);
	place-items: center;
}

.metric__icon svg {
	width: 31px;
	height: 31px;
}

.metric__icon path {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.85;
}

.metric strong {
	display: block;
	font-size: 2.45rem;
	line-height: 1;
	letter-spacing: 0;
}

.metric > span:not(.metric__icon) {
	display: block;
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.82);
	font-weight: 650;
	line-height: 1.25;
}

.values {
	background: var(--surface-soft);
}

.values-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.value-item {
	min-height: 282px;
	padding: 26px 22px 24px;
	background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.76) 100%);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 10px 24px rgba(23, 32, 51, 0.05);
	text-align: center;
	transition: box-shadow 160ms ease, transform 160ms ease;
}

.value-item:hover {
	box-shadow: 0 18px 34px rgba(23, 32, 51, 0.09);
	transform: translateY(-2px);
}

.value-item p,
.service-card p {
	margin: 14px 0 0;
	color: var(--muted);
}

.feature-icon {
	display: grid;
	width: 62px;
	height: 62px;
	margin-inline: auto;
	background: #edf6f4;
	border: 1px solid #cfe1df;
	border-radius: 18px;
	color: var(--teal);
	place-items: center;
}

.feature-icon svg {
	width: 30px;
	height: 30px;
}

.feature-icon path {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.85;
}

.feature-icon--human,
.feature-icon--mortgage {
	background: #edf3fb;
	border-color: #cfddec;
	color: var(--brand);
}

.feature-icon--clarity,
.feature-icon--plan {
	background: #fff6e8;
	border-color: #eed7ac;
	color: var(--amber);
}

.feature-icon--investment,
.feature-icon--partnership {
	background: #eaf6f2;
	border-color: #cde3d9;
	color: #2b7d5f;
}

.feature-icon--insurance,
.feature-icon--service,
.feature-icon--tailored {
	background: #eef6f7;
	border-color: #cde2e8;
	color: #327b91;
}

.value-item h3 {
	margin-top: 32px;
}

.services {
	background: #ffffff;
}

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

.service-grid--five-items {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card {
	position: relative;
	display: flex;
	overflow: hidden;
	flex-direction: column;
	min-width: 0;
	min-height: 272px;
	padding: 0 26px 28px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 12px 30px rgba(23, 32, 51, 0.06);
	text-align: center;
	transition: box-shadow 160ms ease, transform 160ms ease;
}

.service-card:hover {
	box-shadow: 0 20px 42px rgba(23, 32, 51, 0.1);
	transform: translateY(-2px);
}

.service-card__visual {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 108px;
	margin: 0 -26px 28px;
	padding: 26px;
	background:
		linear-gradient(135deg, rgba(237, 246, 244, 0.98), rgba(242, 247, 251, 0.98)),
		linear-gradient(90deg, var(--teal), #7fb7c5);
	border-bottom: 1px solid var(--line);
}

.service-card h3 {
	margin-top: 0;
}

@media (min-width: 1081px) {
	.service-grid--five-items {
		gap: 20px;
	}

	.service-grid--five-items .service-card {
		min-height: 286px;
		padding: 26px 20px 24px;
		box-shadow: 0 16px 36px rgba(23, 32, 51, 0.07);
	}

	.service-grid--five-items .service-card__visual {
		width: 62px;
		height: 62px;
		min-height: auto;
		margin: 0 auto 24px;
		padding: 0;
		background: transparent;
		border: 0;
	}

	.service-grid--five-items .service-card h3 {
		font-size: 1.12rem;
		line-height: 1.24;
	}

	.service-grid--five-items .service-card p {
		margin-top: 12px;
		font-size: 0.98rem;
		line-height: 1.46;
	}
}

.contact-section {
	padding-block: 96px;
	background:
		linear-gradient(90deg, rgba(237, 246, 244, 0.95), rgba(245, 248, 251, 0.95)),
		url("/img/logo/logo_symbol.svg") right 9% center / 420px auto no-repeat;
}

.contact-layout {
	grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
	gap: 56px;
	align-items: start;
}

.contact-copy {
	position: sticky;
	top: calc(var(--header-offset) + 28px);
}

.contact-direct {
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.contact-direct a {
	border: 1px solid #bfd2dc;
	border-radius: var(--radius);
	padding: 10px 12px;
	background: rgba(255, 255, 255, 0.68);
	color: var(--brand);
	font-weight: 740;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.contact-direct a:hover,
.contact-direct a:focus-visible {
	background: #ffffff;
	border-color: var(--brand);
	color: var(--brand-strong);
	transform: translateY(-1px);
}

.contact-form {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px;
	box-shadow: var(--shadow);
}

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

.form-grid label {
	display: grid;
	gap: 7px;
	color: #2d3d56;
	font-weight: 720;
}

.form-grid span {
	font-size: 0.9rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
	width: 100%;
	border: 1px solid #c9d5e1;
	border-radius: var(--radius);
	background: #ffffff;
	color: var(--ink);
	padding: 12px 13px;
	outline: 0;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-grid textarea {
	min-height: 144px;
	resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
	border-color: var(--brand);
	box-shadow: 0 0 0 4px rgba(34, 68, 118, 0.13);
}

.form-grid input[aria-invalid="true"],
.form-grid select[aria-invalid="true"],
.form-grid textarea[aria-invalid="true"] {
	border-color: var(--danger);
	background: #fff8f8;
	box-shadow: 0 0 0 4px rgba(169, 63, 63, 0.1);
}

.form-grid input[aria-invalid="false"],
.form-grid select[aria-invalid="false"],
.form-grid textarea[aria-invalid="false"] {
	border-color: #b9d7ca;
}

.form-grid__full {
	grid-column: 1 / -1;
}

.contact-form__turnstile {
	margin-top: 18px;
}

.contact-form__submit {
	width: 100%;
	margin-top: 22px;
}

.form-feedback {
	margin-bottom: 18px;
	border-radius: var(--radius);
	padding: 12px 14px;
	font-weight: 720;
	outline: 0;
}

.form-feedback:focus-visible {
	box-shadow: 0 0 0 4px rgba(34, 68, 118, 0.13);
}

.form-feedback--hidden {
	display: none;
}

.form-feedback--error {
	background: #f9eaea;
	color: var(--danger);
}

.form-feedback--success {
	background: #e8f5ef;
	color: var(--success);
}

.honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.site-footer {
	background: #101929;
	color: #ffffff;
}

.footer-grid {
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 40px;
	padding-block: 46px;
}

.brand--footer {
	color: #ffffff;
}

.site-footer p,
.site-footer span,
.site-footer a {
	display: block;
	color: rgba(255, 255, 255, 0.78);
}

.site-footer p {
	max-width: 360px;
	margin: 18px 0 0;
}

.site-footer h2 {
	margin: 0 0 14px;
	color: #ffffff;
	font-size: 0.95rem;
	letter-spacing: 0;
	text-transform: uppercase;
}

.site-footer a + a,
.site-footer a + span {
	margin-top: 8px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 4px;
}

@media (max-width: 1080px) {
	.hero h1 {
		font-size: 4rem;
	}

	.service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-grid--five-items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-grid--five-items .service-card:last-child {
		grid-column: 1 / -1;
	}

	.team-card {
		max-width: calc((100% - 18px) / 2);
	}

	.values-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.metrics__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	:root {
		--header-offset: 65px;
	}

	.page-shell {
		width: min(100% - 28px, 1180px);
	}

	.top-strip {
		display: none;
	}

	.top-strip__inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
		width: 100%;
		padding-inline: 14px;
		padding-block: 8px;
	}

	.top-strip__contacts {
		flex-wrap: wrap;
		gap: 10px;
		white-space: normal;
	}

	.main-nav {
		min-height: 64px;
	}

	.main-nav.page-shell {
		width: 100%;
		padding-inline: 14px;
	}

	.brand--header img {
		width: min(220px, calc(100vw - 104px));
	}

	.nav-toggle {
		display: block;
	}

	.main-menu {
		position: absolute;
		top: calc(100% + 10px);
		right: 14px;
		left: 14px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 12px;
		background: #ffffff;
		border: 1px solid var(--line);
		border-radius: var(--radius);
		box-shadow: var(--shadow);
	}

	.main-menu.is-open {
		display: flex;
	}

	.main-menu a {
		padding: 13px 12px;
	}

	.main-menu a:not(.social-link)::after {
		display: none;
	}

	.social-link {
		width: auto;
		height: auto;
		border-radius: var(--radius);
		justify-content: flex-start;
		text-align: left;
	}

	.social-link::after {
		margin-left: 10px;
		content: "Instagram";
	}

	.hero {
		min-height: calc(100svh - var(--header-offset));
		background: #eef7f7;
	}

	.hero__background {
		background:
			linear-gradient(180deg, rgba(247, 251, 252, 0.06) 0%, rgba(247, 251, 252, 0.36) 32%, rgba(255, 255, 255, 0.86) 73%, rgba(255, 255, 255, 0.98) 100%),
			linear-gradient(140deg, rgba(34, 68, 118, 0.24) 0%, rgba(43, 143, 138, 0.13) 44%, rgba(255, 255, 255, 0) 74%),
			url("/img/hero/abstract-blue-waves-pexels-29915897.jpg");
		background-position: center, center, 52% top;
		background-size: cover, cover, 148% auto;
	}

	.hero__inner {
		align-items: flex-end;
		padding-block: 42px 52px;
	}

	.hero h1 {
		max-width: 10.5em;
		font-size: 3.05rem;
		line-height: 1.02;
	}

	.hero h1 span {
		display: block;
	}

	.hero h1 span + span::before {
		content: "";
	}

	.hero__lead {
		max-width: 34em;
		margin-top: 18px;
		font-size: 1.08rem;
		line-height: 1.42;
		text-wrap: balance;
	}

	.hero__actions {
		margin-top: 26px;
	}

	.hero__topics {
		margin-top: 26px;
	}

	.section,
	.contact-section {
		padding-block: 72px;
	}

	.team.section {
		padding-block-start: 52px;
		background: linear-gradient(180deg, #f5f8fb 0%, #ffffff 44%);
	}

	.section-heading--split,
	.contact-layout {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.section-heading h2,
	.contact-copy h2 {
		font-size: 2.45rem;
	}

	.contact-copy {
		position: static;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

@media (max-width: 640px) {
	.hero {
		min-height: calc(100svh - var(--header-offset));
		background: #eef7f7;
	}

	.hero__background {
		background:
			linear-gradient(180deg, rgba(247, 251, 252, 0.04) 0%, rgba(247, 251, 252, 0.28) 33%, rgba(255, 255, 255, 0.88) 74%, rgba(255, 255, 255, 0.98) 100%),
			linear-gradient(140deg, rgba(34, 68, 118, 0.24) 0%, rgba(43, 143, 138, 0.14) 48%, rgba(255, 255, 255, 0) 76%),
			url("/img/hero/abstract-blue-waves-pexels-29915897.jpg");
		background-position: center, center, 50% top;
		background-size: cover, cover, 158% auto;
	}

	.hero__inner {
		padding-block: 30px 26px;
	}

	.hero h1 {
		max-width: 9em;
		font-size: 2.72rem;
	}

	.hero__actions .button {
		width: 100%;
	}

	.hero__topics {
		gap: 8px 12px;
		margin-top: 22px;
		font-size: 0.9rem;
	}

	.team.section {
		padding-block-start: 42px;
	}

	.section-heading {
		margin-bottom: 28px;
	}

	.team-grid,
	.service-grid,
	.values-grid,
	.form-grid {
		grid-template-columns: 1fr;
	}

	.service-grid--five-items {
		grid-template-columns: 1fr;
	}

	.service-grid--five-items .service-card:last-child {
		grid-column: auto;
	}

	.metrics__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.metric:last-child {
		grid-column: 1 / -1;
	}

	.team-card:first-child {
		flex-basis: 100%;
		grid-column: span 1;
		grid-template-columns: 92px minmax(0, 1fr);
		max-width: none;
	}

	.team-card,
	.team-card:first-child {
		display: grid;
		flex-basis: 100%;
		grid-template-columns: 92px minmax(0, 1fr);
		max-width: none;
	}

	.team-card__media,
	.team-card:not(:first-child) .team-card__media {
		aspect-ratio: auto;
		min-height: auto;
	}

	.team-card__media {
		min-height: 100%;
	}

	.team-card__initials {
		width: 56px;
		height: 56px;
		font-size: 1rem;
	}

	.team-card__body {
		min-height: auto;
		padding: 16px;
	}

	.team-card h3 {
		font-size: 1.08rem;
	}

	.team-card__role {
		margin-bottom: 12px;
		font-size: 0.88rem;
	}

	.tag-list {
		gap: 6px;
	}

	.tag-list span {
		padding: 4px 7px;
		font-size: 0.76rem;
	}

	.team-card__email {
		padding-top: 12px;
		font-size: 0.86rem;
	}

	.value-item {
		min-height: auto;
	}

	.contact-form {
		padding: 22px;
	}

	.contact-section {
		background:
			linear-gradient(180deg, rgba(237, 246, 244, 0.96), rgba(245, 248, 251, 0.98)),
			url("/img/logo/logo_symbol.svg") right -56px top 22px / 190px auto no-repeat;
	}

	.contact-direct {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
		margin-top: 22px;
	}

	.form-grid {
		gap: 14px;
	}

	.form-grid input,
	.form-grid select,
	.form-grid textarea {
		padding: 11px 12px;
	}

	.metric {
		display: flex;
		min-height: auto;
		padding: 22px 14px;
	}

	.metric__icon {
		width: 50px;
		height: 50px;
		margin-bottom: 16px;
		border-radius: 16px;
	}

	.metric strong {
		font-size: 2.05rem;
	}

	.metric > span:not(.metric__icon) {
		font-size: 0.9rem;
	}

	.service-card {
		display: grid;
		grid-template-areas:
			"visual title"
			"visual text";
		grid-template-columns: 74px minmax(0, 1fr);
		column-gap: 16px;
		align-items: center;
		min-height: auto;
		padding: 18px;
		text-align: left;
	}

	.service-card__visual {
		grid-area: visual;
		min-height: 74px;
		margin: 0;
		padding: 0;
		background: transparent;
		border: 0;
	}

	.service-card h3 {
		grid-area: title;
		align-self: end;
		font-size: 1.1rem;
	}

	.service-card p {
		grid-area: text;
		align-self: start;
		margin-top: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}
}
