@font-face {
	font-family: "Oranienbaum";
	src: url("../fonts/Oranienbaum-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Sofia Sans Semi Condensed";
	src: url("../fonts/SofiaSansSemiCondensed-VariableFont_wght.ttf") format("truetype");
	font-weight: 1 1000;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Sofia Sans Semi Condensed";
	src: url("../fonts/SofiaSansSemiCondensed-Italic-VariableFont_wght.ttf") format("truetype");
	font-weight: 1 1000;
	font-style: italic;
	font-display: swap;
}

:root {
	--color-dark: #292B42;
	--color-light: #E5EBF7;
	--color-white: #FFFFFF;
	--color-gold: #AD763A;
	--font-heading: "Oranienbaum", Georgia, serif;
	--font-body: "Sofia Sans Semi Condensed", Arial, sans-serif;
	--content-width: 1048px;
	--page-gutter: 28px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--color-dark);
	background: var(--color-white);
	font-family: var(--font-body);
	font-size: 18px;
	font-weight: 360;
	line-height: 1.45;
	letter-spacing: 0;
	text-rendering: geometricPrecision;
}

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

#cmplz-cookiebanner-container,
.cmplz-cookiebanner-container,
.cmplz-cookiebanner {
	z-index: 999999;
}

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

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

a:hover {
	color: var(--color-gold);
}

button,
input,
textarea {
	font: inherit;
	letter-spacing: 0;
}

button {
	color: inherit;
}

h1,
h2,
h3,
.site-brand,
.site-footer__name {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 400;
	line-height: 1.08;
}

h1 {
	max-width: 540px;
	font-size: clamp(52px, 4.4vw, 68px);
	line-height: 1.01;
}

h2 {
	font-size: 36px;
	text-align: center;
}

h3 {
	font-size: 22px;
}

p {
	margin: 0;
}

p + p {
	margin-top: 1.15em;
}

.content-width {
	width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
	margin-inline: auto;
}

.screen-reader-text,
.skip-link:not(:focus) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 10000;
	padding: 10px 14px;
	background: var(--color-white);
	color: var(--color-dark);
	border: 1px solid var(--color-gold);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 28px;
	border: 1px solid currentColor;
	font-family: var(--font-heading);
	font-size: 18px;
	line-height: 1;
	text-align: center;
	transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button--gold {
	color: var(--color-white);
	background: var(--color-gold);
	border-color: var(--color-gold);
}

.button--gold:hover,
.button--gold:focus-visible {
	color: var(--color-gold);
	background: var(--color-white);
}

.button--light {
	color: var(--color-gold);
	background: var(--color-white);
	border-color: var(--color-white);
}

.button--light:hover,
.button--light:focus-visible {
	color: var(--color-white);
	background: transparent;
}

.site-header {
	position: relative;
	z-index: 50;
	background: var(--color-white);
	transition: transform 180ms ease;
	will-change: transform;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(1112px, calc(100% - 88px));
	min-height: 68px;
	margin-inline: auto;
	gap: 32px;
}

.site-brand {
	font-size: 25px;
	white-space: nowrap;
}

.site-nav {
	margin-left: auto;
}

.site-nav__list,
.mobile-menu__list,
.contact-list {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list {
	align-items: center;
	gap: 48px;
	font-size: 15px;
	font-weight: 430;
}

.site-nav__list a {
	display: inline-flex;
	padding-block: 10px;
}

.language-switcher {
	position: relative;
	display: inline-flex;
	font-family: var(--font-heading);
	font-size: 16px;
	line-height: 1;
}

.language-switcher__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 50px;
	min-height: 42px;
	padding: 7px 12px;
	color: var(--color-gold);
	background: transparent;
	border: 1px solid var(--color-gold);
	cursor: pointer;
}

.language-switcher__toggle:hover,
.language-switcher__toggle:focus-visible,
.language-switcher.is-open .language-switcher__toggle {
	color: var(--color-gold);
	background: var(--color-white);
}

.language-switcher__current {
	display: inline-flex;
	align-items: center;
}

.language-switcher__arrow {
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-top: -3px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg);
	transition: transform 160ms ease;
}

.language-switcher.is-open .language-switcher__arrow {
	margin-top: 3px;
	transform: rotate(225deg);
}

.language-switcher__dropdown {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 1200;
	min-width: 100%;
	margin: 0;
	padding: 0;
	color: var(--color-gold);
	list-style: none;
	background: var(--color-white);
	border: 1px solid var(--color-gold);
	box-shadow: 0 12px 26px rgba(41, 43, 66, 0.08);
}

