﻿:root {
	--bg: #f6f2ee;
	--text: #22181b;
	--muted: #161616;
	--line: #ddd6cf;
	--line-strong: #a3a3a3;
	--white: #f3f2ee;
}

/* Mobile: make B2B about block match main about block (alignment, lines, background) */
@media (max-width: 767px) {
	.page--b2b .about__watermark {
		display: none;
	}

	.page--b2b .about__lead {
		max-width: 100%;
		margin-top: 24px;
		font-size: 18px;
		line-height: 1.35;
	}

	.page--b2b .about .stats {
		margin-top: 34px;
		align-items: center;
		gap: 0;
		z-index: 0;
		isolation: isolate;
	}

	.page--b2b .about .stats::before {
		content: '';
		position: absolute;
		left: 50%;
		top: 24px;
		width: min(88vw, 332px);
		height: 224px;
		transform: translateX(-50%);
		background: url('assets/images/about-watermark.webp') center center / contain no-repeat;
		opacity: 0.32;
		pointer-events: none;
		z-index: 0;
	}

	.page--b2b .about .stats__item {
		position: relative;
		z-index: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		padding: 18px 0 20px;
		text-align: center;
	}

	.page--b2b .about .stats__item:last-child {
		padding-bottom: 0;
	}

	.page--b2b .about .stats__line {
		align-self: stretch;
		background: rgba(163, 163, 163, 0.5);
	}
}

/* Mobile: shift congress request background focus ~20% to the right */
@media (max-width: 767px) {
	.congress-page__request .congress-page__request-bg,
	.congress-page__request--shift-right .congress-page__request-bg,
	.congress-page__request.shift-right .congress-page__request-bg {
		object-position: 20% center;
	}

	/* Make the submit button white and full-width inside the request block */
	.congress-page__request .congress-page__request-submit.btn--light,
	.congress-page__request--shift-right .congress-page__request-submit.btn--light,
	.congress-page__request.shift-right .congress-page__request-submit.btn--light {
		width: 100%;
		background: #ffffff;
		color: #111;
		min-height: 48px;
		border: none;
	}

	.congress-page__request .congress-page__request-submit.btn--light:hover,
	.congress-page__request--shift-right .congress-page__request-submit.btn--light:hover,
	.congress-page__request.shift-right .congress-page__request-submit.btn--light:hover {
		background: #ffffff;
	}
}

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

html {
	scroll-behavior: auto;
	scroll-padding-top: 24px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
	display: none;
}

html.lenis,
html.lenis body {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

body {
	margin: 0;
	min-width: 320px;
	font-family: 'Inter', 'Gilroy', sans-serif;
	color: var(--text);
	background: #f6f2ee;
	overflow-x: clip;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

body.is-mobile-menu-open {
	overflow: hidden;
}

h1,
h2,
h3,
p {
	margin: 0;
}

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

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

.page {
	width: min(100%, 1440px);
	margin: 0 auto;
	background: var(--bg);
}

.container {
	width: min(100% - 48px, 1240px);
	margin: 0 auto;
}

.section {
	margin-top: 140px;
}

.section-kicker {
	font-family: 'Unbounded', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
}

.section-kicker--center {
	text-align: center;
}

.section-kicker--light {
	color: #fff;
}

.section-title {
	margin-top: 24px;
	font-family: 'Unbounded', sans-serif;
	font-size: 38px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
	max-width: 1240px;
}

.section-title--light {
	margin-top: 24px;
	color: #fff;
}

.section-lead {
	width: min(100%, 929px);
	margin-top: 16px;
	font-size: 21px;
	font-weight: 400;
	line-height: 1.3;
}

.section-lead--full {
	width: 100%;
}

.page-legal {
	width: min(100%, 920px);
	margin: 0 auto;
	padding: 32px 0 48px;
}

.page-legal__list {
	margin: 0;
	padding-left: 22px;
	display: grid;
	gap: 12px;
	font-size: 18px;
	line-height: 1.5;
}

.page-legal__list li {
	padding-left: 2px;
}

.phrase-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.phrase-pill {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 18px;
	border-radius: 999px;
	background: rgba(34, 24, 27, 0.52);
	border: 1px solid rgba(221, 214, 207, 0.45);
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
	text-transform: none;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.btn {
	display: inline-flex;
	position: relative;
	align-items: center;
	justify-content: center;
	height: 45px;
	padding: 0 20px;
	border-radius: 8px;
	border: 1px solid;
	overflow: hidden;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background-color 0.25s ease,
		color 0.25s ease;
}

.btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.22) 50%, transparent 80%);
	transform: translateX(-120%);
	transition: transform 0.45s ease;
	pointer-events: none;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(34, 24, 27, 0.18);
}

.btn:hover::before {
	transform: translateX(120%);
}

.btn:active {
	transform: translateY(0);
}

.btn:focus-visible {
	outline: 2px solid rgba(243, 242, 238, 0.85);
	outline-offset: 2px;
}

.btn--light {
	width: 142px;
	border-color: #fff;
	color: #fff;
}

.btn--light:hover {
	background: rgba(243, 242, 238, 0.17);
}

.btn--dark {
	width: 142px;
	border-color: var(--text);
	color: var(--text);
}

.btn--dark:hover {
	background: var(--text);
	color: var(--white);
}

.hero {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	height: 800px;
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	min-width: 0;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
}

.hero__nav {
	position: absolute;
	top: 32px;
	left: 50%;
	width: min(100% - 48px, 1240px);
	transform: translateX(-50%);
	height: 59px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	z-index: 4;
}