.language-switcher__dropdown[hidden] {
	display: none;
}

.language-switcher__item {
	margin: 0;
	padding: 0;
}

.language-switcher__link {
	display: block;
	min-width: 58px;
	padding: 9px 13px;
	color: var(--color-gold);
	line-height: 1;
	transition: background-color 160ms ease, color 160ms ease;
}

.language-switcher__link:hover,
.language-switcher__link:focus-visible {
	color: var(--color-dark);
	background: var(--color-light);
}

.language-switcher__link.is-current {
	color: var(--color-dark);
}

.menu-toggle,
.mobile-menu {
	display: none;
}

@media (min-width: 981px) {
	.site-header {
		position: sticky;
		top: 0;
	}

	body.admin-bar .site-header {
		top: 32px;
	}

	.site-header.is-hidden {
		transform: translateY(-100%);
	}
}

.hero-section {
	position: relative;
	order: 10;
	overflow: hidden;
	background: var(--color-white);
}

.hero__inner {
	position: relative;
	width: min(100%, 1280px);
	min-height: clamp(510px, 40vw, 590px);
	margin-inline: auto;
}

.hero__content {
	position: relative;
	z-index: 3;
	max-width: 560px;
	padding: clamp(86px, 8vw, 112px) clamp(42px, 6.5vw, 86px) 72px;
	padding-right: clamp(28px, 4vw, 58px);
}

.hero__visual {
	position: absolute;
	inset: 0 0 0 auto;
	z-index: 1;
	width: min(72vw, 930px);
	pointer-events: none;
}

.hero__visual picture {
	display: contents;
}

.hero__globe,
.hero__portrait {
	position: absolute;
	display: block;
	max-width: none;
	pointer-events: none;
}

.hero__globe {
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: right center;
	opacity: 0.95;
}

.hero__portrait {
	right: clamp(58px, 8vw, 118px);
	bottom: 0;
	z-index: 2;
	width: auto;
	height: clamp(420px, 34vw, 540px);
	max-height: calc(100% - 34px);
	object-fit: contain;
	object-position: right bottom;
}

.lead {
	max-width: 500px;
	margin-top: 10px;
	font-size: clamp(22px, 1.55vw, 26px);
	font-weight: 420;
	line-height: 1.25;
}

.hero-section .button {
	min-height: 42px;
	margin-top: 24px;
	padding: 11px 27px;
	font-size: 17px;
}

.claim-section {
	order: 20;
	padding: 38px 0 32px;
	color: var(--color-white);
	background: var(--color-dark);
}

.claim-section__inner {
	text-align: center;
}

.claim-section p {
	max-width: 610px;
	margin-inline: auto;
	font-family: var(--font-heading);
	font-size: 32px;
	line-height: 1.16;
}

.claim-section img {
	width: 28px;
	margin: 24px auto 0;
}

.home-layout {
	display: flex;
	flex-direction: column;
}

.about-section {
	order: 30;
	padding: 54px 0 46px;
	background: var(--color-light);
}

.about-section__grid {
	display: grid;
	grid-template-columns: minmax(300px, 390px) minmax(360px, 1fr);
	align-items: center;
	justify-content: center;
	gap: 64px;
}

.about-section__media img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.about-section__content h2 {
	margin-bottom: 24px;
	text-align: left;
}

.about-section__content {
	font-size: 17px;
	line-height: 1.42;
}

.credential {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 34px;
	font-weight: 560;
	line-height: 1.2;
}

.credential img {
	width: 126px;
	max-height: 74px;
	object-fit: contain;
}

.proof-block {
	margin-top: 48px;
}

.proof-block h2 {
	display: none;
}

.proof-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 38px;
	align-items: center;
}

.proof-card {
	position: relative;
	color: var(--color-gold);
	text-align: center;
}

.proof-card:not(:first-child)::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -25px;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
	background: url("../icons/star-small.svg") center / contain no-repeat;
}

.proof-card h3 {
	font-family: var(--font-body);
	font-size: 20px;
	font-weight: 420;
	line-height: 1.2;
}

.proof-card .accordion-panel {
	display: none;
}

.accordion-button {
	width: 100%;
	padding: 0;
	text-align: inherit;
	background: transparent;
	border: 0;
}

.accordion-icon {
	display: none;
}