.page--privacy-policy .hero__nav,
.page--offer .hero__nav {
	padding: 0 18px;
	border-radius: 22px;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.page--privacy-policy .menu-link,
.page--offer .menu-link {
	color: var(--text);
}

.page--privacy-policy .has-caret::after,
.page--offer .has-caret::after {
	border-right-color: var(--text);
	border-bottom-color: var(--text);
}

.page--privacy-policy .hero__burger,
.page--offer .hero__burger {
	--burger-color: var(--text);
}

.page--privacy-policy .hero__logo-image--light,
.page--offer .hero__logo-image--light {
	display: none;
}

.page--privacy-policy .hero__logo-image--dark,
.page--offer .hero__logo-image--dark {
	display: block;
}

.hero__menu {
	margin-top: 19px;
	display: flex;
	align-items: center;
}

.hero__menu--left {
	width: 427px;
	gap: 29px;
}

.hero__menu--right {
	width: 500px;
	gap: 22px;
}

.hero__actions {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.hero__action-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	flex: 0 0 45px;
	transition: opacity 0.2s ease;
}

.hero__action-link:hover {
	opacity: 0.88;
}

.hero__action-link img {
	display: block;
	max-width: 100%;
	max-height: 100%;
}

.hero__nav--dark .hero__action-link img,
.page--privacy-policy .hero__action-link img,
.page--offer .hero__action-link img {
	filter: brightness(0) saturate(100%) invert(8%) sepia(12%) saturate(1410%) hue-rotate(294deg) brightness(91%) contrast(89%);
}

.menu-link {
	display: inline-flex;
	align-items: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	color: #fff;
	white-space: nowrap;
	text-transform: lowercase;
	transition: opacity 0.2s ease;
}

.menu-link:hover {
	opacity: 0.92;
}

body.estyderm-theme .hero__nav .menu-link,
body.estyderm-theme .hero__nav .menu-trigger,
body.estyderm-theme .hero__nav .menu-dropdown__item {
	font-family: Inter, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
}

body.estyderm-theme .hero__nav:not(.hero__nav--dark) .menu-link,
body.estyderm-theme .hero__nav:not(.hero__nav--dark) .menu-trigger {
	color: #fff;
}

body.estyderm-theme .hero__nav--dark .menu-link,
body.estyderm-theme .hero__nav--dark .menu-trigger,
body.estyderm-theme .page--privacy-policy .hero__nav .menu-link,
body.estyderm-theme .page--privacy-policy .hero__nav .menu-trigger,
body.estyderm-theme .page--offer .hero__nav .menu-link,
body.estyderm-theme .page--offer .hero__nav .menu-trigger {
	color: var(--text);
}

body.estyderm-theme .hero__nav .menu-dropdown__item {
	color: #f3f2ee;
	font-size: 14px;
	font-weight: 500;
}

body.estyderm-theme.is-mobile-menu-open .hero__nav .menu-link,
body.estyderm-theme.is-mobile-menu-open .hero__nav .menu-trigger {
	color: #22181b;
	font-size: 16px;
}

.elementor-kit-6 .hero__nav a.menu-link,
.elementor-kit-6 .hero__nav .menu-trigger,
.elementor-kit-6 .hero__nav .menu-dropdown__item {
	font-family: Inter, sans-serif !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 1.3 !important;
}

.elementor-kit-6 .hero__nav:not(.hero__nav--dark) a.menu-link,
.elementor-kit-6 .hero__nav:not(.hero__nav--dark) .menu-trigger {
	color: #fff !important;
}

.elementor-kit-6 .hero__nav--dark a.menu-link,
.elementor-kit-6 .hero__nav--dark .menu-trigger,
.elementor-kit-6 .page--privacy-policy .hero__nav a.menu-link,
.elementor-kit-6 .page--privacy-policy .hero__nav .menu-trigger,
.elementor-kit-6 .page--offer .hero__nav a.menu-link,
.elementor-kit-6 .page--offer .hero__nav .menu-trigger {
	color: var(--text) !important;
}

.elementor-kit-6 .hero__nav .menu-dropdown__item {
	color: #f3f2ee !important;
	font-size: 14px !important;
	font-weight: 500 !important;
}

.esty-woocommerce-shell__header {
	position: relative;
	z-index: 20;
	background: var(--bg);
}

.esty-woocommerce-shell__header .hero__nav {
	position: relative;
	top: auto;
	left: auto;
	width: min(100% - 48px, 1240px);
	height: auto;
	margin: 0 auto;
	padding: 32px 0 16px;
	transform: none;
	justify-content: flex-start;
}

.esty-woocommerce-shell__header .hero__menu--left {
	width: 427px;
	gap: 29px;
	margin-right: 60px;
}

.esty-woocommerce-shell__header .hero__logo {
	margin-right: 60px;
}

.esty-woocommerce-shell__header .hero__menu--right {
	width: 500px;
	gap: 22px;
	justify-content: flex-end;
}

.esty-woocommerce-shell__footer {
	margin-top: 80px;
}

.esty-woocommerce-shell__header .hero__nav a.menu-link,
.esty-woocommerce-shell__header .hero__nav .menu-trigger {
	color: var(--text) !important;
	font-family: Inter, sans-serif !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 1.3 !important;
}

.esty-woocommerce-shell__header .hero__nav .menu-dropdown__item {
	font-family: Inter, sans-serif !important;
}

.elementor-kit-6 .footer a,
.elementor-kit-6 .footer .footer__social {
	font-family: Inter, sans-serif !important;
	color: inherit !important;
}

@media (max-width: 1024px) {
	.hero__burger--light:not([aria-expanded='true']) {
		--burger-color: #fff !important;
	}

	.is-mobile-menu-open .hero__burger,
	.estyderm-theme.is-mobile-menu-open .hero__burger {
		--burger-color: #22181b !important;
	}

	.hero__action-link img,
	.esty-woocommerce-shell__header .hero__action-link img {
		filter: brightness(0) saturate(100%) invert(8%) sepia(12%) saturate(1410%) hue-rotate(294deg) brightness(91%) contrast(89%) !important;
	}

	.is-mobile-menu-open .hero__nav .menu-link,
	.is-mobile-menu-open .hero__nav .menu-trigger,
	.elementor-kit-6.is-mobile-menu-open .hero__nav a.menu-link,
	.elementor-kit-6.is-mobile-menu-open .hero__nav .menu-trigger {
		color: #22181b !important;
	}

	.is-mobile-menu-open .hero__nav .menu-dropdown__item,
	.elementor-kit-6.is-mobile-menu-open .hero__nav .menu-dropdown__item {
		color: #22181b !important;
	}
}

@media (max-width: 1024px) {
	.esty-woocommerce-shell__header .hero__nav {
		position: relative;
		top: auto;
		left: auto;
		width: calc(100% - 32px);
		height: 59px;
		margin: 0 auto;
		padding: 18px 0;
		transform: none;
		align-items: center;
		justify-content: space-between;
	}

	.esty-woocommerce-shell__header .hero__logo,
	.esty-woocommerce-shell__header .hero__logo img {
		width: 154px;
		height: 48px;
	}

	.esty-woocommerce-shell__header .hero__menu--left,
	.esty-woocommerce-shell__header .hero__menu--right {
		display: none;
	}

	.esty-woocommerce-shell__header .hero__burger {
		display: inline-flex;
		height: 35px;
	}

	body.is-mobile-menu-open .esty-woocommerce-shell__header .hero__nav {
		position: fixed;
		inset: 0;
		left: 0;
		width: 100%;
		height: 100dvh;
		margin: 0;
		padding: 28px 16px 72px;
		background: #f6f2ee;
		z-index: 50;
		display: flex;
		flex-wrap: wrap;
		align-content: flex-start;
		justify-content: space-between;
		overflow-y: auto;
		overscroll-behavior: contain;
	}

	body.is-mobile-menu-open .esty-woocommerce-shell__header .hero__nav > * {
		position: relative;
		z-index: 1;
	}

	body.is-mobile-menu-open .esty-woocommerce-shell__header .hero__logo {
		order: 1;
	}

	body.is-mobile-menu-open .esty-woocommerce-shell__header .hero__burger {
		order: 2;
		--burger-color: #22181b !important;
	}

	body.is-mobile-menu-open .esty-woocommerce-shell__header .hero__menu--left,
	body.is-mobile-menu-open .esty-woocommerce-shell__header .hero__menu--right {
		display: flex;
		width: 100%;
		margin-top: 0;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	body.is-mobile-menu-open .esty-woocommerce-shell__header .hero__menu--left {
		order: 3;
		margin-top: 48px;
		gap: 16px;
	}

	body.is-mobile-menu-open .esty-woocommerce-shell__header .hero__menu--right {
		order: 4;
		margin-top: 24px;
	}

	body.is-mobile-menu-open .esty-woocommerce-shell__header .hero__burger-label {
		display: none;
	}
}

.menu-dropdown__trigger-row {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.menu-dropdown__link {
	display: inline-flex;
	align-items: center;
}

.menu-dropdown__caret {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	padding: 0;
	line-height: 0;
}

.menu-trigger {
	border: 0;
	background: transparent;
	appearance: none;
	-webkit-appearance: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
}

.has-caret::after {
	content: '';
	display: block;
	margin-left: 8px;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid #fff;
	border-bottom: 1.5px solid #fff;
	transform: rotate(45deg) translateY(-1px);
	transition: transform 0.25s ease;
}

.menu-dropdown {
	position: relative;
}

.menu-dropdown__panel-wrap {
	position: absolute;
	top: 100%;
	left: -22px;
	width: 282px;
	padding: 14px 10px 10px;
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition:
		opacity 0.25s ease,
		transform 0.25s ease;
	z-index: 6;
}

.menu-dropdown__panel {
	width: 262px;
	padding: 10px;
	border: 1px solid rgba(243, 242, 238, 0.34);
	border-radius: 14px;
	background: linear-gradient(165deg, rgba(22, 22, 22, 0.92) 0%, rgba(34, 24, 27, 0.96) 100%);
	box-shadow: 0 20px 36px rgba(0, 0, 0, 0.32);
	backdrop-filter: blur(10px);
}

.menu-dropdown__item {
	display: block;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
	color: #f3f2ee;
	text-transform: lowercase;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.menu-dropdown__item + .menu-dropdown__item {
	margin-top: 4px;
}

.menu-dropdown__item:hover,
.menu-dropdown__item:focus-visible {
	background: rgba(243, 242, 238, 0.16);
	transform: translateX(4px);
}

.menu-dropdown.is-open .menu-dropdown__panel-wrap {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.menu-dropdown:hover .menu-dropdown__panel-wrap,
.menu-dropdown:focus-within .menu-dropdown__panel-wrap {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.menu-dropdown.is-open .has-caret::after {
	transform: rotate(-135deg) translateY(0);
}

.menu-dropdown:hover .has-caret::after,
.menu-dropdown:focus-within .has-caret::after {
	transform: rotate(-135deg) translateY(0);
}

.hero__logo {
	position: relative;
	display: block;
	width: 190px;
	height: 59px;
}

.hero__logo img {
	width: 190px;
	height: 59px;
}

.hero__logo-image--dark {
	display: none;
}

.hero__logo--dark .hero__logo-image--light {
	display: none;
}

.hero__logo--dark .hero__logo-image--dark {
	display: block;
}

@media (min-width: 1025px) {
	.hero__nav,
	.esty-woocommerce-shell__header .hero__nav {
		align-items: flex-start;
		justify-content: center;
	}

	.hero__nav .hero__menu--left,
	.esty-woocommerce-shell__header .hero__nav .hero__menu--left {
		position: absolute;
		left: 0;
		margin-right: 0;
	}

	.hero__nav .hero__menu--right,
	.esty-woocommerce-shell__header .hero__nav .hero__menu--right {
		position: absolute;
		right: 0;
		margin-left: 0;
		justify-content: flex-end;
	}

	.hero__nav .hero__logo,
	.esty-woocommerce-shell__header .hero__nav .hero__logo {
		position: absolute;
		left: 50%;
		margin-right: 0;
		transform: translateX(-50%);
	}
}

.hero__burger {
	--burger-color: #fff;
	display: none;
	align-items: flex-end;
	justify-content: flex-start;
	gap: 9px;
	width: 35px;
	min-width: 35px;
	height: 48px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--burger-color);
	font: inherit;
	cursor: pointer;
}

.hero__burger--dark {
	--burger-color: #22181b;
}

.hero__burger-icon {
	position: relative;
	width: 35px;
	height: 26px;
}

.hero__burger-icon span {
	position: absolute;
	left: 0;
	width: 35px;
	height: 4px;
	border-radius: 999px;
	background: currentColor;
	transform-origin: center;
	transition:
		transform 0.25s ease,
		opacity 0.2s ease;
}

.hero__burger-icon span:nth-child(1) {
	top: 0;
}

.hero__burger-icon span:nth-child(2) {
	top: 11px;
}

.hero__burger-icon span:nth-child(3) {
	top: 22px;
}

.hero__burger-label {
	margin-right: 1px;
	font-size: 8px;
	line-height: 1;
	text-transform: lowercase;
}

.hero__burger:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.hero__burger[aria-expanded='true'] .hero__burger-icon span:nth-child(1) {
	transform: translateY(11px) rotate(45deg);
}

.hero__burger[aria-expanded='true'] .hero__burger-icon span:nth-child(2) {
	opacity: 0;
}

.hero__burger[aria-expanded='true'] .hero__burger-icon span:nth-child(3) {
	transform: translateY(-11px) rotate(-45deg);
}

.hero__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: auto;
	aspect-ratio: 129 / 149;
	border: 0;
	background: transparent;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 4;
	transition:
		transform 0.25s ease,
		filter 0.25s ease;
}

.hero.is-video-playing .hero__play {
	display: none;
}

.hero__play:hover {
	transform: translate(-50%, -50%) scale(1.08);
	filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.33));
}

.hero__play:focus-visible {
	outline: 2px solid rgba(243, 242, 238, 0.8);
	outline-offset: 4px;
}

.hero__play img {
	width: 100%;
	height: 100%;
}

.hero__title {
	position: absolute;
	left: 50%;
	top: 622px;
	transform: translateX(-50%);
	width: min(100% - 48px, 1240px);
	font-family: 'Unbounded', sans-serif;
	font-size: 54px;
	font-weight: 500;
	line-height: 1.1;
	color: var(--white);
	text-transform: uppercase;
	text-align: center;
}

.aos-enabled [data-aos='fade-up'] {
	opacity: 0;
	transform: translate3d(0, 28px, 0);
	transition-property: opacity, transform;
	transition-duration: 0.72s;
	transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: opacity, transform;
}

.aos-enabled [data-aos='fade-up'].aos-animate {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.aos-enabled .learning-card[data-aos='fade-up'].aos-animate:hover,
.aos-enabled .learning-card[data-aos='fade-up']:hover,
.aos-enabled .event-poster[data-aos='fade-up'].aos-animate:hover,
.aos-enabled .event-poster[data-aos='fade-up']:hover {
	transform: translateY(-2px);
}

.about {
	position: relative;
}

.about__watermark {
	position: absolute;
	left: 315px;
	top: -70px;
	width: 610px;
	height: 403px;
	pointer-events: none;
}

.about__lead {
	width: 100%;
	max-width: 1245px;
	margin-top: 24px;
	font-size: 26px;
	font-weight: 400;
	line-height: 1.35;
	position: relative;
	z-index: 2;
}

.about__lead-strong {
	font-family: Unbounded;
	font-weight: 400;
}

.page--home .about__lead {
	font-size: 30px;
	line-height: 1.4;
}

.page--home .about__lead-strong {
	display: inline-block;
	margin: 8px 0 6px;
	font-family: 'Unbounded', sans-serif;
	font-size: 1.2em;
	font-weight: 500;
	line-height: 1.1;
	color: #0f0f0f;
}

.stats {
	margin-top: 46px;
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}

.stats__item {
	width: 356px;
	text-align: right;
}

.stats__line {
	height: 1px;
	background: var(--line-strong);
}

.stats__item h3 {
	margin-top: 16px;
	font-family: 'Unbounded', sans-serif;
	font-size: 54px;
	font-weight: 400;
	line-height: 1.1;
}

.stats__item p {
	margin-top: 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
}

.focus-cards {
	width: 1438px;
	margin: 139px auto 0;
}

.focus-cards__row {
	display: flex;
}

.focus-card {
	width: 474px;
	height: 460px;
	padding: 32px 30px 0 32px;
	border-right: 1px solid #ddd6cf;
	display: block;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	transition:
		transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
		box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.focus-card:nth-last-of-type(1) {
	border-right: none;
}

.focus-card:hover,
.focus-card:focus-visible {
	transform: translateY(-8px);
	box-shadow: 0 18px 42px rgba(34, 24, 27, 0.12);
}

.focus-card:hover .focus-card__media img,
.focus-card:focus-visible .focus-card__media img {
	transform: scale(1.03);
}

.focus-card:hover .focus-card__title h3,
.focus-card:focus-visible .focus-card__title h3 {
	transform: translateX(4px);
}
@media screen and (max-width: 768px) {
	.education-page__program-media img {
		object-fit: contain;
	}
	.focus-card {
		border-right: none;
	}
	.focus-card__media img {
		border-bottom: 1px solid #ddd6cf;
		padding-bottom: 24px !important;
	}
	.focus-card:nth-last-of-type(1) .focus-card__media img {
		border-bottom: none;
	}
	.focus-card .focus-card__media::after {
		bottom: 24px;
	}
	.focus-card .focus-card:nth-last-of-type(1) .focus-card__media::after {
		bottom: 0;
	}
}

.focus-card__title {
	height: 52px;
}

.focus-card__title span,
.focus-card__title h3 {
	font-family: 'Unbounded', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
	transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.focus-card__media {
	position: relative;
	width: 410px;
	height: 366px;
	margin-top: 10px;
	overflow: hidden;
}

.focus-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.focus-card__media--c1::after {
	height: 135px;
}

.focus-card__media--c2::after {
	display: none;
}

.focus-card__media--c3::after {
	height: 140px;
}

.event-card {
	margin-top: 31px;
	height: 398px;
	display: grid;
	grid-template-columns: 820px 420px;
}

.event-overflow {
	overflow: hidden;
}

.event-cards {
	margin-top: 31px;
	display: flex;
	gap: 25px;
	overflow: auto;
}

@media (max-width: 992px) {
	.event-cards {
		gap: 15px;
	}
}

.event-poster {
	position: relative;
	display: block;
	min-width: 228px;
	width: 228px;
	overflow: hidden;
	transition:
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.event-poster,
.event-poster:hover,
.event-poster:focus-visible {
	text-decoration: none;
	color: inherit;
}

.event-poster:hover,
.event-poster:focus-visible {
	box-shadow: 0 14px 32px rgba(34, 24, 27, 0.14);
	transform: translateY(-2px);
}

.event-poster img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.35s ease;
}

.event-poster:hover img,
.event-poster:focus-visible img {
	transform: scale(1.015);
}

.event-poster--featured img {
	filter: blur(1px);
	transform: scale(1.03);
}

/* .event-poster--featured:hover img,
.event-poster--featured:focus-visible img {
	filter: blur(1px);
	transform: scale(1.05);
} */

.event-poster__badge {
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 1;
	display: block;
	width: 50px;
	/* height: 39.6px; */
	pointer-events: none;
}

.event-poster__badge img {
	display: block;
	width: 100%;
	height: 100%;
	filter: none;
	transform: none;
}

@media (max-width: 576px) {
	.event-overflow {
		margin-right: -15px;
		margin-left: -15px;
	}
	.event-cards {
		padding-left: 15px;
		padding-right: 15px;
		gap: 10px;
	}
	.event-poster {
		min-width: 150px;
		width: 150px;
	}
}

.event-card__media {
	position: relative;
}

.event-card__media-image {
	width: 820px;
	height: 398px;
	object-fit: cover;
}

.event-card__media-mobile {
	display: none;
}

.event-card__content {
	background: #171312;
	color: #fff;
	padding: 32px;
	display: flex;
	flex-direction: column;
}

.event-card__label {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	color: #ebebeb;
}

.event-card__content h3 {
	margin-top: 16px;
	font-family: 'Unbounded', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
}

.event-card .btn {
	margin-top: 32px;
}

.event-card__link {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
}

.event-card__link img {
	width: 16px;
	height: 16px;
}

.learning .section-title--learning {
	max-width: 1240px;
	margin-top: 33px;
}

.page--home .congress .section-lead {
	font-size: 24px;
	line-height: 1.35;
}

.page--home .section-kicker {
	font-size: 56px;
	line-height: 0.95;
}

.page--home .section-title {
	margin-top: 12px;
	font-size: 30px;
	line-height: 1.15;
	text-transform: none;
}

.learning .section-lead {
	margin-top: 16px;
}

.learning-grid {
	margin-top: 44px;
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 48px 20px;
	align-items: start;
}

.learning-card {
	display: block;
	position: relative;
	box-sizing: border-box;
	height: 410px;
	overflow: hidden;
	background: #22181b;
	color: #eaeaea;
	text-decoration: none;
	cursor: pointer;
	transition:
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.learning-card:not(a) {
	cursor: default;
}

.learning-card:focus-visible {
	outline: 2px solid rgba(34, 24, 27, 0.28);
	outline-offset: 2px;
}

.learning-card:hover,
.learning-card:focus-visible {
	box-shadow: 0 16px 40px rgba(34, 24, 27, 0.14);
	transform: translateY(-2px);
}

.learning-card:nth-child(1),
.learning-card:nth-child(2) {
	grid-column: span 6;
}

.learning-card:nth-child(3),
.learning-card:nth-child(4),
.learning-card:nth-child(5) {
	grid-column: span 4;
	height: 346px;
}

@media (max-width: 992px) {
	.learning-card:nth-child(3),
	.learning-card:nth-child(4),
	.learning-card:nth-child(5) {
		height: auto;
	}
}

.learning-card > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	transition: transform 0.35s ease;
}

.learning-card__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.66) 100%);
	opacity: 1;
	transition: opacity 0.35s ease;
}

.learning-card:hover .learning-card__overlay,
.learning-card:focus-visible .learning-card__overlay {
	opacity: 0.96;
}

.learning-card:hover > img,
.learning-card:focus-visible > img {
	transform: scale(1.015);
}

.learning-card__content {
	position: absolute;
	inset: 0 0 16px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	width: auto;
}

.learning-card__header {
	position: relative;
	flex: 0 0 auto;
	min-height: 86px;
	padding: 25px 25px 11px;
	display: flex;
	align-items: flex-end;
}

.learning-card__header h3 {
	margin: 0;
	max-width: 350px;
	font-family: 'Unbounded', sans-serif;
	font-size: 23px;
	font-weight: 500;
	line-height: 1.15;
	color: #eaeaea;
	text-transform: none;
	transition: transform 0.35s ease;
}

.learning-card__header::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	background: rgba(255, 255, 255, 0.33);
	width: calc(100% - 50px);
	height: 1px;
	transition: transform 0.35s ease;
}

.learning-card__panel {
	position: static;
	flex: 0 0 auto;
	padding: 0 16px 16px;
	opacity: 1;
	transform: none;
	pointer-events: auto;
	transition: none;
}

.learning-card__list {
	margin: 0;
	padding-left: 20px;
	margin-top: 22px;
	width: auto;
	font-family: 'Inter', sans-serif;
}

.learning-card__list li {
	margin-bottom: 14px;
	list-style: disc;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
}

.learning-card__list li:last-child {
	margin-bottom: 0;
}

.learning-card__list--featured strong {
	font-weight: 600;
}

.learning-card__item-link {
	position: relative;
	display: block;
	/* width: max-content; */
	color: inherit;
	text-decoration: none;
	padding-bottom: 2px;
}

.learning-card__item-link::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.learning-card__item-link:hover::after,
.learning-card__item-link:focus-visible::after {
	transform: scaleX(1);
}

.learning-card__item-link:focus-visible {
	outline: none;
}

.learning-card__author {
	display: block;
	margin-top: 2px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.25;
}

.learning-card__list--featured .learning-card__author {
	margin-top: 3px;
}

.learning-card__content--short,
.learning-card__list--featured .learning-card__author {
	width: auto;
}

.learning-card__content h3,
.learning-card__content--short .learning-card__list {
	width: auto;
	max-width: none;
}

.learning-card__content--short .learning-card__list {
	width: auto;
}

.learning-card__list--featured .learning-card__author,
.learning-card__list--featured strong {
	color: #eaeaea;
}

.reviews {
	width: 1030px;
	margin: 140px auto 0;
}

.reviews-grid {
	position: relative;
	margin-top: 32px;
	max-height: 553px;
	overflow: hidden;
	display: flex;
	gap: 14px;
	transition: max-height 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reviews-grid.is-expanded {
	overflow: visible;
}

.reviews-column {
	width: 334px;
	display: flex;
	flex-direction: column;
	gap: 21px;
}

.review {
	border: 1px solid var(--line);
	border-radius: 32px;
	padding: 32px 24px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
}

.review p + p {
	margin-top: 16px;
}

.review--short {
	height: 169px;
}

.review--short-large {
	height: 211px;
}

.review--short-mid {
	height: 190px;
}

.review--mid {
	height: 311px;
}

.review--tall {
	height: 316px;
}

.review--with-avatar p {
	margin-top: 0;
}

.review__avatar {
	position: absolute;
	top: 32px;
	left: 24px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(34, 24, 27, 0.18);
	background: transparent;
}

.review--with-avatar {
	position: relative;
}

.reviews-grid__fade {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 1030px;
	height: 210px;
	pointer-events: none;
	opacity: 1;
	transform: translateY(0);
	transition:
		opacity 0.35s ease,
		transform 0.35s ease;
}

.reviews-grid.is-expanded .reviews-grid__fade {
	opacity: 0;
	transform: translateY(16px);
}

.reviews__more {
	display: block;
	width: fit-content;
	margin-top: 32px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	text-transform: lowercase;
	text-decoration-line: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 6px;
	transition: opacity 0.2s ease;
}

.reviews__more:hover {
	opacity: 0.72;
}

.b2b-grid {
	margin-top: 34px;
	display: grid;
	grid-template-columns: repeat(4, 310px);
}

.b2b-card {
	height: auto;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 0 20px;
	padding-bottom: 20px;
}
@media screen and (min-width: 1199px) {
	.b2b-card {
		border-bottom: none;
		border-left: 1px solid var(--line);
		border-top: none;
	}
	.b2b-card:nth-last-of-type(1) {
		border-right: 1px solid var(--line);
	}
}

.b2b-card img {
	width: 46px;
	height: 46px;
	margin-top: 0;
}

.b2b-card h3 {
	margin-top: 8px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
}

.b2b-card__list {
	margin-block: 16px;
	margin-bottom: 0;
	padding-left: 20px;
}

.b2b-card__list li {
	margin-top: 8px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	list-style: disc;
}

.b2b-card__list li:first-child {
	margin-top: 0;
}

.b2b .btn {
	display: flex;
	margin: 46px auto 0;
}

.page--home .b2b-grid {
	margin-top: 34px;
	display: grid;
	grid-template-columns: repeat(2, 586px);
	column-gap: 40px;
	row-gap: 42px;
	justify-content: center;
	padding-inline: 14px;
}

.page--home .b2b-card {
	box-sizing: border-box;
	padding: 15px 20px 20px;
	background: rgba(221, 214, 207, 0.12);
	border-left: 1px solid #ddd6cf;
	border-right: 1px solid #ddd6cf;
	border-top: 0;
	border-bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.page--home .b2b-card img {
	width: 46px;
	height: 46px;
	margin-top: 0;
	flex: 0 0 auto;
}

.page--home .b2b-card h3 {
	margin-top: 8px;
	max-width: 526px;
	font-size: 27px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.01em;
}

.page--home .b2b-card__list {
	margin: 16px 0 0;
	padding-left: 24px;
	max-width: 527px;
}

.page--home .b2b-card__list li {
	margin-top: 8px;
	font-size: 16px;
	line-height: 1.3;
}

.page--home .b2b-card__list li:first-child {
	margin-top: 0;
}

.page--home .b2b-card:nth-last-of-type(1) {
	border-right: 1px solid #ddd6cf;
}

.team {
	margin-top: 132px;
}

.team-slider {
	margin-top: 24px;
}

.team-slider__viewport {
	width: 1240px;
	overflow: hidden;
}

/* Drag-to-scroll cursor states */
.team-slider__viewport {
	cursor: grab;
}

.team-slider__viewport.is-dragging {
	cursor: grabbing;
	user-select: none;
}

.team-slider__track {
	display: flex;
	gap: 36px;
	transition: transform 0.3s ease;
}

.team-card {
	width: 295px;
	flex: 0 0 auto;
}

.team-card img {
	width: 295px;
	height: 407px;
	object-fit: cover;
}

.team-card h3 {
	margin-top: 16px;
	min-height: 52px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
}

.team-card__line {
	width: 48px;
	height: 1px;
	margin-top: 16px;
	background: var(--line);
}

.team-card p {
	margin-top: 8px;
	min-height: 54px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
}

.team-slider__controls {
	margin-top: 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.team-slider__progress {
	width: 1151px;
	height: 2px;
	background: var(--line);
}

.team-slider__progress-fill {
	width: 336px;
	height: 2px;
	background: var(--text);
}

.team-slider__arrows {
	width: 66px;
	display: flex;
	justify-content: space-between;
}

.team-slider__arrows button {
	width: 22px;
	height: 22px;
	border: 0;
	background: transparent;
	cursor: pointer;
	padding: 0;
	position: relative;
}

#team-prev::before,
#team-next::before {
	content: '';
	position: absolute;
	top: 5px;
	width: 10px;
	height: 10px;
	border-top: 2px solid var(--text);
	border-right: 2px solid var(--text);
}

#team-prev::before {
	left: 8px;
	transform: rotate(-135deg);
}

#team-next::before {
	left: 4px;
	transform: rotate(45deg);
}

.team-slider__arrows button:disabled {
	opacity: 0.35;
	cursor: default;
}

.partners {
	width: 100%;
	margin-top: 140px;
}

.partners h2 {
	font-family: 'Unbounded', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
	text-align: center;
}

.partners__strip {
	margin-top: 51px;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.partners__track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: partners-marquee 26s linear infinite;
}

.partners__track img {
	width: min(1440px, 100vw);
	max-width: none;
	flex: 0 0 min(1440px, 100vw);
	height: auto;
}

@keyframes partners-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.contact {
	position: relative;
	height: 497px;
	margin-top: 51px;
}

.contact__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact__content {
	position: relative;
	z-index: 2;
	padding-top: 80px;
}

.contact-form {
	margin-top: 46px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.line-field {
	width: 400px;
}

.line-field span {
	display: block;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	color: #fff;
}

.line-field input {
	width: 100%;
	height: 33px;
	margin-top: 0;
	border: 0;
	border-bottom: 1px solid #fff;
	background: transparent;
	color: #fff;
	font: inherit;
}

.line-field input:focus {
	outline: none;
}

.btn--contact {
	width: 186px;
	margin: 32px auto 0;
	color: #22181b;
	border-color: #f3f2ee;
	background: #f3f2ee;
}

.btn--contact:hover {
	color: #22181b;
	background: #fff;
}

.footer {
	min-height: 294px;
	height: auto;
	padding-bottom: 24px;
}

.footer__grid {
	padding-top: 46px;
	display: grid;
	grid-template-columns: 330px 208px 295px;
	justify-content: space-between;
}

.footer h3 {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
}

.footer__links {
	margin-top: 32px;
	display: grid;
	grid-template-columns: 190px 120px;
	gap: 20px;
}

.footer__links ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 24px;
}

.footer__links a {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
}

.footer__brand {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer__brand img {
	width: 190px;
	height: 59px;
}

.footer__brand a {
	color: #a3a3a3;
}

.footer__brand > a:first-child {
	margin-top: 0;
}

.footer__brand > a:nth-child(2) {
	margin-top: 107px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	text-align: center;
}

.footer__brand > a:nth-child(3) {
	margin-top: 16px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	text-align: center;
}

.footer__contacts {
	text-align: right;
}

.footer__contacts h3 {
	margin-left: auto;
}

.footer__social {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	gap: 16px;
	margin-top: 32px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
}

.footer__social svg {
	flex: 0 0 auto;
}

.footer__social + .footer__social {
	margin-top: 24px;
}

.footer__contacts a {
	display: block;
}

.footer__contacts .footer__social {
	display: inline-flex;
}

.footer__contacts > a:nth-of-type(3) {
	margin-top: 32px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
}

.footer__contacts > a:nth-of-type(4) {
	margin-top: 16px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
}

@media (max-width: 1439px) {
	.section-title,
	.learning .section-title--learning {
		max-width: 100%;
	}

	.focus-cards {
		width: min(100% - 2px, 1438px);
	}

	.focus-cards__row {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0;
	}

	.focus-card {
		width: auto;
		height: auto;
		min-height: 430px;
		padding: clamp(20px, 2.2vw, 32px) clamp(18px, 2vw, 30px) 0;
	}

	.focus-card__media {
		width: 100%;
		height: clamp(280px, 30vw, 366px);
	}

	.event-card {
		grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
		height: auto;
	}

	.event-card__media-image {
		width: 100%;
		height: 100%;
	}

	.learning-grid {
		margin-top: 36px;
		display: flex;
		gap: 12px;
		width: 100vw;
		margin-left: calc(50% - 50vw);
		padding-left: 24px;
		padding-right: 24px;
		overflow-x: auto;
		overflow-y: visible;
		scrollbar-width: none;
		scroll-snap-type: x mandatory;
		overscroll-behavior-x: contain;
		-webkit-overflow-scrolling: touch;
		touch-action: pan-x;
	}

	.learning-grid::-webkit-scrollbar {
		display: none;
	}

	.learning-card {
		flex: 0 0 min(420px, calc(100vw - 48px));
		min-height: 300px;
		height: auto;
		box-shadow: none;
		scroll-snap-align: start;
	}

	.learning-card > img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		min-height: 0;
		object-fit: cover;
	}

	.learning-card__content {
		position: relative;
		inset: auto;
		min-height: 300px;
		box-sizing: border-box;
	}

	.learning-card__header {
		min-height: auto;
		padding: 22px 22px 11px;
		align-items: flex-start;
	}

	.learning-card__header h3 {
		font-size: 20px;
		max-width: 260px;
	}

	.learning-card__panel {
		padding: 0 22px 22px;
		opacity: 1;
		transform: none;
		pointer-events: auto;
	}

	.learning-card__divider {
		margin-bottom: 12px;
	}

	.learning-card__list li {
		font-size: 15px;
	}

	.reviews {
		width: min(100% - 48px, 1030px);
	}

	.reviews-column {
		width: calc((100% - 28px) / 3);
	}

	.reviews-grid__fade {
		width: 100%;
	}

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

	.team-slider__viewport {
		width: 100%;
	}

	.team-slider__progress {
		width: min(100%, 1151px);
		flex: 1;
	}

	.team-slider__progress-fill {
		width: 33%;
	}

	.contact {
		height: auto;
		min-height: 497px;
		padding-bottom: 56px;
	}

	.line-field {
		width: calc(50% - 10px);
	}

	.line-field:last-of-type {
		width: 100%;
	}

	.footer__grid {
		grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
		gap: 24px;
	}
}

@media (max-width: 1199px) {
	.section {
		margin-top: 112px;
	}

	.section-kicker {
		font-size: 20px;
	}

	.section-title {
		font-size: clamp(32px, 4vw, 38px);
	}

	.section-lead {
		font-size: 20px;
	}

	.hero {
		height: 680px;
	}

	.hero__nav {
		top: 24px;
		height: auto;
		align-items: center;
		flex-wrap: wrap;
		gap: 14px 20px;
	}

	.hero__menu {
		margin-top: 0;
	}

	.hero__menu--left {
		display: none;
	}

	.hero__menu--right {
		width: auto;
		margin-left: auto;
		gap: 18px;
		padding: 10px 14px;
		border: 1px solid rgba(243, 242, 238, 0.35);
		border-radius: 12px;
		background: rgba(22, 22, 22, 0.38);
		backdrop-filter: blur(10px);
	}

	.hero__title {
		top: auto;
		bottom: 78px;
		font-size: clamp(36px, 5vw, 48px);
	}

	.hero__play {
		width: 64px;
	}

	.about__watermark {
		left: 50%;
		top: -36px;
		width: min(56vw, 610px);
		height: auto;
		transform: translateX(-50%);
		opacity: 0.4;
	}

	.about__lead {
		font-size: 23px;
	}

	.stats {
		gap: 18px;
	}

	.stats__item {
		width: min(100%, 32%);
	}

	.stats__item h3 {
		font-size: clamp(40px, 4.5vw, 54px);
	}

	.stats__item p {
		font-size: 20px;
	}

	.focus-cards {
		margin-top: 112px;
	}

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

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

	.event-card {
		grid-template-columns: 1fr;
		margin-top: 26px;
	}

	.event-card__media {
		aspect-ratio: 16 / 9;
	}

	.event-card__content {
		min-height: 280px;
		gap: 22px;
	}

	.event-card .btn {
		margin-top: 0;
	}

	.event-card__link {
		margin-left: 0;
	}

	.learning-grid {
		margin-top: 28px;
		padding-left: 16px;
		padding-right: 16px;
		gap: 10px;
	}

	.learning-card {
		flex-basis: min(84vw, 340px);
		min-height: 260px;
		height: auto;
	}

	.learning-card__content {
		min-height: 260px;
	}

	.learning-card__header {
		padding: 20px 20px 11px;
	}

	.learning-card__header h3 {
		font-size: 18px;
		max-width: 220px;
	}

	.learning-card__panel {
		padding: 0 20px 20px;
	}

	.learning-card__divider {
		margin-bottom: 10px;
	}

	.learning-card__list li {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.reviews {
		margin-top: 112px;
	}

	.reviews-grid {
		max-height: 600px;
	}

	.review {
		border-radius: 26px;
		padding: 26px 20px;
	}

	.review--short,
	.review--short-large,
	.review--short-mid,
	.review--mid,
	.review--tall {
		height: auto;
	}

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

	.b2b-card {
		min-height: 0;
	}

	.page--home .b2b-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 24px;
		row-gap: 24px;
		padding-inline: 0;
	}

	.page--home .b2b-card {
		height: auto;
		min-height: 0;
		padding: 14px 16px 18px;
	}

	.page--home .b2b-card h3 {
		max-width: none;
		font-size: 22px;
	}

	.page--home .b2b-card__list li {
		font-size: 15px;
	}

	.b2b .btn {
		margin-top: 34px;
	}

	.team {
		margin-top: 112px;
	}

	.team-slider__viewport {
		overflow-x: auto;
		padding-bottom: 8px;
		scrollbar-width: none;
	}

	.team-slider__viewport::-webkit-scrollbar {
		display: none;
	}

	.team-slider__track {
		gap: 20px;
		width: max-content;
		transform: none !important;
	}

	.team-card {
		width: 280px;
	}

	.team-slider__controls {
		display: none;
	}

	.partners {
		margin-top: 112px;
	}

	.partners__strip {
		margin-top: 36px;
	}

	.contact {
		margin-top: 40px;
		min-height: 0;
		padding: 72px 0 52px;
	}

	.contact__content {
		padding-top: 0;
	}

	.contact-form {
		margin-top: 36px;
	}

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

	.footer__brand {
		order: 3;
		grid-column: 1 / -1;
		align-items: flex-start;
	}

	.footer__brand > a:nth-child(2) {
		margin-top: 26px;
		text-align: left;
	}

	.footer__brand > a:nth-child(3) {
		margin-top: 12px;
		text-align: left;
	}

	.footer__contacts {
		text-align: left;
	}

	.footer__contacts h3 {
		margin-left: 0;
	}

	.footer__social {
		justify-content: flex-start;
	}
}

@media (max-width: 767px) {
	.container {
		width: min(100% - 32px, 1240px);
	}

	.section {
		margin-top: 88px;
	}

	.section-kicker {
		font-size: 16px;
	}

	.section-title {
		margin-top: 16px;
		font-size: clamp(24px, 8vw, 32px);
	}

	.section-title--light {
		margin-top: 16px;
	}

	.section-lead {
		margin-top: 12px;
		font-size: 18px;
		line-height: 1.4;
	}

	.page.page--home .section-kicker {
		font-size: 40px;
		line-height: 0.95;
	}

	.page.page--home .section-title {
		margin-top: 12px;
		font-size: 24px;
		line-height: 1.15;
		text-transform: none;
	}

	.page--home .congress .section-kicker {
		font-size: 40px;
		line-height: 0.95;
	}

	.page--home .congress .section-title {
		margin-top: 12px;
		font-size: 24px;
		line-height: 1.15;
		text-transform: none;
	}

	.page.page--home .section-title--light {
		margin-top: 12px;
	}

	.page.page--home .section-lead {
		margin-top: 16px;
		font-size: 18px;
		line-height: 1.3;
	}

	.btn {
		height: 42px;
		font-size: 15px;
	}

	.hero {
		height: 620px;
	}

	.hero__nav {
		top: 18px;
		width: calc(100% - 32px);
		gap: 12px;
	}

	.hero__logo {
		width: 156px;
		height: auto;
	}

	.hero__logo img {
		width: 156px;
		height: auto;
	}

	.hero__menu--right {
		width: 100%;
		margin-left: 0;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 10px 16px;
		padding: 10px 12px;
	}

	.menu-link {
		font-size: 14px;
	}

	.hero__actions {
		gap: 6px;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b) .hero {
		overflow: visible;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b) .hero__nav {
		top: 28px;
		width: calc(100% - 32px);
		align-items: flex-start;
		flex-wrap: nowrap;
		gap: 0;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b) .hero__logo {
		width: 154px;
		height: 48px;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b) .hero__logo img {
		width: 154px;
		height: 48px;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b) .hero__menu--left,
	.page:is(.page--home, .page--congress, .page--education, .page--b2b) .hero__menu--right {
		display: none;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b) .hero__burger {
		display: inline-flex;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b).is-mobile-menu-open .hero__nav {
		position: fixed;
		inset: 0;
		left: 0;
		width: 100%;
		height: 100dvh;
		transform: none;
		padding: 28px 16px 72px;
		background: #f6f2ee;
		z-index: 50;
		display: flex;
		flex-wrap: wrap;
		align-content: flex-start;
		justify-content: space-between;
		overflow-y: auto;
		overscroll-behavior: contain;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b).is-mobile-menu-open .hero__nav::after {
		content: '';
		position: absolute;
		left: 16px;
		width: calc(100% - 32px);
		bottom: 28px;
		height: auto;
		aspect-ratio: 610 / 408;
		background: url('assets/images/b2b/watermark-ed.svg') center bottom / contain no-repeat;
		opacity: 0.95;
		pointer-events: none;
		z-index: 0;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b).is-mobile-menu-open .hero__nav > * {
		position: relative;
		z-index: 1;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b).is-mobile-menu-open .hero__logo {
		order: 1;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b).is-mobile-menu-open .hero__burger {
		order: 2;
		--burger-color: #22181b;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b).is-mobile-menu-open .hero__menu--left,
	.page:is(.page--home, .page--congress, .page--education, .page--b2b).is-mobile-menu-open .hero__menu--right {
		display: flex;
		width: 100%;
		margin-top: 0;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b).is-mobile-menu-open .hero__menu--left {
		order: 3;
		margin-top: 48px;
		gap: 16px;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b).is-mobile-menu-open .hero__menu--right {
		order: 4;
		margin-top: 24px;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b).is-mobile-menu-open .hero__burger-label {
		display: none;
	}

	.is-mobile-menu-open .menu-dropdown {
		width: min(100%, 343px);
	}

	.is-mobile-menu-open .menu-link,
	.is-mobile-menu-open .menu-trigger {
		color: #22181b;
		font-size: 16px;
		line-height: 1.3;
	}

	.is-mobile-menu-open .menu-trigger {
		display: inline-flex;
		width: auto;
		justify-content: flex-start;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		transition: opacity 0.2s ease;
	}

	.is-mobile-menu-open .menu-trigger:focus-visible {
		outline: 1px solid #22181b;
		outline-offset: 4px;
	}

	.is-mobile-menu-open .menu-dropdown.is-open .menu-trigger {
		color: #22181b;
		opacity: 1;
	}

	.is-mobile-menu-open .menu-trigger.has-caret::after {
		margin-left: 8px;
	}

	.is-mobile-menu-open .menu-dropdown__panel-wrap {
		position: static;
		top: auto;
		left: auto;
		width: 100%;
		margin-top: 0;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
		transform: none;
		max-height: 0;
		opacity: 0;
		pointer-events: none;
		overflow: hidden;
		transition:
			max-height 0.34s ease,
			opacity 0.24s ease,
			margin-top 0.24s ease;
	}

	.is-mobile-menu-open .menu-dropdown__panel {
		width: 100%;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
	}

	.is-mobile-menu-open .menu-dropdown.is-open .menu-dropdown__panel-wrap {
		transform: none;
		max-height: 220px;
		margin-top: 8px;
		opacity: 1;
		pointer-events: auto;
	}

	.is-mobile-menu-open .menu-dropdown__item {
		display: block;
		min-height: 0;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		color: rgba(34, 24, 27, 0.82);
		font-size: 14px;
		font-weight: 400;
		line-height: 1.25;
		text-transform: none;
		opacity: 0;
		transform: translateY(-2px);
		transition:
			color 0.2s ease,
			transform 0.2s ease,
			opacity 0.2s ease;
	}

	.is-mobile-menu-open .menu-dropdown.is-open .menu-dropdown__item {
		opacity: 1;
		transform: translateY(0);
	}

	.is-mobile-menu-open .menu-dropdown.is-open .menu-dropdown__item:nth-child(2) {
		transition-delay: 0.04s;
	}

	.is-mobile-menu-open .menu-dropdown.is-open .menu-dropdown__item:nth-child(3) {
		transition-delay: 0.08s;
	}

	.is-mobile-menu-open .menu-dropdown__item + .menu-dropdown__item {
		margin-top: 10px;
	}

	.is-mobile-menu-open .menu-dropdown__item:hover,
	.is-mobile-menu-open .menu-dropdown__item:focus-visible {
		background: transparent;
		color: #22181b;
		transform: translateX(2px);
	}

	.hero__play {
		width: 64px;
	}

	.hero__title {
		width: calc(100% - 32px);
		bottom: 48px;
		font-size: clamp(25px, 8vw, 35px);
	}

	.page.page--home .hero__title {
		font-size: 36px;
		line-height: 1.1;
	}

	.about__watermark {
		width: min(68vw, 430px);
	}

	.about__lead {
		margin-top: 18px;
		font-size: 20px;
		line-height: 1.4;
	}

	.stats {
		margin-top: 28px;
		flex-direction: column;
		gap: 22px;
	}

	.stats__item {
		width: 100%;
		text-align: left;
	}

	.page--home .about__watermark {
		display: none;
	}

	.page--home .about__lead {
		max-width: 100%;
		margin-top: 24px;
		font-size: 21px;
		line-height: 1.4;
	}

	.page--home .about__lead-strong {
		margin: 6px 0 4px;
		font-size: 1.18em;
		font-weight: 500;
	}

	.page--home .about .stats {
		margin-top: 34px;
		align-items: center;
		gap: 0;
		z-index: 0;
		isolation: isolate;
	}

	.page--home .about .stats::before {
		content: '';
		position: absolute;
		left: 50%;
		top: 24px;
		width: min(88vw, 332px);
		height: 224px;
		transform: translateX(-50%);
		background: url('assets/images/about-watermark.webp') center center / contain no-repeat;
		opacity: 0.32;
		pointer-events: none;
		z-index: 0;
	}

	.page--home .about .stats__item {
		position: relative;
		z-index: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		padding: 18px 0 20px;
		text-align: center;
	}

	.page--home .about .stats__item:last-child {
		padding-bottom: 0;
	}

	.page--home .about .stats__line {
		align-self: stretch;
		background: rgba(163, 163, 163, 0.5);
	}

	.page--home .about .stats__item h3 {
		margin-top: 14px;
		font-size: 58px;
		line-height: 0.95;
		letter-spacing: -0.05em;
	}

	.page--home .about .stats__item p {
		max-width: 280px;
		margin-top: 6px;
		font-size: 14px;
		font-weight: 700;
		line-height: 1.05;
	}

	.stats__item h3 {
		margin-top: 12px;
		font-size: 42px;
	}

	.stats__item p {
		font-size: 20px;
		font-weight: normal;
	}

	.focus-cards {
		margin-top: 88px;
		width: 100%;
	}

	.focus-cards__row {
		grid-template-columns: 1fr;
		gap: 1px;
	}

	.focus-card,
	.focus-card:last-child {
		grid-column: auto;
		padding: 20px 16px 0;
		min-height: 0;
	}

	.focus-card__title {
		height: auto;
	}

	.focus-card__title span,
	.focus-card__title h3 {
		font-size: 20px;
	}

	.focus-card__media {
		margin-top: 14px;
		height: 280px;
	}

	.event-card__content {
		padding: 24px 18px;
	}

	.event-card__content h3 {
		font-size: 22px;
	}

	.page--home .congress.container {
		width: min(100% - 32px, 1240px);
	}

	.page.page--home .section-kicker {
		font-size: 28px;
		line-height: 1.1;
	}

	.page.page--home .section-title {
		margin-top: 12px;
		font-size: 20px;
		line-height: 1.15;
		text-transform: none;
	}

	.page--home .congress .section-lead {
		margin-top: 16px;
		font-size: 22px;
		line-height: 1.35;
	}

	.page--home .congress .event-card {
		margin-top: 40px;
	}

	.page--home .congress .event-card__media {
		height: 234px;
		aspect-ratio: auto;
		overflow: hidden;
	}

	.page--home .congress .event-card__media-image {
		display: none;
	}

	.page--home .congress .event-card__media-mobile {
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
	}

	.page--home .congress .event-card__media-mobile::after {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(0, 0, 0, 0) 49.18%, rgba(0, 0, 0, 0.4) 100%);
		pointer-events: none;
	}

	.page--home .congress .event-card__media-mobile-bg {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center 43%;
	}

	.page--home .congress .event-card__media-mobile-logo {
		position: absolute;
		top: 32px;
		left: 32px;
		width: 185px;
		height: auto;
		z-index: 1;
	}

	.page--home .congress .event-card__media-mobile-copy {
		position: absolute;
		left: 32px;
		right: 10px;
		bottom: 32px;
		max-width: 301px;
		font-size: 14px;
		font-weight: 400;
		line-height: 1.3;
		color: #fff;
		z-index: 1;
	}

	.page--home .congress .event-card__content {
		min-height: 398px;
		padding: 32px;
		gap: 0;
		background: #22181b;
	}

	.page--home .congress .event-card__content h3 {
		margin-top: 16px;
		font-size: 20px;
		line-height: 1.1;
	}

	.page--home .congress .event-card .btn {
		margin-top: 32px;
	}

	.page--home .congress .event-card__link {
		margin-top: 60px;
		margin-left: 0;
		text-decoration-line: underline;
		text-decoration-thickness: 1px;
		text-underline-offset: 4px;
	}

	.learning-grid {
		margin-top: 24px;
		padding-right: 30px;
		align-items: stretch;
	}

	.reviews {
		width: min(100% - 32px, 1030px);
		margin-top: 88px;
	}

	.reviews-grid {
		margin-top: 24px;
		display: block;
		max-height: 480px;
	}

	.reviews-column {
		width: 100%;
		gap: 16px;
	}

	.reviews-column + .reviews-column {
		margin-top: 16px;
	}

	.review {
		padding: 24px 18px;
		border-radius: 24px;
		font-size: 15px;
	}

	.reviews-grid__fade {
		height: 120px;
	}

	.reviews__more {
		margin-top: 20px;
		font-size: 15px;
	}

	.b2b-grid {
		margin-top: 24px;
		grid-template-columns: 1fr;
		gap: 0;
	}

	.page--home .b2b-grid {
		grid-template-columns: 1fr;
		column-gap: 0;
		row-gap: 20px;
	}

	.page--home .b2b-card {
		height: auto;
		min-height: 0;
		padding: 16px;
	}

	.page--home .b2b-card + .b2b-card {
		border-top: 0;
	}

	.page--home .b2b-card h3 {
		font-size: 21px;
	}

	.page--home .b2b-card__list {
		padding-left: 18px;
	}

	.page--home .b2b-card__list li {
		font-size: 15px;
	}

	.b2b-card {
		padding: 16px;
	}

	.b2b-card + .b2b-card {
		border-top: 0;
	}

	.b2b-card h3 {
		font-size: 21px;
	}

	.b2b-card__list {
		padding-left: 18px;
	}

	.b2b-card__list li {
		font-size: 15px;
	}

	.b2b .btn {
		margin-top: 28px;
	}

	.team {
		margin-top: 88px;
	}

	.team-slider__track {
		gap: 14px;
	}

	.team-card {
		width: min(72vw, 280px);
	}

	.team-card img {
		width: 100%;
		height: auto;
		aspect-ratio: 295 / 407;
	}

	.team-card h3 {
		font-size: 20px;
		min-height: 0;
	}

	.team-card p {
		min-height: 0;
	}

	.partners {
		margin-top: 88px;
	}

	.partners h2 {
		font-size: 20px;
	}

	.partners__strip {
		margin-top: 24px;
	}

	.partners__track {
		animation-duration: 29s;
	}

	.partners__track img {
		width: max(728px, 130vw);
		flex-basis: max(728px, 130vw);
	}

	.contact {
		margin-top: 28px;
		min-height: 786px;
		padding: 0;
	}

	.contact__bg {
		object-position: 66% 57%;
	}

	.contact__content {
		padding-top: 100px;
	}

	.contact-form {
		margin-top: 28px;
		gap: 16px;
	}

	.line-field,
	.line-field:last-of-type {
		width: 100%;
	}

	.btn--contact {
		width: 100%;
		margin: 8px 0 0;
	}

	.footer {
		padding-bottom: 32px;
	}

	.footer__grid {
		padding-top: 34px;
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.footer__brand {
		display: contents;
	}

	.footer__grid > section:first-child {
		order: 2;
	}

	.footer__contacts {
		order: 3;
	}

	.footer__brand > a {
		justify-self: start;
	}

	.footer__brand > a:first-child {
		order: 1;
	}

	.footer__brand > a:nth-child(2) {
		order: 4;
		margin-top: 0;
		text-align: left;
		font-size: 14px;
		line-height: 1.3;
	}

	.footer__brand > a:nth-child(3) {
		order: 5;
		margin-top: -12px;
		text-align: left;
		font-size: 14px;
		line-height: 1.3;
	}

	.footer h3 {
		font-size: 22px;
	}

	.page--home .footer h3 {
		font-size: 20px;
	}

	.footer__links {
		margin-top: 18px;
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}

	.footer__links ul {
		gap: 14px;
	}

	.footer__social {
		margin-top: 18px;
		font-size: 20px;
	}

	.footer__social + .footer__social {
		margin-top: 14px;
	}

	.footer__contacts > a:nth-of-type(3) {
		margin-top: 20px;
	}

	.footer__contacts > a:nth-of-type(4) {
		margin-top: 10px;
	}

	/* Mobile overrides: make hero full viewport, left-align title, sharpen burger bars, center header */
	.page:is(.page--home, .page--congress, .page--education, .page--b2b) .hero {
		height: 100dvh;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b) .hero__title {
		left: 16px;
		right: 16px;
		top: auto;
		bottom: 34px;
		transform: none;
		width: auto;
		text-align: left;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b) .hero__nav {
		align-items: center;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b) .hero__burger {
		display: inline-flex;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b) .hero__burger {
		height: 35px;
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b) .hero__burger-icon span {
		border-radius: 0;
	}
}

@media (max-width: 479px) {
	.container {
		width: min(100% - 24px, 1240px);
	}

	.hero {
		height: 580px;
	}

	.hero__nav {
		width: calc(100% - 24px);
	}

	.page:is(.page--home, .page--congress, .page--education, .page--b2b) .hero__nav {
		width: calc(100% - 32px);
	}

	.hero__menu--right {
		justify-content: flex-start;
	}

	.menu-link {
		font-size: 13px;
	}

	.hero__title {
		width: calc(100% - 24px);
		bottom: 34px;
	}

	.about__lead {
		font-size: 18px;
	}

	.stats__item h3 {
		font-size: 36px;
	}

	.focus-card__media {
		height: 240px;
	}

	.review {
		padding: 20px 16px;
	}

	.team-card {
		width: min(82vw, 280px);
	}
}

/* Congress page */
.page--congress {
	background: var(--bg);
}

.congress-hero {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	min-height: 860px;
	overflow: hidden;
	background: #191212;
	color: #fff;
}

.congress-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.05);
}