.audience-section {
	order: 40;
	padding: 54px 0 68px;
	background: var(--color-white);
}

.audience-section h2,
.services-section h2,
.references-section h2 {
	margin-bottom: 48px;
}

.audience-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 36px 44px;
	max-width: 940px;
	margin-inline: auto;
}

.audience-card {
	min-height: 164px;
	padding: 34px 36px;
	border: 1px solid var(--color-gold);
}

.audience-card h3 {
	margin-bottom: 16px;
}

.audience-card .accordion-button {
	text-align: left;
}

.audience-card .accordion-panel {
	font-size: 16px;
	line-height: 1.35;
}

.audience-section__cta {
	display: flex;
	width: fit-content;
	min-width: 204px;
	margin: 42px auto 0;
}

.services-section {
	order: 50;
	padding: 50px 0 64px;
	color: var(--color-white);
	background: var(--color-dark);
	text-align: center;
}

.services-section h2 {
	color: var(--color-white);
}

.carousel {
	position: relative;
}

.carousel__track {
	display: flex;
	gap: 44px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar {
	display: none;
}

.services-carousel:not(.has-overflow) .carousel__track,
.references-carousel:not(.has-overflow) .carousel__track {
	justify-content: center;
	overflow: visible;
	scroll-snap-type: none;
}

.service-card,
.reference-card {
	scroll-snap-align: start;
}

.service-card {
	flex: 0 0 calc((100% - 88px) / 3);
	min-height: 406px;
	padding: 48px 42px 42px;
	color: var(--color-dark);
	background: var(--color-white);
	text-align: center;
}

.services-carousel.layout-count-1 .service-card,
.references-carousel.layout-count-1 .reference-card {
	flex-basis: min(100%, 348px);
}

.services-carousel.layout-count-2 .service-card,
.references-carousel.layout-count-2 .reference-card {
	flex-basis: min(348px, calc((100% - 44px) / 2));
}

.services-carousel.layout-count-3 .service-card,
.references-carousel.layout-count-3 .reference-card {
	flex-basis: calc((100% - 88px) / 3);
}

.service-card h3 {
	min-height: 48px;
}

.service-card img {
	width: 28px;
	margin: 22px auto 20px;
}

.service-card p {
	font-size: 16px;
	line-height: 1.34;
}

.service-card__cta {
	display: none;
	margin-top: 26px;
}

.services-section__cta {
	margin-top: 42px;
	min-width: 204px;
}

.references-section {
	order: 60;
	padding: 54px 0 68px;
	background: var(--color-white);
}

.reference-card {
	flex: 0 0 calc((100% - 88px) / 3);
	min-height: 342px;
	padding: 42px 34px;
	border: 1px solid var(--color-gold);
	background: var(--color-white);
}

.reference-card h3 {
	margin-bottom: 18px;
}

.reference-card__meta {
	margin-top: -10px;
	margin-bottom: 20px;
	color: var(--color-gold);
	font-size: 14px;
	font-weight: 460;
}

.reference-card p {
	font-size: 16px;
	line-height: 1.34;
}

.carousel-controls {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 28px;
}

.references-carousel__controls {
	display: none;
}

.references-carousel.has-overflow .references-carousel__controls {
	display: flex;
}

.carousel-control {
	position: relative;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--color-gold);
	border-radius: 50%;
	background: var(--color-gold);
	cursor: pointer;
}

.carousel-control::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 52%;
	width: 10px;
	height: 10px;
	border-left: 2px solid var(--color-white);
	border-bottom: 2px solid var(--color-white);
	transform: translate(-50%, -50%) rotate(45deg);
}

.carousel-control--next::before {
	left: 47%;
	transform: translate(-50%, -50%) rotate(225deg);
}

.carousel-control:hover,
.carousel-control:focus-visible {
	background: var(--color-dark);
}

.carousel-control:disabled {
	opacity: 0.45;
	cursor: default;
}

.logos-section {
	order: 70;
	padding: 42px 0 58px;
	background: var(--color-light);
}

.logos-section h2 {
	margin-bottom: 28px;
	font-family: var(--font-body);
	font-size: 18px;
	font-weight: 520;
	line-height: 1.2;
}

.logos-strip {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(28px, 4vw, 64px);
	overflow: visible;
	background: transparent;
}

.logos-carousel.has-overflow .logos-strip {
	justify-content: flex-start;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.logos-strip::-webkit-scrollbar {
	display: none;
}

.logo-item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: auto;
	padding: 0;
	border: 0;
	background: transparent;
	scroll-snap-align: start;
}

.logo-item a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.logo-item img {
	max-width: 142px;
	max-height: 64px;
	object-fit: contain;
	filter: grayscale(1);
	mix-blend-mode: multiply;
	background: transparent;
}

/* If a logo still shows a white rectangle, replace that source image with a transparent PNG or SVG. */
.logos-carousel__controls {
	display: none;
}

.logos-carousel.has-overflow .logos-carousel__controls {
	display: flex;
}

.site-footer {
	color: var(--color-white);
	background: var(--color-gold);
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: var(--color-white);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 92px;
	row-gap: 0;
	width: min(1100px, calc(100% - 88px));
	margin-inline: auto;
	padding: 74px 0 44px;
}

.site-footer__name {
	font-size: 31px;
}

.site-footer__subtitle {
	margin-top: 8px;
	font-size: 16px;
}

.contact-list {
	flex-direction: column;
	gap: 14px;
	margin-top: 28px;
	font-size: 17px;
}

.contact-list li {
	display: flex;
	align-items: center;
	gap: 12px;
}

.contact-list img {
	width: 20px;
	height: 20px;
	filter: brightness(0) invert(1);
}

.site-footer .contact-list a:hover,
.site-footer .contact-list a:focus-visible {
	color: var(--color-white);
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 36px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 12px 20px;
	border: 1px solid rgba(255, 255, 255, 0.82);
	font-family: var(--font-heading);
	font-size: 19px;
}

.social-links img {
	width: 18px;
	height: 18px;
	filter: brightness(0) invert(1);
}

.site-footer .social-links a:hover,
.site-footer .social-links a:focus-visible {
	color: var(--color-white);
	background: transparent;
	border-color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
	opacity: 0.86;
}

.site-footer .social-links a:hover img,
.site-footer .social-links a:focus-visible img {
	filter: brightness(0) invert(1);
}

.site-footer__action h2 {
	max-width: 430px;
	text-align: left;
	font-size: 44px;
	color: var(--color-white);
}

.site-footer__action p {
	margin-top: 28px;
	font-size: 17px;
}

.site-footer__cta-buttons {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 34px;
}

.site-footer__cta-buttons .button {
	margin-top: 0;
}

.button--outline-light {
	color: var(--color-white);
	background: transparent;
	border-color: rgba(255, 255, 255, 0.86);
}

.site-footer .button--light:hover,
.site-footer .button--light:focus-visible {
	color: var(--color-gold);
	background: var(--color-white);
	border-color: var(--color-white);
}

.site-footer .button--outline-light:hover,
.site-footer .button--outline-light:focus-visible {
	color: var(--color-gold);
	background: var(--color-white);
	border-color: var(--color-white);
	text-decoration: none;
}

.site-footer__rule {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
	margin-top: 112px;
}

.site-footer__rule span {
	display: block;
	height: 1px;
	background: rgba(255, 255, 255, 0.78);
}

.site-footer__rule-star {
	display: block;
	width: 22px;
	height: auto;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.92;
}

.site-footer__bottom {
	grid-column: 1 / -1;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 28px;
	margin-top: 46px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 14px;
	line-height: 1.35;
}

.site-footer__copyright {
	margin: 0;
}

.site-footer__bottom-left {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
}

.site-footer__legal {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	text-align: left;
}

.site-footer__legal-link {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}

.site-footer .site-footer__cookie-settings {
	display: inline;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	font: inherit;
}

.site-footer__legal-separator {
	margin-inline: 8px;
	opacity: 0.72;
}

.site-footer__credit {
	flex: 0 0 auto;
	color: inherit;
}