.congress-hero__veil {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 76% 28%, rgba(194, 72, 42, 0.42), transparent 38%),
		linear-gradient(180deg, rgba(18, 13, 13, 0.42) 0%, rgba(18, 13, 13, 0.78) 52%, rgba(18, 13, 13, 0.95) 100%);
}

.congress-hero .hero__nav {
	z-index: 6;
}

.congress-hero .hero__menu--left,
.congress-hero .hero__menu--right {
	width: auto;
	gap: 24px;
}

.congress-hero__content {
	position: relative;
	z-index: 5;
	padding-top: 170px;
	padding-bottom: 128px;
	max-width: 1240px;
}

.congress-hero__meta {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	margin: 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 0.01em;
}

.congress-hero__meta span {
	padding-bottom: 4px;
	border-bottom: 1px solid rgba(243, 242, 238, 0.6);
}

.congress-hero__eyebrow {
	margin-top: 72px;
	font-family: 'Unbounded', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

.congress-hero__brand {
	margin-top: 8px;
	font-family: 'Unbounded', sans-serif;
	font-size: clamp(52px, 8.2vw, 132px);
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
}

.congress-hero__title {
	margin-top: 26px;
	width: min(100%, 820px);
	font-family: 'Unbounded', sans-serif;
	font-size: clamp(24px, 3.4vw, 42px);
	font-weight: 400;
	line-height: 1.12;
	text-transform: uppercase;
}

@media (max-width: 576px) {
	.learning-card__item-link {
		width: 100%;
	}
}

.congress-hero__cta {
	width: auto;
	margin-top: 34px;
	padding-inline: 34px;
	border-color: #c2482a;
	border-radius: 999px;
	background: #c2482a;
	color: #fff;
}

.congress-hero__cta:hover {
	background: #a83f25;
	box-shadow: 0 14px 28px rgba(14, 9, 9, 0.35);
}

/* Congress event slider */
.congress-page__event-media {
	position: relative;
	overflow: visible;
}

.congress-event-slider {
	position: relative;
	width: 100%;
	aspect-ratio: 820 / 398;
	overflow: hidden;
	background: #000;
}

.congress-event-slider__viewport {
	position: relative;
	width: 100%;
	height: 100%;
}

.congress-event-slider__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transform: scale(1.02);
	transition:
		opacity 0.65s ease,
		transform 0.65s ease;
}