.site-footer__legal-link:hover,
.site-footer__legal-link:focus-visible,
.site-footer__credit:hover,
.site-footer__credit:focus-visible {
	color: var(--color-white);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.page-content {
	padding: 76px 0;
}

.entry-content {
	margin-top: 28px;
}

.post-summary + .post-summary {
	margin-top: 38px;
	padding-top: 38px;
	border-top: 1px solid rgba(41, 43, 66, 0.16);
}

@media (max-width: 980px) {
	.site-header__inner {
		width: min(100% - 28px, 680px);
		min-height: 58px;
	}

	.site-brand {
		font-size: 16px;
	}

	.site-nav,
	.site-header__language {
		display: none;
	}

	.menu-toggle {
		display: inline-grid;
		align-content: center;
		gap: 4px;
		width: 32px;
		height: 32px;
		padding: 6px;
		border: 0;
		background: transparent;
		cursor: pointer;
	}

	.menu-toggle__line {
		display: block;
		width: 16px;
		height: 1px;
		background: var(--color-dark);
	}

	.mobile-menu {
		position: fixed;
		inset: 0;
		z-index: 1000;
		display: flex;
		flex-direction: column;
		align-items: center;
		height: 100vh;
		height: 100dvh;
		max-height: 100dvh;
		padding: max(18px, env(safe-area-inset-top)) 38px max(24px, env(safe-area-inset-bottom));
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		background: var(--color-white);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
	}

	.mobile-menu.is-open {
		z-index: 9999;
		color: var(--color-dark);
		background: var(--color-white);
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.mobile-menu.is-open .site-brand,
	.mobile-menu.is-open .mobile-menu__list a {
		color: var(--color-dark);
	}

	.mobile-menu.is-open .mobile-menu__close span::before,
	.mobile-menu.is-open .mobile-menu__close span::after {
		background: var(--color-dark);
	}

	.mobile-menu.is-open .mobile-menu__cta {
		color: var(--color-white);
		background: var(--color-gold);
		border-color: var(--color-gold);
	}

	.mobile-menu.is-open .language-switcher__toggle {
		color: var(--color-gold);
		background: transparent;
		border-color: var(--color-gold);
	}

	.mobile-menu.is-open .language-switcher__dropdown {
		z-index: 10000;
		color: var(--color-gold);
		background: var(--color-white);
		border-color: var(--color-gold);
	}

	.mobile-menu__bar {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
	}

	.mobile-menu__bar .site-brand {
		font-size: 22px;
	}

	.mobile-menu__close {
		position: relative;
		width: 36px;
		height: 36px;
		padding: 0;
		border: 0;
		background: transparent;
		cursor: pointer;
	}

	.mobile-menu__close span::before,
	.mobile-menu__close span::after {
		content: "";
		position: absolute;
		top: 17px;
		left: 7px;
		width: 22px;
		height: 2px;
		background: #111;
	}

	.mobile-menu__close span::before {
		transform: rotate(45deg);
	}

	.mobile-menu__close span::after {
		transform: rotate(-45deg);
	}

	.mobile-menu__nav {
		width: 100%;
		margin-top: 48px;
	}

	.mobile-menu__list {
		flex-direction: column;
		align-items: center;
		gap: 42px;
		font-family: var(--font-heading);
		font-size: 28px;
		line-height: 1;
	}

	.mobile-menu__cta {
		width: min(228px, 100%);
		margin-top: 52px;
	}

	.language-switcher--mobile {
		flex-direction: column;
		align-items: center;
		margin-top: 32px;
		font-size: 18px;
	}

	.language-switcher--mobile .language-switcher__toggle {
		min-width: 92px;
		min-height: 44px;
	}

	.language-switcher--mobile .language-switcher__dropdown {
		position: static;
		min-width: 92px;
		margin-top: 8px;
		transform: none;
	}

	.language-switcher--mobile .language-switcher__link {
		min-width: 52px;
		min-height: 44px;
		text-align: center;
	}

	.home-layout > * {
		width: 100%;
	}

	.hero-section {
		order: 10;
		min-height: auto;
	}

	.hero__inner {
		width: 100%;
		min-height: clamp(420px, 112vw, 580px);
	}

	.hero__content {
		width: min(100% - 28px, 680px);
		max-width: none;
		margin-inline: auto;
		padding: 42px 0 0;
	}

	.hero__visual {
		inset: auto 0 0 0;
		width: 100%;
		height: clamp(270px, 42vw, 390px);
		overflow: hidden;
	}

	.hero__globe {
		right: min(-12vw, -36px);
		width: min(760px, 148vw);
		height: 100%;
		object-fit: contain;
		object-position: right bottom;
	}

	.hero__portrait {
		right: clamp(10px, 7vw, 64px);
		height: clamp(240px, 38vw, 370px);
		max-height: 96%;
	}

	h1 {
		max-width: 268px;
		font-size: 31px;
	}

	.page-content h1 {
		font-size: 29px;
	}

	h2 {
		font-size: 18px;
	}

	h3 {
		font-size: 18px;
	}

	.lead {
		max-width: 236px;
		margin-top: 8px;
		font-size: 15px;
		line-height: 1.25;
	}

	.hero-section .button {
		min-height: 38px;
		margin-top: 13px;
		padding: 10px 20px;
		font-size: 15px;
	}

	.claim-section {
		padding: 26px 0 30px;
	}

	.claim-section p {
		max-width: 276px;
		font-size: 19px;
		line-height: 1.18;
	}

	.claim-section img {
		width: 20px;
		margin-top: 18px;
	}

	.audience-section {
		order: 30;
		padding: 34px 0 36px;
	}

	.audience-section h2 {
		max-width: 220px;
		margin-inline: auto;
		margin-bottom: 22px;
	}

	.audience-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 12px;
		max-width: 320px;
	}

	.audience-section__cta {
		width: min(100%, 220px);
		min-height: 38px;
		margin-top: 24px;
		padding: 10px 20px;
		font-size: 15px;
	}

	.audience-card,
	.proof-card {
		min-height: 0;
		padding: 0;
		text-align: left;
		border: 1px solid var(--color-gold);
		background: var(--color-white);
	}

	.audience-card h3,
	.proof-card h3 {
		margin: 0;
		font-family: var(--font-body);
		font-size: 15px;
		font-weight: 520;
		color: var(--color-dark);
	}

	.accordion-button {
		position: relative;
		display: grid;
		grid-template-columns: 28px 1fr;
		gap: 12px;
		align-items: center;
		min-height: 46px;
		padding: 9px 14px 9px 0;
		text-align: left;
		cursor: pointer;
	}

	.accordion-icon {
		position: relative;
		display: inline-flex;
		order: -1;
		width: 28px;
		height: 28px;
		align-items: center;
		justify-content: center;
		transition: transform 160ms ease;
	}

	.accordion-icon::before {
		content: "";
		position: absolute;
		width: 14px;
		height: 14px;
		background: url("../icons/star-small.svg") center / contain no-repeat;
	}

	.accordion-card.is-open .accordion-icon {
		transform: rotate(45deg);
	}

	.accordion-card:not(.is-open) [data-accordion-panel] {
		display: none;
	}

	.audience-card .accordion-panel,
	.proof-card .accordion-panel {
		padding: 0 16px 14px 40px;
		font-size: 14px;
		line-height: 1.35;
	}

	.services-section {
		order: 40;
		padding: 32px 0 34px;
	}

	.services-section h2 {
		margin-bottom: 28px;
	}

	.services-carousel .carousel__track {
		display: grid;
		grid-template-columns: 1fr;
		gap: 28px;
		max-width: 320px;
		margin-inline: auto;
		overflow: visible;
	}

	.service-card {
		min-height: 0;
		padding: 37px 34px 34px;
	}

	.service-card h3 {
		min-height: 0;
		font-size: 19px;
	}

	.service-card img {
		width: 24px;
		margin: 18px auto 17px;
	}

	.service-card p {
		font-size: 14px;
	}

	.service-card__cta {
		display: inline-flex;
		min-height: 36px;
		padding: 10px 20px;
		font-size: 15px;
	}

	.services-section__cta {
		display: none;
	}

	.services-section .carousel-controls {
		display: none;
	}

	.about-section {
		order: 50;
		padding: 34px 0 36px;
	}

	.about-section__grid {
		display: flex;
		flex-direction: column-reverse;
		gap: 24px;
		max-width: 320px;
		margin-inline: auto;
	}

	.about-section__content {
		font-size: 14px;
		line-height: 1.4;
	}

	.about-section__content h2 {
		margin-bottom: 22px;
		text-align: center;
	}

	.credential {
		align-items: center;
		gap: 10px;
		margin-top: 20px;
		font-size: 14px;
	}

	.credential img {
		width: 94px;
	}

	.about-section__media img {
		width: 100%;
	}

	.proof-block {
		margin-top: 28px;
	}

	.proof-block h2 {
		display: block;
		margin-bottom: 22px;
	}

	.proof-grid {
		grid-template-columns: 1fr;
		gap: 12px;
		max-width: 320px;
		margin-inline: auto;
	}

	.proof-card:not(:first-child)::before {
		content: none;
	}

	.proof-card .accordion-panel {
		display: block;
		color: var(--color-dark);
	}

	.references-section {
		order: 60;
		padding: 35px 0 38px;
	}

	.references-section h2 {
		margin-bottom: 24px;
	}

	.references-carousel {
		max-width: 320px;
		margin-inline: auto;
	}

	.references-carousel .carousel__track {
		display: flex;
		gap: 18px;
		justify-content: flex-start;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}

	.references-carousel:not(.has-overflow) .carousel__track,
	.references-carousel.has-overflow .carousel__track {
		justify-content: flex-start;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}

	.references-carousel.layout-count-1 .reference-card,
	.references-carousel.layout-count-2 .reference-card,
	.references-carousel.layout-count-3 .reference-card {
		flex: 0 0 100%;
		width: 100%;
		scroll-snap-align: center;
	}

	.reference-card {
		flex: 0 0 100%;
		width: 100%;
		min-height: 0;
		padding: 30px 24px;
		scroll-snap-align: center;
	}

	.reference-card h3 {
		margin-bottom: 8px;
		font-size: 19px;
	}

	.reference-card p {
		font-size: 14px;
	}

	.reference-card__meta {
		margin: 0 0 18px;
		font-size: 13px;
	}

	.references-carousel__controls {
		position: absolute;
		top: 50%;
		left: -18px;
		right: -18px;
		display: flex;
		justify-content: space-between;
		margin-top: 0;
		pointer-events: none;
	}

	.references-carousel.layout-count-1 .references-carousel__controls {
		display: none;
	}

	.references-carousel__controls .carousel-control {
		width: 30px;
		height: 30px;
		pointer-events: auto;
	}

	.references-carousel__controls .carousel-control::before {
		width: 8px;
		height: 8px;
	}

	.logos-section {
		order: 70;
		padding: 28px 0 34px;
	}

	.logos-section h2 {
		margin-bottom: 18px;
		font-size: 16px;
	}

	.logos-strip {
		display: flex;
		gap: 24px;
		justify-content: flex-start;
		width: calc(100% + 28px);
		margin-left: -14px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.logos-strip::-webkit-scrollbar {
		display: none;
	}

	.logo-item {
		flex: 0 0 auto;
		min-height: auto;
		padding: 0;
		scroll-snap-align: start;
	}

	.logo-item img {
		max-width: 96px;
		max-height: 42px;
	}

	.site-footer__inner {
		display: block;
		width: min(100% - 56px, 360px);
		padding: 34px 0 36px;
		text-align: center;
	}

	.site-footer__name {
		font-size: 27px;
	}

	.site-footer__subtitle,
	.contact-list,
	.site-footer__action p {
		font-size: 14px;
	}

	.contact-list {
		align-items: center;
		gap: 10px;
		margin-top: 22px;
	}

	.social-links {
		justify-content: center;
		gap: 10px;
		margin-top: 22px;
	}

	.social-links a {
		min-height: 40px;
		padding: 9px 14px;
		font-size: 15px;
	}

	.site-footer__action {
		margin-top: 34px;
	}

	.site-footer__action h2 {
		max-width: 260px;
		margin-inline: auto;
		text-align: center;
		font-size: 31px;
	}

	.site-footer__action p {
		margin-top: 16px;
	}

	.site-footer__cta-buttons {
		flex-direction: column;
		gap: 12px;
		margin-top: 18px;
	}

	.site-footer__cta-buttons .button {
		width: 100%;
		min-height: 42px;
		margin-top: 0;
		padding: 11px 18px;
		font-size: 15px;
	}

	.site-footer__rule {
		margin-top: 30px;
	}

	.site-footer__rule-star {
		width: 20px;
		height: auto;
	}

	.site-footer__bottom {
		flex-direction: column;
		align-items: center;
		gap: 10px;
		margin-top: 9px;
		font-size: 13px;
		text-align: center;
	}

	.site-footer__legal {
		flex-direction: column;
		align-items: center;
		gap: 7px;
		text-align: center;
	}

	.site-footer__bottom-left {
		flex-direction: column;
		align-items: center;
		gap: 7px;
	}

	.site-footer__legal-separator {
		display: none;
	}

	.page-content {
		padding: 46px 0;
	}
}

@media (max-width: 390px) {
	:root {
		--page-gutter: 22px;
	}

	.hero__inner {
		min-height: 430px;
	}

	.hero__visual {
		height: 270px;
	}

	.hero__globe {
		right: -58px;
		width: 560px;
	}

	.hero__portrait {
		right: 8px;
		height: 230px;
	}

	.mobile-menu__list {
		gap: 44px;
	}
}