.congress-event-slider__img.is-active {
	opacity: 1;
	transform: scale(1);
}

.congress-event-slider__controls {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	pointer-events: none;
	z-index: 2;
}

.congress-event-slider__arrow {
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid rgba(243, 242, 238, 0.48);
	border-radius: 999px;
	background: rgba(34, 24, 27, 0.42);
	text-align: center;
	cursor: pointer;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease;
}

.congress-event-slider__arrow:hover,
.congress-event-slider__arrow:focus-visible {
	transform: translateY(-1px);
	background: rgba(34, 24, 27, 0.58);
	border-color: rgba(243, 242, 238, 0.72);
	outline: none;
}

.congress-event-slider__arrow:active {
	transform: translateY(0);
}

.congress-event-slider__arrow svg {
	display: block;
	width: 14px;
	height: 12px;
	color: #f3f2ee;
}

.congress-event-slider__arrow--prev svg {
	transform: rotate(180deg);
}

.congress-intro .section-lead {
	margin-top: 20px;
}

.congress-intro__stats {
	margin-top: 44px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.congress-intro__stats article {
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 24px;
}

.congress-intro__stats h3 {
	font-family: 'Unbounded', sans-serif;
	font-size: 42px;
	font-weight: 400;
	line-height: 1.1;
}

.congress-intro__stats p {
	margin-top: 10px;
	font-size: 16px;
	line-height: 1.3;
}

.congress-program__grid {
	margin-top: 34px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.congress-program__card {
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: 28px 24px;
}

.congress-program__day {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	text-transform: uppercase;
	color: rgba(34, 24, 27, 0.72);
}

.congress-program__card h3 {
	margin-top: 10px;
	font-family: 'Unbounded', sans-serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
}

.congress-program__card ul {
	margin: 16px 0 0;
	padding-left: 20px;
}

.congress-program__card li {
	margin-top: 8px;
	font-size: 16px;
	line-height: 1.3;
}

.congress-program__card li:first-child {
	margin-top: 0;
}

.congress-tickets__grid {
	margin-top: 34px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.ticket-card {
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
}

.ticket-card__name {
	font-family: 'Unbounded', sans-serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
}

.ticket-card__price {
	margin-top: 12px;
	font-family: 'Unbounded', sans-serif;
	font-size: 40px;
	font-weight: 400;
	line-height: 1.1;
}

.ticket-card__desc {
	margin-top: 14px;
	font-size: 16px;
	line-height: 1.3;
}

.ticket-card .btn {
	width: 100%;
	margin-top: 26px;
}

.ticket-card--accent {
	border-color: #22181b;
	background: #22181b;
	color: #f3f2ee;
}

.ticket-card--accent .ticket-card__desc {
	color: rgba(243, 242, 238, 0.85);
}

.congress-speakers__grid {
	margin-top: 34px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.congress-speaker {
	border: 1px solid var(--line);
	border-radius: 18px;
	overflow: hidden;
	background: #faf7f4;
}

.congress-speaker img {
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.congress-speaker h3 {
	padding: 16px 16px 0;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.1;
}

.congress-speaker p {
	padding: 8px 16px 16px;
	font-size: 14px;
	line-height: 1.3;
}

@media (max-width: 1199px) {
	.congress-hero {
		min-height: 740px;
	}

	.congress-hero .hero__menu--right {
		gap: 18px;
	}

	.congress-hero__content {
		padding-top: 146px;
		padding-bottom: 92px;
	}

	.congress-hero__eyebrow {
		margin-top: 52px;
	}

	.congress-intro__stats,
	.congress-program__grid,
	.congress-tickets__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.congress-program__card:last-child,
	.ticket-card:last-child {
		grid-column: 1 / -1;
	}

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

@media (max-width: 767px) {
	.congress-hero {
		min-height: 680px;
	}

	.congress-hero .hero__menu--right {
		width: 100%;
		margin-left: 0;
		justify-content: space-between;
		gap: 10px 16px;
	}

	.congress-hero__content {
		padding-top: 132px;
		padding-bottom: 74px;
	}

	.congress-hero__meta {
		gap: 8px 14px;
		font-size: 13px;
	}

	.congress-hero__eyebrow {
		margin-top: 38px;
		font-size: 13px;
		letter-spacing: 0.13em;
	}

	.congress-hero__title {
		width: 100%;
	}

	.congress-hero__cta {
		width: 100%;
		max-width: 360px;
	}

	.congress-intro__stats,
	.congress-program__grid,
	.congress-tickets__grid,
	.congress-speakers__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.congress-program__card:last-child,
	.ticket-card:last-child {
		grid-column: auto;
	}

	.congress-speaker img {
		height: 280px;
	}
}

@media (max-width: 479px) {
	.congress-hero {
		min-height: 640px;
	}

	.congress-hero .hero__menu--right {
		justify-content: flex-start;
	}

	.congress-hero__content {
		padding-top: 124px;
	}

	.congress-hero__brand {
		letter-spacing: -0.02em;
	}

	.congress-intro__stats h3,
	.ticket-card__price {
		font-size: 34px;
	}

	.congress-program__card,
	.ticket-card {
		border-radius: 18px;
		padding: 22px 18px;
	}
}

/* Congress page (Figma node 213:1257) */
.page--congress {
	background: var(--bg);
}

.page--congress .hero__nav {
	position: relative;
	top: auto;
	left: auto;
	transform: none;
	width: min(100% - 40px, 1258px);
	justify-content: flex-start;
}

.page--congress .menu-link {
	color: var(--text);
}

.page--congress .has-caret::after {
	color: var(--text);
}

.page--congress .hero__menu--left {
	width: 427px;
	gap: 29px;
	margin-right: 60px;
}

.page--congress .hero__logo {
	margin-right: 60px;
}

.page--congress .hero__menu--right {
	width: 500px;
	gap: 22px;
	justify-content: flex-start;
}

.congress-page__hero {
	padding-top: 32px;
}

.congress-page__hero-content {
	padding-top: 46px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

.congress-page__hero-content h1 {
	width: 100%;
	font-family: 'Unbounded', sans-serif;
	font-size: 54px;
	font-weight: 500;
	line-height: 1.1;
	text-transform: uppercase;
}

.congress-page__hero-content p {
	width: 100%;
	margin-top: 32px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
}

.congress-page__hero-btn.btn--dark {
	width: auto;
	padding-inline: 24px;
	margin-top: 24px;
}

.congress-page__mosaic {
	--congress-mosaic-gap: 8px;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-top: 46px;
	overflow: hidden;
}

.congress-page__mosaic-inner {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: var(--congress-mosaic-gap);
}

.congress-page__mosaic-row {
	display: flex;
	width: max-content;
	gap: var(--congress-mosaic-gap);
	will-change: transform;
	transform: translateZ(0);
}

.congress-page__mosaic-row--top {
	margin-left: -203px;
}

.congress-page__mosaic-row--bottom {
	margin-left: -11px;
}

.congress-page__mosaic-row.is-marquee-ready {
	gap: 0;
}

.congress-page__mosaic-row.is-marquee-ready:not(.is-js-marquee) {
	animation-duration: var(--congress-mosaic-duration, 34s);
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-play-state: running;
}

.congress-page__mosaic-row--top.is-marquee-ready {
	animation-name: congress-mosaic-scroll-left;
}

.congress-page__mosaic-row--bottom.is-marquee-ready {
	animation-name: congress-mosaic-scroll-right;
}

.congress-page__mosaic-track {
	display: flex;
	gap: var(--congress-mosaic-gap);
	padding-right: var(--congress-mosaic-gap);
	flex: 0 0 auto;
	transform: translateZ(0);
}

@keyframes congress-mosaic-scroll-left {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(calc(-1 * var(--congress-mosaic-shift, 50%)), 0, 0);
	}
}

@keyframes congress-mosaic-scroll-right {
	from {
		transform: translate3d(calc(-1 * var(--congress-mosaic-shift, 50%)), 0, 0);
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.congress-page__mosaic-card {
	margin: 0;
	flex: 0 0 295px;
	height: 320px;
	overflow: hidden;
	contain: paint;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translateZ(0);
}

.congress-page__mosaic-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translateZ(0);
}

.congress-page__value {
	margin-top: 145px;
}

.congress-page__value .section-title {
	margin-top: 24px;
	max-width: 1052px;
}

.congress-page__value .section-lead {
	margin-top: 16px;
	font-size: 16px;
}

.congress-page__benefits {
	margin-top: 73px;
}

.congress-page__benefits-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	padding: 24px 0;
	border-bottom: 1px solid var(--line);
	border-right: 1px solid var(--line);
}

.congress-page__benefits-row--bottom {
	height: 274px;
}

.congress-page__benefit {
	height: 100%;
	padding: 0 20px;
	border-left: 1px solid var(--line);
	border-right: 0;
}

.congress-page__benefit-icon {
	display: inline-flex;
	width: 46px;
	height: 46px;
	color: var(--text);
}

.congress-page__benefits-row:first-child .congress-page__benefit:nth-child(2) .congress-page__benefit-icon {
	width: 48px;
}

.congress-page__benefit-icon svg {
	width: 100%;
	height: 100%;
}

.congress-page__benefit-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.congress-page__benefit h3 {
	margin-top: 8px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
}

.congress-page__benefit ul {
	margin: 16px 0 0;
	padding-left: 24px;
}

.congress-page__benefit li {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
}

.congress-page__benefit li + li {
	margin-top: 8px;
}

.congress-page__upcoming {
	margin-top: 140px;
}

.congress-page__upcoming-title {
	font-family: 'Unbounded', sans-serif;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
}

.congress-page__event-card {
	margin-top: 24px;
	display: grid;
	grid-template-columns: minmax(0, 820px) minmax(0, 420px);
	align-items: stretch;
}

.congress-page__event-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.congress-page__event-media,
.congress-page__event-content {
	height: 100%;
}

.congress-page__event-content {
	padding: 32px;
	background: #22181b;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.congress-page__event-content p {
	margin: 0;
	width: 356px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	color: #eaeaea;
}

.congress-page__event-content h3 {
	margin-top: 16px;
	width: 356px;
	font-family: 'Unbounded', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
}

.congress-page__event-content .btn {
	margin-top: 32px;
}

.congress-page__request {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-top: 140px;
	min-height: 512px;
	color: #fff;
}

.congress-page__request-bg,
.congress-page__request-overlay {
	position: absolute;
	inset: 0;
}

.congress-page__request-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.congress-page__request-overlay {
	background: rgba(0, 0, 0, 0.74);
	z-index: 1;
	pointer-events: none;
}

/* Optional modifier: shift background focus ~20% from the left (appears visually shifted right) */
.congress-page__request--shift-right .congress-page__request-bg,
.congress-page__request.shift-right .congress-page__request-bg {
	object-position: 20% center;
}

.congress-page__request-content {
	position: relative;
	z-index: 2;
	padding-top: 80px;
	padding-bottom: 80px;
}

.congress-page__request-content .section-title {
	max-width: none;
}

.congress-page__request-lead {
	margin-top: 16px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.02em;
}

.contact-form.congress-page__request-form {
	margin-top: 60px;
	display: flex;
	align-items: center;
	gap: 83px;
	flex-wrap: nowrap;
}

.congress-page__request-fields {
	width: min(100%, 925px);
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px 23px;
}

.congress-page__line-field {
	display: block;
}

.congress-page__line-field--wide {
	grid-column: 1 / -1;
}

.congress-page__line-field span {
	display: block;
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.02em;
	color: #fff;
}

.congress-page__line-field input {
	width: 100%;
	height: 33px;
	padding: 0;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.9);
	background: transparent;
	color: #fff;
	font: inherit;
}

.congress-page__line-field input:focus {
	outline: none;
	border-bottom-color: #fff;
}

.congress-page__request-submit.btn--light {
	width: 186px;
	min-height: 45px;
	background: transparent;
}

.congress-page__request-submit.btn--light:hover {
	background: transparent;
}

.congress-page__archive {
	margin-top: 140px;
	min-height: 355px;
}

.congress-page__archive-title {
	margin: 0;
	font-family: 'Unbounded', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
}

.congress-page__archive-years {
	margin-top: 24px;
	display: flex;
	align-items: center;
	gap: 94px;
}

.congress-page__archive-year {
	padding: 0;
	border: 0;
	background: transparent;
	font-family: 'Unbounded', sans-serif;
	font-size: 46px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
	color: #ddd6cf;
	cursor: pointer;
	transition: color 0.2s ease;
}

.congress-page__archive-year.is-active {
	color: #22181b;
}

.congress-page__archive-year:focus-visible {
	outline: 1px solid rgba(34, 24, 27, 0.45);
	outline-offset: 4px;
}

.congress-page__archive-panels {
	margin-top: 19px;
	margin-left: -12px;
	display: grid;
	grid-template-columns: 240px 240px 260px;
	column-gap: 17px;
	min-height: 210px;
}

.congress-page__archive-panel {
	display: none;
}

.congress-page__archive-panel.is-open {
	display: block;
}

.congress-page__archive-items {
	margin: 0;
	padding-left: 36px;
}

.congress-page__archive-items li {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.1;
}

.congress-page__archive-items li + li {
	margin-top: 18px;
}

.congress-page__archive-panel[data-year='2023'] .congress-page__archive-items li {
	max-width: 240px;
}

.congress-page__archive-links {
	margin-top: 15px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.congress-page__archive-item {
	width: 610px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #ddd6cf;
	color: #22181b;
	text-decoration: none;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.02em;
}

.congress-page__archive-item img {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.congress-gallery {
	--congress-gallery-collapsed-height: 980px;
	/* margin-top: 24px; */
}

.congress-gallery.is-hidden {
	display: none;
}

.congress-gallery__title {
	font-family: 'Unbounded', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
	display: none !important;
}

.congress-gallery__shell {
	position: relative;
	max-height: var(--congress-gallery-collapsed-height);
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.congress-gallery.is-expanded .congress-gallery__shell {
	max-height: 10000px;
}

.congress-gallery__year {
	display: none;
}

.congress-gallery__year.is-open {
	display: block;
}

.congress-gallery__grid {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.congress-gallery__card {
	margin: 0;
}

.congress-gallery__link {
	position: relative;
	display: block;
	overflow: hidden;
	height: 300px;
	border-radius: 18px;
	background: #d9d9d9;
	contain: paint;
}

.congress-gallery__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transform: scale(1.01);
	transition: transform 0.5s ease;
}

.congress-gallery__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
	pointer-events: none;
}

.congress-gallery__link:hover .congress-gallery__img,
.congress-gallery__link:focus-visible .congress-gallery__img {
	transform: scale(1.05);
}

.congress-gallery__link:focus-visible {
	outline: 1px solid rgba(34, 24, 27, 0.35);
	outline-offset: 4px;
}

.congress-gallery__fade {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 160px;
	background: linear-gradient(180deg, rgba(246, 242, 238, 0) 0%, rgba(246, 242, 238, 0.92) 100%);
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.congress-gallery.is-expanded .congress-gallery__fade {
	opacity: 0;
}

.congress-gallery__more {
	display: block;
	border: 0;
	background: transparent;
	color: var(--text);
	width: fit-content;
	margin: 38px auto 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}

.partners--congress {
	margin-top: 122px;
}

.page--congress .footer {
	margin-top: 51px;
	padding-bottom: 24px;
	border-top: 1px solid var(--line);
}

.page--congress .footer__social {
	gap: 16px;
	font-weight: 600;
}

@media (max-width: 1199px) {
	.page--congress .hero__nav {
		justify-content: space-between;
	}

	.page--congress .hero__menu--left {
		margin-right: 0;
	}

	.page--congress .hero__logo {
		margin-right: 0;
	}

	.page--congress .hero__menu--right {
		width: auto;
		gap: 18px;
		justify-content: flex-start;
	}

	.congress-page__hero {
		padding-top: 24px;
	}

	.congress-page__hero-content {
		padding-top: 42px;
	}

	.congress-page__hero-content h1 {
		font-size: clamp(38px, 6vw, 54px);
	}

	.congress-page__mosaic-row--top,
	.congress-page__mosaic-row--bottom {
		margin-left: 0;
	}

	.congress-page__mosaic-card {
		flex-basis: 260px;
		height: 280px;
	}

	.congress-page__value {
		margin-top: 112px;
	}

	.congress-page__benefits {
		margin-top: 48px;
	}

	.congress-page__benefits-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		height: auto;
		padding: 0;
	}

	.congress-page__benefits-row:first-child,
	.congress-page__benefits-row--bottom {
		height: auto;
	}

	.congress-page__benefit {
		padding: 24px 20px;
	}

	.congress-page__benefits-row .congress-page__benefit:nth-child(3) {
		grid-column: 1 / -1;
	}

	.congress-page__upcoming {
		margin-top: 112px;
	}

	.congress-page__event-card {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.congress-page__event-media {
		/* match the slider aspect ratio on mobile to avoid gaps */
		aspect-ratio: 820 / 398;
	}

	.congress-page__event-content {
		min-height: 280px;
	}

	.congress-page__event-content p,
	.congress-page__event-content h3 {
		width: 100%;
	}

	.congress-page__request {
		margin-top: 112px;
		min-height: 0;
	}

	.congress-page__request-content {
		padding: 72px 0 64px;
	}

	.contact-form.congress-page__request-form {
		margin-top: 42px;
		flex-direction: column;
		align-items: flex-start;
		gap: 28px;
	}

	.congress-page__request-fields {
		width: 100%;
	}

	.congress-page__request-submit.btn--light {
		width: 220px;
	}

	.congress-page__archive {
		margin-top: 120px;
		min-height: 0;
	}

	.congress-page__archive-years {
		margin-top: 18px;
		gap: 56px;
	}

	.congress-page__archive-year {
		font-size: 38px;
	}

	.congress-page__archive-panels {
		margin-top: 20px;
		margin-left: 0;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		column-gap: 20px;
		min-height: 0;
	}

	.congress-page__archive-items li {
		font-size: 20px;
	}

	.congress-page__archive-links {
		margin-top: 20px;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.congress-page__archive-item {
		width: auto;
		font-size: 20px;
	}

	.partners--congress {
		margin-top: 112px;
	}
}

@media (max-width: 767px) {
	.page.page--congress .hero__nav {
		top: 0;
		margin-bottom: 32px;
	}

	.page--congress .section-kicker {
		font-size: 20px;
	}

	.page--congress .section-title {
		margin-top: 24px;
		font-size: 27px;
		line-height: 1.1;
	}

	.page--congress .section-title--light {
		margin-top: 24px;
	}

	.page--congress .section-lead {
		margin-top: 16px;
		font-size: 18px;
		line-height: 1.3;
	}

	.congress-page__hero-content {
		padding-top: 0;
		gap: 0;
	}

	.congress-page__hero-content h1 {
		font-size: 36px;
		max-width: 347px;
	}

	.congress-page__hero-content p {
		max-width: 347px;
		margin-top: 32px;
		font-size: 16px;
	}

	.congress-page__hero-btn.btn--dark {
		width: auto;
		min-width: 303px;
		max-width: 100%;
		margin-top: 24px;
	}

	.congress-page__mosaic {
		--congress-mosaic-gap: 8px;
		margin-top: 32px;
	}

	.congress-page__mosaic-card {
		flex-basis: 239px;
		height: 190px;
	}

	.congress-page__value {
		margin-top: 88px;
	}

	.congress-page__benefits-row {
		grid-template-columns: 1fr;
	}

	.congress-page__benefits-row .congress-page__benefit:nth-child(3) {
		grid-column: auto;
	}
	.congress-page__benefits-row {
		border-right: none !important;
		border-bottom: none !important;
	}

	.congress-page__benefit {
		padding: 22px 16px;
		border-left: none !important;
		border-right: none !important;
		border-bottom: 1px solid var(--line) !important;
	}

	.congress-page__benefit h3 {
		font-size: 20px;
	}

	.congress-page__benefit li {
		font-size: 15px;
	}

	.congress-page__upcoming-title {
		font-size: 27px;
	}

	.congress-page__event-card {
		margin-top: 18px;
	}

	.congress-page__event-content {
		padding: 24px 18px;
		min-height: 0;
	}

	.congress-page__event-content h3 {
		font-size: 20px;
	}

	.congress-page__request {
		margin-top: 88px;
	}

	.congress-page__request-content {
		padding: 56px 0 48px;
	}

	.congress-page__request-lead {
		margin-top: 12px;
		font-size: 16px;
	}

	.contact-form.congress-page__request-form {
		margin-top: 30px;
		gap: 22px;
	}

	.congress-page__request-fields {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.congress-page__line-field--wide {
		grid-column: auto;
	}

	.congress-page__request-submit.btn--light {
		width: min(100%, 320px);
	}

	.congress-page__archive {
		margin-top: 88px;
	}

	.congress-page__archive-title {
		font-size: 16px;
		line-height: 1.2;
	}

	.congress-page__archive-years {
		margin-top: 24px;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
	}

	.congress-page__archive-year {
		font-size: clamp(46px, 13vw, 58px);
		line-height: 1;
	}

	.congress-page__archive-panels {
		margin-top: 0;
		display: block;
		min-height: 0;
	}

	.congress-page__archive-panel {
		display: block;
		margin: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.32s ease;
	}

	.congress-page__archive-panel.is-open {
		margin: 8px 0 12px;
	}

	.congress-page__archive-items {
		padding-left: 30px;
		padding-bottom: 4px;
	}

	.congress-page__archive-items li {
		font-size: 20px;
		line-height: 1.35;
	}

	.congress-page__archive-items li + li {
		margin-top: 8px;
	}

	.congress-page__archive-links {
		display: block;
		margin-top: 24px;
	}

	.congress-page__archive-item {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		padding: 12px 0;
		border-bottom: 1px solid #ddd6cf;
		font-size: 20px;
		font-weight: 600;
		line-height: 1.1;
	}

	.congress-page__archive-item img {
		width: 18px;
		height: 18px;
		flex-shrink: 0;
	}

	.congress-gallery {
		margin-top: 104px;
		--congress-gallery-collapsed-height: 1108px;
	}

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

	.congress-gallery__more {
		margin-top: 30px;
	}

	.partners--congress {
		margin-top: 88px;
	}

	.page--congress .footer h3 {
		font-size: 20px;
	}

	.page--congress .footer {
		margin-top: 34px;
	}
}

@media (max-width: 479px) {
	.congress-page__mosaic {
		--congress-mosaic-gap: 6px;
	}

	.congress-page__mosaic-card {
		flex-basis: min(72vw, 220px);
		height: 200px;
	}

	.congress-page__benefit h3 {
		font-size: 20px;
	}

	.congress-page__archive-item {
		font-size: 18px;
		padding: 10px 0;
	}

	.congress-page__archive-item img {
		width: 16px;
		height: 16px;
	}

	.congress-gallery__title {
		font-size: 16px;
	}

	.congress-gallery {
		--congress-gallery-collapsed-height: 620px;
	}

	.congress-gallery__grid {
		grid-template-columns: 1fr;
	}

	.congress-gallery__link {
		border-radius: 16px;
		height: 300px;
	}
}

/* Education page (Figma node 244:2) */
.page--education {
	background: var(--bg);
}

.page--education .hero__nav {
	justify-content: flex-start;
}

.page--education .hero__menu--left {
	width: 427px;
	gap: 29px;
	margin-right: 60px;
}

.page--education .hero__logo {
	margin-right: 60px;
}

.page--education .hero__menu--right {
	width: 500px;
	gap: 22px;
	justify-content: flex-start;
}

.education-page__hero {
	position: relative;
	width: 100vw;
	min-height: 100vh;
	margin-left: calc(50% - 50vw);
	color: #fff;
	overflow: hidden;
}

.education-page__hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scaleY(-1) rotate(180deg);
}

/* Dark blurred overlay at the top to improve text readability (Figma style) */
.education-page__hero::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 40vh;
	background: #070707;
	opacity: 0.36;
	filter: blur(95.5px);
	-webkit-filter: blur(95.5px);
	pointer-events: none;
	z-index: 2;
}

.education-page__hero-content {
	position: relative;
	z-index: 3;
}

.education-page__hero-content {
	position: relative;
	z-index: 3;
	padding-top: 137px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}

.education-page__hero-content h1 {
	width: min(100%, 925px);
	font-family: 'Unbounded', sans-serif;
	font-size: 54px;
	font-weight: 500;
	line-height: 1.1;
	text-transform: uppercase;
}

.education-page__hero-content p {
	width: min(100%, 715px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
}

.education-page__hero-content .phrase-pills {
	width: min(100%, 715px);
}

.education-page__hero-btn.btn--light {
	width: auto;
	min-width: 195px;
	padding-inline: 24px;
}

.education-page__programs {
	margin-top: 140px;
}

.education-page__programs--second {
	margin-top: 180px;
}

.education-page__programs--third {
	margin-top: 140px;
}

.education-page__category-title {
	font-family: 'Unbounded', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
	text-align: center;
	padding-left: 16px;
}

.education-page__track-wrap {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-top: 58px;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	scrollbar-width: none;
	/* scroll-snap-type: x mandatory; */
	scroll-padding-left: 100px;
	cursor: grab;
}

.education-page__track-wrap::-webkit-scrollbar {
	display: none;
}

.education-page__track {
	width: max-content;
	display: flex;
	gap: 20px;
	padding-left: 100px;
	padding-right: 100px;
	will-change: scroll-position;
	transition: none;
	touch-action: pan-x;
}

.education-page__track-wrap.is-dragging {
	cursor: grabbing;
	user-select: none;
	scroll-snap-type: none;
}

.education-page__track,
.education-page__track * {
	cursor: grab;
}

.education-page__track-wrap.is-dragging .education-page__track,
.education-page__track-wrap.is-dragging .education-page__track * {
	cursor: grabbing;
}

.education-page__track .education-page__program-card-group {
	flex: 0 0 auto;
	width: 610px;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.education-page__track .education-page__program-card,
.education-page__track .education-page__program-card--wide {
	width: calc(100% - 132px);
	padding: 20px 14px;
	gap: 14px;
}

.education-page__track .education-page__program-media,
.education-page__track .education-page__program-media--wide {
	width: 132px;
}

.education-page__cards-row {
	margin-top: 58px;
	display: flex;
	gap: 20px;
}

.education-page__program-card-group {
	width: 610px;
	height: 370px;
	display: flex;
	background: #22181b;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	overflow: hidden;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.education-page__program-card-group--wide {
	width: 1240px;
}

.education-page__program-card-group:hover,
.education-page__program-card-group:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(34, 24, 27, 0.12);
}

.education-page__program-card-group:focus-visible {
	outline: 2px solid rgba(34, 24, 27, 0.28);
	outline-offset: 2px;
}

.education-page__program-card {
	width: 390px;
	height: 100%;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	color: #fff;
}

.education-page__program-card--wide {
	width: 610px;
}

.education-page__program-card h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
	color: #ddd6cf;
}

.education-page__program-card p {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
}
.education-page__program-card .author {
	margin-top: -16px;
	color: #ddd6cf;

	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 110%;
}

.education-page__program-card .btn {
	margin-top: auto;
	width: auto;
	min-width: 142px;
	align-self: flex-start;
	padding-inline: 24px;
}

.education-page__program-media {
	width: 220px;
	height: 370px;
	overflow: hidden;
	flex-shrink: 0;
}

.education-page__program-media--wide {
	width: 630px;
}

.education-page__program-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.education-page__program-card-group:hover .education-page__program-media img,
.education-page__program-card-group:focus-visible .education-page__program-media img {
	transform: scale(1.015);
}

.education-page__track-controls {
	margin-top: 16px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.education-page__track-progress {
	width: 1152px;
	height: 6px;
	background: #ddd6cf;
}

.education-page__track-progress span {
	display: block;
	width: 53%;
	height: 100%;
	background: #22181b;
	transition: width 0.45s ease;
}

.education-page__track-arrows {
	width: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.education-page__track-arrow {
	width: 24px;
	height: 24px;
	border: 0;
	padding: 0;
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition:
		transform 0.25s ease,
		opacity 0.25s ease;
}

.education-page__track-arrow:hover {
	transform: translateY(-1px);
}

.education-page__track-arrow:disabled {
	opacity: 0.35;
	cursor: default;
	transform: none;
}

.education-page__track-arrow:focus-visible {
	outline: 1px solid rgba(34, 24, 27, 0.5);
	outline-offset: 2px;
	border-radius: 4px;
}

.education-page__track-arrow img {
	width: 24px;
	height: 24px;
}

.education-page__benefits {
	margin-top: 140px;
}

.education-page__benefits .section-title {
	margin-top: 24px;
	max-width: 1052px;
}

.education-page__benefits-row {
	display: grid;
	border-bottom: 1px solid var(--line);
	border-right: 1px solid var(--line);
	padding: 24px 0;
	min-height: 132px;
}

.education-page__benefits-row--top {
	margin-top: 58px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.education-page__benefits-row--bottom {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.education-page__benefit-item {
	padding: 0 20px;
	border-left: 1px solid var(--line);
	border-right: 0;
}

.education-page__benefit-item h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
}

.education-page__benefit-item p {
	margin-top: 16px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
}

.education-page__contact {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-top: 140px;
	min-height: 422px;
	color: #fff;
}

.education-page__contact-bg,
.education-page__contact-overlay {
	position: absolute;
	inset: 0;
}

.education-page__contact-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.education-page__contact-overlay {
	background: rgba(34, 24, 27, 0.6);
}

.education-page__contact-content {
	position: relative;
	z-index: 2;
	padding-top: 80px;
	padding-bottom: 80px;
}

.contact-form.education-page__contact-form {
	margin-top: 60px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: center;
}

.education-page__contact-fields {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.education-page__line-field span {
	display: block;
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	color: #fff;
}

.education-page__line-field input {
	width: 100%;
	height: 33px;
	padding: 0;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.9);
	background: transparent;
	color: #fff;
	font: inherit;
}

.education-page__line-field input:focus {
	outline: none;
	border-bottom-color: #fff;
}

.education-page__contact-submit.btn--light {
	width: auto;
	padding-inline: 24px;
	min-height: 45px;
	background: transparent;
}

.education-page__contact-submit.btn--light:hover {
	background: transparent;
}

.page--education .footer {
	margin-top: 0;
	padding-bottom: 24px;
	border-top: 1px solid var(--line);
}

.page--education .footer__social {
	gap: 16px;
	font-weight: 600;
}

@media (max-width: 1199px) {
	.page--education .hero__nav {
		justify-content: space-between;
	}

	.page--education .hero__menu--left {
		margin-right: 0;
	}

	.page--education .hero__logo {
		margin-right: 0;
	}

	.page--education .hero__menu--right {
		width: auto;
		margin-left: auto;
	}

	.education-page__hero {
		min-height: 100vh;
	}

	.education-page__hero-content {
		padding-top: 120px;
		gap: 20px;
	}

	.education-page__hero-content h1 {
		font-size: clamp(36px, 5.8vw, 54px);
		max-width: 760px;
	}

	.education-page__track {
		padding-left: 24px;
		padding-right: 24px;
		scroll-padding-left: 24px;
	}

	.education-page__cards-row {
		flex-direction: column;
	}

	.education-page__cards-row .education-page__program-card-group,
	.education-page__cards-row .education-page__program-card-group--wide {
		width: 100%;
	}

	.education-page__cards-row .education-page__program-card,
	.education-page__cards-row .education-page__program-card--wide {
		width: calc(100% - 220px);
	}

	.education-page__cards-row .education-page__program-media--wide {
		width: 220px;
	}

	.education-page__track-controls {
		align-items: center;
	}

	.education-page__track-progress {
		width: calc(100% - 88px);
	}

	.education-page__track-progress span {
		width: min(610px, 55%);
	}

	.education-page__benefits-row--top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.education-page__benefits-row--bottom {
		grid-template-columns: 1fr;
	}

	.education-page__contact-fields {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.page--education .hero__logo {
		margin-right: 0;
	}

	.page--education .section-kicker {
		font-size: 20px;
	}

	.page--education .section-title {
		margin-top: 24px;
		font-size: 27px;
		line-height: 1.1;
	}

	.page--education .section-title--light {
		margin-top: 24px;
	}

	.page--education .section-lead {
		margin-top: 16px;
		font-size: 18px;
		line-height: 1.3;
	}

	.page--education .hero__menu--right {
		width: 100%;
		margin-left: 0;
		justify-content: space-between;
	}

	.education-page__hero {
		min-height: 100vh;
	}

	.education-page__hero-content {
		padding-top: 108px;
		gap: 18px;
	}

	.education-page__hero-content h1 {
		font-size: 27px;
		max-width: none;
	}

	.education-page__hero-content p {
		max-width: none;
		font-size: 16px;
	}

	.education-page__hero-content .phrase-pills {
		max-width: none;
	}

	.phrase-pills {
		gap: 8px;
	}

	.phrase-pill {
		min-height: 34px;
		padding: 7px 14px;
		font-size: 15px;
	}

	.education-page__hero-btn.btn--light {
		width: 100%;
		max-width: 320px;
	}

	.education-page__programs {
		margin-top: 88px;
	}

	.education-page__programs--second,
	.education-page__programs--third {
		margin-top: 112px;
	}

	.education-page__category-title {
		font-size: 20px;
		text-align: left;
	}

	.education-page__track-wrap {
		margin-top: 42px;
		scroll-padding-left: 16px;
	}

	.education-page__track {
		gap: 12px;
		padding-left: 16px;
		padding-right: 16px;
	}

	.education-page__track .education-page__program-card-group {
		width: min(420px, calc(100vw - 32px));
	}

	.education-page__cards-row {
		margin-top: 42px;
		gap: 12px;
	}

	.education-page__cards-row .education-page__program-card-group {
		height: auto;
		min-height: 0;
		flex-direction: column;
	}

	.education-page__cards-row .education-page__program-card,
	.education-page__cards-row .education-page__program-card--wide {
		width: 100%;
		padding: 24px 16px;
		gap: 18px;
		padding: 32px !important;
		padding-bottom: 64px !important;
	}

	.education-page__cards-row .education-page__program-card h3 {
		font-size: 20px;
	}

	.education-page__cards-row .education-page__program-card p {
		font-size: 15px;
	}

	.education-page__cards-row .education-page__program-media,
	.education-page__cards-row .education-page__program-media--wide {
		width: 100%;
		height: auto;
		order: -1;
		height: auto;
		aspect-ratio: 220 / 301;
	}

	.education-page__track-controls {
		margin-top: 12px;
	}

	.education-page__benefits {
		margin-top: 88px;
	}

	.education-page__benefits .section-title {
		font-size: 27px;
	}

	.education-page__benefits-row--top {
		margin-top: 42px;
		grid-template-columns: 1fr;
	}

	@media (max-width: 767px) {
		/* Remove left borders on stacked benefit items and add separators between them */
		.page--education .education-page__benefits-row {
			border-right: 0;
			border-bottom: 0;
			padding: 0;
		}

		.page--education .education-page__benefit-item {
			border-left: 0;
			padding: 16px 16px;
		}

		.page--education .education-page__benefit-item + .education-page__benefit-item {
			border-top: 1px solid var(--line);
		}
	}

	.education-page__benefit-item {
		padding: 0 16px;
	}

	.education-page__benefit-item h3 {
		font-size: 20px;
	}

	.education-page__benefit-item p {
		margin-top: 12px;
		font-size: 15px;
	}

	.education-page__contact {
		margin-top: 88px;
	}

	.education-page__contact-content {
		padding: 56px 0 48px;
	}

	.contact-form.education-page__contact-form {
		margin-top: 30px;
		gap: 24px;
		align-items: flex-start;
	}

	.page--education .footer h3 {
		font-size: 20px;
	}

	.education-page__contact-submit.btn--light {
		width: auto;
		max-width: 100%;
	}
}

/* B2B page (Figma node 247:803) */
.page--b2b {
	background: var(--bg);
}

.page--b2b .hero__nav {
	position: relative;
	top: auto;
	left: auto;
	transform: none;
	width: min(100% - 48px, 1240px);
	justify-content: flex-start;
}

.page--b2b .menu-link {
	color: var(--text);
}

.page--b2b .has-caret::after {
	color: var(--text);
}

.page--b2b .hero__menu--left {
	width: 427px;
	gap: 29px;
	margin-right: 60px;
}

.page--b2b .hero__logo {
	margin-right: 60px;
}

.page--b2b .hero__menu--right {
	width: 500px;
	gap: 22px;
	justify-content: flex-start;
}

.b2b-page__hero {
	padding-top: 32px;
}

.b2b-page__hero-image-wrap {
	margin-top: 32px;
}

.b2b-page__hero-image {
	width: 100%;
	height: 405px;
	object-fit: cover;
}

.b2b-page__hero-main {
	margin-top: 54px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}

.b2b-page__hero-main h1 {
	width: 392px;
	font-family: 'Unbounded', sans-serif;
	font-size: 54px;
	font-weight: 500;
	line-height: 1.1;
	text-transform: uppercase;
}

.b2b-page__hero-copy {
	width: 505px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	transform: translateY(-15px);
}

.b2b-page__hero-copy p {
	margin: 0;
	font-family: 'Unbounded', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
}

.b2b-page__hero-btn.btn--dark {
	width: auto;
	padding-inline: 24px;
	align-self: flex-start;
}

.page--b2b .about .stats__item h3 {
	font-size: 38px;
}

.b2b-page__about {
	position: relative;
	margin-top: 184px;
}

.b2b-page__about-watermark {
	position: absolute;
	left: 50%;
	top: 40px;
	transform: translateX(-50%);
	width: 610px;
	pointer-events: none;
}

.b2b-page__about-lead {
	margin-top: 24px;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3;
	position: relative;
	z-index: 2;
}

.b2b-page__stats {
	margin-top: 46px;
	display: grid;
	grid-template-columns: repeat(3, 332px);
	justify-content: space-between;
	position: relative;
	z-index: 2;
}

.b2b-page__stat-item {
	text-align: right;
}

.b2b-page__stat-line {
	height: 1px;
	background: var(--line);
	margin-bottom: 16px;
}

.b2b-page__stat-item h3 {
	margin: 0;
	font-family: 'Unbounded', sans-serif;
	font-size: 38px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
}

.b2b-page__stat-item p {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
}

.b2b-page__center-title {
	margin: 0;
	font-family: 'Unbounded', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
	text-align: center;
}

.b2b-page__case {
	margin-top: 140px;
}

.b2b-page__case-layout {
	margin-top: 58px;
	display: grid;
	grid-template-columns: 400px 840px;
}

.b2b-page__case-summary {
	min-height: 500px;
	padding: 32px;
	background: #22181b;
	color: #ddd6cf;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.b2b-page__case-summary h3 {
	margin: 0;
	font-family: 'Unbounded', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.1;
	color: #f6f2ee;
	text-transform: uppercase;
}

.b2b-page__case-divider {
	height: 1px;
	background: rgba(246, 242, 238, 0.6);
}

.b2b-page__case-block p {
	margin: 0;
}

.b2b-page__case-block p:first-child {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.1;
}

.b2b-page__case-block p + p {
	margin-top: 16px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
}

.b2b-page__case-block ul {
	margin: 16px 0 0;
	padding-left: 24px;
}

.b2b-page__case-block li {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
}

.b2b-page__case-block li + li {
	margin-top: 8px;
}

.b2b-page__case-summary .b2b-page__case-block li + li {
	margin-top: 0;
}

.b2b-page__case-details {
	min-height: 500px;
	padding: 32px;
	background: #fffbf8;
	color: #22181b;
}

.b2b-page__case-details > h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
}

.b2b-page__case-grid {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.b2b-page__case-detail-block h4 {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.1;
}

.b2b-page__case-detail-block ul {
	margin: 16px 0 0;
	padding-left: 24px;
}

.b2b-page__case-detail-block li {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
}

.b2b-page__case-detail-block li + li {
	margin-top: 8px;
}

.b2b-page__services {
	margin-top: 140px;
}

.b2b-page__services-grid {
	margin-top: 32px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	height: 292px;
	border-right: 1px solid var(--line);
}

.b2b-page__service-item {
	padding: 0 20px;
	border-left: 1px solid var(--line);
	border-right: 0;
}

.b2b-page__service-item > img {
	width: 46px;
	height: 46px;
	object-fit: contain;
}

.b2b-page__service-item:nth-child(2) > img {
	height: 43px;
}

.b2b-page__service-item h3 {
	margin: 8px 0 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
}

.b2b-page__service-item ul {
	margin: 16px 0 0;
	padding-left: 24px;
}

.b2b-page__service-item li {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
}

.b2b-page__service-item li + li {
	margin-top: 8px;
}

.b2b-page__workflow {
	margin-top: 140px;
}

.b2b-page__workflow-layout {
	margin-top: 58px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
}

.b2b-page__steps {
	--workflow-dot-size: 14px;
	--workflow-line-width: 2px;
	--workflow-line-offset: calc((var(--workflow-dot-size) - var(--workflow-line-width)) / 2);

	position: relative;
	width: 600px;
	display: flex;
	flex-direction: column;
	gap: 75px;
	padding-left: 94px;
	padding-top: 1px;
	padding-bottom: 6px;
}

.b2b-page__steps::before {
	content: '';
	position: absolute;
	left: 44px;
	top: var(--workflow-line-top, var(--workflow-line-offset));
	bottom: var(--workflow-line-bottom, var(--workflow-line-offset));
	width: var(--workflow-line-width);
	background: #22181b;
}

.b2b-page__step {
	position: relative;
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.b2b-page__step > span {
	position: absolute;
	left: -94px;
	top: -2px;
	width: 34px;
	flex: 0 0 34px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
}

.b2b-page__step::before {
	content: '';
	position: absolute;
	left: -56px;
	top: var(--workflow-line-offset);
	width: var(--workflow-dot-size);
	height: var(--workflow-dot-size);
	border-radius: 50%;
	background: #22181b;
}

@media (max-width: 768px) {
	.b2b-page__step > span {
		left: -80px;
		top: 0;
	}
}

.b2b-page__step h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
}

.b2b-page__step p {
	margin: 8px 0 0;
	font-size: 16px;
	font-weight: 350;
	line-height: 1.3;
}

.b2b-page__workflow-media {
	width: 610px;
	flex: 0 0 610px;
	margin-top: 0;
}

.b2b-page__workflow-media img {
	display: block;
	width: 100%;
	height: 466px;
	object-fit: cover;
}

.b2b-page__contact {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-top: 140px;
	min-height: 464px;
	color: #fff;
}

.b2b-page__contact-bg,
.b2b-page__contact-overlay {
	position: absolute;
	inset: 0;
}

.b2b-page__contact-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.b2b-page__contact-overlay {
	background: rgba(34, 24, 27, 0.6);
}

.b2b-page__contact-content {
	position: relative;
	z-index: 2;
	padding-top: 80px;
	padding-bottom: 80px;
}

.b2b-page__contact-content .section-kicker,
.b2b-page__contact-content .section-title {
	max-width: 1240px;
}

.contact-form.b2b-page__contact-form {
	margin-top: 60px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: center;
}

.b2b-page__contact-fields {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.b2b-page__line-field span {
	display: block;
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	color: #fff;
}

.b2b-page__line-field input {
	width: 100%;
	height: 33px;
	padding: 0;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.9);
	background: transparent;
	color: #fff;
	font: inherit;
}

.b2b-page__line-field input:focus {
	outline: none;
	border-bottom-color: #fff;
}

.b2b-page__contact-submit.btn--light {
	width: auto;
	padding-inline: 24px;
	min-height: 45px;
	background: transparent;
}

.b2b-page__contact-submit.btn--light:hover {
	background: transparent;
}

.page--b2b .footer {
	margin-top: 0;
	padding-bottom: 24px;
	border-top: 1px solid var(--line);
}

.page--b2b .footer__social {
	gap: 16px;
	font-weight: 600;
}

.page--b2b .footer__brand > a:nth-child(2),
.page--b2b .footer__brand > a:nth-child(3),
.page--b2b .footer__contacts > a:nth-of-type(3),
.page--b2b .footer__contacts > a:nth-of-type(4) {
	text-transform: lowercase;
}

.page--b2b .footer__links a {
	text-transform: none;
}

.page--b2b .footer__brand > a:nth-child(2),
.page--b2b .footer__brand > a:nth-child(3) {
	color: var(--line-strong);
}

@media (max-width: 1199px) {
	.page--b2b .hero__nav {
		justify-content: space-between;
	}

	.page--b2b .hero__menu--left {
		margin-right: 0;
	}

	.page--b2b .hero__logo {
		margin-right: 0;
	}

	.page--b2b .hero__menu--right {
		width: auto;
		gap: 18px;
	}

	.b2b-page__hero-image {
		height: 340px;
	}

	.b2b-page__hero-main {
		margin-top: 32px;
		flex-direction: column;
		gap: 24px;
	}

	.b2b-page__hero-main h1 {
		width: 100%;
		font-size: clamp(40px, 7vw, 54px);
	}

	.b2b-page__hero-copy {
		width: 100%;
		max-width: 760px;
		transform: none;
		margin-bottom: 40px;
	}

	.b2b-page__about {
		margin-top: 132px;
	}

	.b2b-page__about-watermark {
		width: 520px;
		top: 94px;
	}

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

	.b2b-page__stat-item:last-child {
		grid-column: 1 / -1;
	}

	.b2b-page__case {
		margin-top: 112px;
	}

	.b2b-page__case-layout {
		margin-top: 48px;
		grid-template-columns: 1fr;
	}

	.b2b-page__services {
		margin-top: 112px;
	}

	.b2b-page__services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
		height: auto;
		border-right: 0;
	}

	.b2b-page__service-item {
		padding: 24px 20px;
		border-right: 1px solid var(--line);
	}

	.b2b-page__workflow {
		margin-top: 132px;
	}

	.b2b-page__workflow-layout {
		margin-top: 48px;
		flex-direction: column;
		gap: 28px;
	}

	.b2b-page__steps {
		width: 100%;
		padding-left: 88px;
	}

	.b2b-page__workflow-media {
		width: 100%;
		margin-top: 0;
		flex: 0 0 auto;
	}

	.b2b-page__workflow-media img {
		width: 100%;
		height: auto;
		aspect-ratio: 610 / 466;
	}

	.b2b-page__contact {
		margin-top: 112px;
	}

	.b2b-page__contact-fields {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.page.page--b2b .hero__nav {
		top: 0;
		margin-bottom: 16px;
	}

	.page--b2b .section-kicker {
		font-size: 20px;
	}

	.page--b2b .section-title {
		margin-top: 24px;
		font-size: 27px;
		line-height: 1.1;
	}

	.page--b2b .section-title--light {
		margin-top: 24px;
	}

	.page--b2b .section-lead {
		margin-top: 16px;
		font-size: 18px;
		line-height: 1.35;
	}

	.b2b-page__hero {
		padding-top: 24px;
	}

	.b2b-page__hero-image-wrap {
		margin-top: 24px;
	}

	.b2b-page__hero-image {
		height: auto;
		aspect-ratio: 1/1;
	}

	.b2b-page__hero-main {
		margin-top: 24px;
		gap: 18px;
	}

	.b2b-page__hero-main h1 {
		font-size: clamp(46px, 14vw, 54px);
	}

	.b2b-page__hero-copy p {
		font-size: 20px;
	}

	.b2b-page__hero-btn.btn--dark {
		width: auto;
		max-width: 100%;
	}

	.b2b-page__about {
		margin-top: 88px;
	}

	.b2b-page__about-watermark {
		width: min(92%, 420px);
		top: 118px;
	}

	.b2b-page__about-lead {
		margin-top: 18px;
		font-size: 18px;
	}

	.b2b-page__stats {
		margin-top: 32px;
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.b2b-page__stat-item {
		grid-column: auto;
	}

	.b2b-page__stat-item h3 {
		font-size: 30px;
	}

	.b2b-page__stat-item p {
		font-size: 20px;
	}

	.b2b-page__center-title {
		font-size: 20px;
	}

	.b2b-page__case {
		margin-top: 88px;
	}

	.b2b-page__case-layout {
		margin-top: 42px;
	}

	.b2b-page__case-summary,
	.b2b-page__case-details {
		min-height: 0;
		padding: 32px;
	}

	.b2b-page__case-summary h3,
	.b2b-page__case-details > h3 {
		font-size: 20px;
	}

	.b2b-page__case-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.b2b-page__services {
		margin-top: 88px;
	}

	.b2b-page__services-grid {
		margin-top: 24px;
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.b2b-page__service-item {
		padding: 20px 16px;
	}

	.b2b-page__service-item h3 {
		font-size: 20px;
	}

	.b2b-page__service-item li {
		font-size: 15px;
	}

	.b2b-page__workflow {
		margin-top: 88px;
	}

	.b2b-page__workflow-layout {
		margin-top: 42px;
		gap: 18px;
	}

	.b2b-page__steps {
		padding-left: 80px;
		gap: 28px;
	}

	.b2b-page__steps::before {
		left: 40px;
	}

	.b2b-page__step::before {
		left: -46px;
	}

	.b2b-page__step > span,
	.b2b-page__step h3 {
		font-size: 20px;
	}

	.b2b-page__step p {
		font-size: 15px;
	}

	.b2b-page__workflow-media {
		display: block;
	}

	.b2b-page__workflow-media img {
		display: block;
		width: 100%;
		height: auto;
		margin-bottom: 0;
		break-inside: avoid;
		object-fit: cover;
	}

	.b2b-page__contact {
		margin-top: 88px;
	}

	.b2b-page__contact-content {
		padding: 56px 0 48px;
	}

	.b2b-page__contact-content .section-title {
		font-size: 27px;
	}

	.contact-form.b2b-page__contact-form {
		margin-top: 30px;
		gap: 24px;
		align-items: flex-start;
	}

	.page--b2b .footer h3 {
		font-size: 20px;
	}

	.b2b-page__contact-submit.btn--light {
		width: auto;
		max-width: 100%;
	}
}

/* Mobile: align h2 headings to the left across the site where currently centered */
@media (max-width: 767px) {
	h2,
	.section-title,
	.section-title--light,
	.b2b-page__center-title {
		text-align: left;
	}
}

/* Mobile: b2b contact button white and full-width */
@media (max-width: 767px) {
	.page--b2b .b2b-page__contact .b2b-page__contact-submit.btn--light {
		width: 100%;
		background: #ffffff;
		color: #111;
		min-height: 48px;
		border: none;
		padding-inline: 16px;
		display: inline-block;
		box-sizing: border-box;
	}

	.page--b2b .b2b-page__contact .b2b-page__contact-submit.btn--light:hover {
		background: #ffffff;
	}
}

/* Mobile: adjust b2b services grid borders - remove left borders, add separators between stacked items */
@media (max-width: 767px) {
	.b2b-page__services-grid {
		grid-template-columns: 1fr;
		gap: 0;
		height: auto;
		border-right: 0;
	}

	.b2b-page__service-item {
		padding: 16px 20px;
		border-left: 0;
		border-right: 0;
	}

	.b2b-page__service-item + .b2b-page__service-item {
		border-top: 1px solid var(--line);
	}
}

/* Keep the shared header visually identical on the home and education pages. */
@media (min-width: 1025px) {
	.page--education .hero__nav {
		position: absolute;
		top: 32px;
		left: 50%;
		width: min(100% - 48px, 1240px);
		height: 59px;
		transform: translateX(-50%);
		align-items: flex-start;
		justify-content: center;
	}

	.page--education .hero__menu--left {
		position: absolute;
		left: 0;
		width: 427px;
		gap: 29px;
		margin-right: 0;
	}

	.page--education .hero__logo {
		position: absolute;
		left: 50%;
		width: 190px;
		height: 59px;
		margin-right: 0;
		transform: translateX(-50%);
	}

	.page--education .hero__logo img {
		width: 190px;
		height: 59px;
	}

	.page--education .hero__menu--right {
		position: absolute;
		right: 0;
		width: 500px;
		gap: 22px;
		margin-left: 0;
		justify-content: flex-end;
	}
}

.menu-dropdown__caret {
	padding: 0 !important;
	width: auto !important;
	background: transparent !important;
}
