*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

body {
	margin: 0;
	font-family: var(--mds-font-body);
	color: var(--mds-text);
	background: var(--mds-background);
	line-height: 1.6;
}

body.is-drawer-open {
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.15em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
	outline: 2px solid var(--mds-red);
	outline-offset: 2px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link:focus {
	clip: auto;
	clip-path: none;
	height: auto;
	width: auto;
	left: 1rem;
	top: 1rem;
	z-index: 100000;
	background: #fff;
	padding: 0.75rem 1rem;
}

.mds-container {
	width: min(100% - (var(--container-padding) * 2), var(--container-width));
	margin-inline: auto;
}

/* —— Header —— */
.site-header {
	position: relative;
	z-index: 1000;
	background: #fff;
	border-bottom: 1px solid var(--mds-border);
	transition: box-shadow var(--mds-motion) ease;
}

.site-header--sticky {
	position: sticky;
	top: 0;
}

.site-header.is-scrolled {
	box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

/* Homepage: transparent overlay header over hero */
body.mds-home .site-header--overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: transparent;
	border-bottom: 0;
	color: #fff;
}

body.mds-home .site-header--overlay.site-header--sticky {
	position: fixed;
}

body.mds-home .site-header--overlay:not(.is-scrolled) .primary-nav__list > li > a {
	color: rgba(255, 255, 255, 0.92);
	border-bottom-color: transparent;
	font-weight: 500;
}

body.mds-home .site-header--overlay:not(.is-scrolled) .primary-nav__list > li.current-menu-item > a,
body.mds-home .site-header--overlay:not(.is-scrolled) .primary-nav__list > li.current_page_item > a,
body.mds-home .site-header--overlay:not(.is-scrolled) .primary-nav__list > li.current-menu-ancestor > a,
body.mds-home .site-header--overlay:not(.is-scrolled) .primary-nav__list > li > a:hover {
	color: #fff;
	border-bottom-color: rgba(255, 255, 255, 0.55);
}

body.mds-home .site-header--overlay:not(.is-scrolled) .site-brand__logo--on-light {
	display: none;
}

body.mds-home .site-header--overlay:not(.is-scrolled) .site-brand__logo--on-dark {
	display: block;
}

body.mds-home .site-header--overlay:not(.is-scrolled) .site-brand__logo,
body.mds-home .site-header--overlay:not(.is-scrolled) .site-brand .custom-logo {
	filter: none;
}

body.mds-home .site-header--overlay:not(.is-scrolled) .site-brand__text {
	color: #fff;
}

body.mds-home .site-header--overlay:not(.is-scrolled) .site-brand__name {
	color: rgba(255, 255, 255, 0.85);
}

body.mds-home .site-header--overlay:not(.is-scrolled) .site-header__search-toggle {
	color: #fff;
}

body.mds-home .site-header--overlay:not(.is-scrolled) .site-header__menu-toggle {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.45);
}

body.mds-home .site-header--overlay:not(.is-scrolled) .site-header__menu-toggle-bars,
body.mds-home .site-header--overlay:not(.is-scrolled) .site-header__menu-toggle-bars::before,
body.mds-home .site-header--overlay:not(.is-scrolled) .site-header__menu-toggle-bars::after {
	background: #fff;
}

body.mds-home .site-header--overlay.is-scrolled {
	background: #fff;
	border-bottom: 1px solid var(--mds-border);
	color: var(--mds-text);
}

body.mds-home .site-header--overlay.is-scrolled .site-brand__logo--on-light {
	display: block;
}

body.mds-home .site-header--overlay.is-scrolled .site-brand__logo--on-dark {
	display: none;
}

body.mds-home .site-header--overlay.is-scrolled .site-brand__logo,
body.mds-home .site-header--overlay.is-scrolled .site-brand .custom-logo {
	filter: none;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: var(--mds-header-height);
}

.site-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
}

.site-brand__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.site-brand__logo,
.site-brand .custom-logo {
	display: block;
	width: auto;
	height: auto;
	max-width: var(--mds-logo-max-width, 380px);
	max-height: var(--mds-logo-max-height, 120px);
	object-fit: contain;
	object-position: left center;
}

.site-brand__logo--on-dark {
	display: none;
}

.site-brand--footer .site-brand__logo {
	max-width: var(--mds-logo-max-width, 300px);
	max-height: var(--mds-logo-max-height, 140px);
	filter: none;
}

.site-brand--footer .site-brand__logo--on-light {
	display: none;
}

.site-brand--footer .site-brand__logo--on-dark {
	display: block;
}

.site-brand--footer .site-brand__mark {
	min-width: 88px;
	height: 60px;
	font-size: 1.75rem;
	background: #fff;
	color: var(--mds-red);
}

.site-brand--footer .site-brand__text {
	display: flex;
	color: #fff;
}

.site-brand--footer .site-brand__name {
	color: rgba(255, 255, 255, 0.85);
}

.site-brand__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 52px;
	height: 36px;
	padding: 0 0.5rem;
	border-radius: 8px;
	background: var(--mds-red);
	color: #fff;
	font-family: var(--mds-font-display);
	font-weight: 800;
	font-size: 1.1rem;
	letter-spacing: -0.03em;
	text-decoration: none;
}

.site-brand__mark-link {
	text-decoration: none;
}

.site-brand__text {
	display: none;
	flex-direction: column;
	min-width: 0;
	text-decoration: none;
	color: var(--mds-text);
}

.site-brand__company {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1.25;
	max-width: 18rem;
}

.site-brand__name {
	font-size: 0.75rem;
	color: var(--mds-red);
	font-weight: 600;
}

.site-header__desktop {
	display: none;
	align-items: center;
	gap: 1.25rem;
	flex: 1;
	justify-content: flex-end;
}

.primary-nav {
	flex: 1;
}

.primary-nav__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.15rem 1.1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav__list > li {
	position: relative;
}

.primary-nav__list a {
	display: inline-block;
	padding: 0.55rem 0;
	font-size: 0.92rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--mds-text);
	border-bottom: 2px solid transparent;
}

.primary-nav__list > li.current-menu-item > a,
.primary-nav__list > li.current_page_item > a,
.primary-nav__list > li.current-menu-ancestor > a {
	color: var(--mds-red);
	border-bottom-color: var(--mds-red);
}

.primary-nav__list .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	margin: 0;
	padding: 0.5rem 0;
	list-style: none;
	background: #fff;
	border: 1px solid var(--mds-border);
	border-radius: var(--mds-radius-small);
	box-shadow: var(--mds-card-shadow);
	z-index: 20;
}

.primary-nav__list > li:hover > .sub-menu,
.primary-nav__list > li:focus-within > .sub-menu {
	display: block;
}

.primary-nav__list .sub-menu a {
	display: block;
	padding: 0.55rem 1rem;
	border: 0;
	font-weight: 500;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.site-header__search {
	position: relative;
}

.site-header__search-toggle {
	list-style: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	color: var(--mds-text);
}

.site-header__search-toggle::-webkit-details-marker {
	display: none;
}

.site-header__search-panel {
	position: absolute;
	right: 0;
	top: calc(100% + 0.5rem);
	width: min(320px, 80vw);
	padding: 0.75rem;
	background: #fff;
	border: 1px solid var(--mds-border);
	border-radius: var(--mds-radius-small);
	box-shadow: var(--mds-card-shadow);
	z-index: 30;
}

.site-header__search-panel .search-form {
	display: flex;
	gap: 0.5rem;
}

.site-header__search-panel input[type="search"] {
	flex: 1;
	min-width: 0;
	padding: 0.55rem 0.75rem;
	border: 1px solid var(--mds-border);
	border-radius: var(--mds-radius-small);
}

.site-header__hotline {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.65rem 1rem;
	border-radius: 999px;
	background: var(--mds-red);
	color: #fff !important;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.92rem;
	white-space: nowrap;
}

.site-header__hotline:hover {
	background: var(--mds-red-dark);
}

.site-header__hotline--icon {
	width: 40px;
	height: 40px;
	padding: 0;
	justify-content: center;
}

.site-header__mobile-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.site-header__menu-toggle {
	appearance: none;
	border: 1px solid var(--mds-border);
	background: #fff;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.site-header__menu-toggle-bars,
.site-header__menu-toggle-bars::before,
.site-header__menu-toggle-bars::after {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--mds-text);
	border-radius: 2px;
	position: relative;
}

.site-header__menu-toggle-bars::before,
.site-header__menu-toggle-bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.site-header__menu-toggle-bars::before {
	top: -6px;
}

.site-header__menu-toggle-bars::after {
	top: 6px;
}

/* Drawer */
.mds-drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(16, 17, 20, 0.45);
	z-index: 1100;
}

.mds-drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: min(360px, 92vw);
	height: 100%;
	background: #fff;
	z-index: 1200;
	display: flex;
	flex-direction: column;
	padding: 1rem 1.25rem 1.5rem;
	box-shadow: -12px 0 40px rgba(16, 24, 40, 0.18);
	transform: translateX(0);
}

.mds-drawer[hidden],
.mds-drawer-overlay[hidden] {
	display: none !important;
}

.mds-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.mds-drawer__title {
	font-weight: 700;
}

.mds-drawer__close {
	appearance: none;
	border: 0;
	background: transparent;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	width: 40px;
	height: 40px;
}

.mds-drawer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mds-drawer__list a {
	display: block;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--mds-border);
	text-decoration: none;
	font-weight: 600;
}

.mds-drawer__list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 0 0.75rem;
}

.mds-drawer__hotline {
	margin-top: auto;
	display: inline-flex;
	justify-content: center;
	padding: 0.85rem 1rem;
	border-radius: 999px;
	background: var(--mds-red);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
}

@media (min-width: 1024px) {
	.site-brand__text {
		display: flex;
	}

	.site-header__desktop {
		display: flex;
	}

	.site-header__mobile-actions {
		display: none;
	}
}

/* —— Footer —— */
.site-footer {
	margin-top: 2rem;
	padding: 3.5rem 0 1.5rem;
	color: rgba(255, 255, 255, 0.88);
	background: linear-gradient(145deg, var(--mds-gold-dark) 0%, #4a3a1f 42%, var(--mds-black) 100%);
}

.site-footer a {
	color: #fff;
	text-decoration: none;
}

.site-footer a:hover {
	text-decoration: underline;
}

.site-footer__grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__heading {
	margin: 0 0 0.85rem;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
}

.site-footer__desc {
	margin: 0.85rem 0 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.95rem;
	max-width: 28rem;
}

.site-footer__list,
.site-footer__contact,
.site-footer__social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.site-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	padding: 0 0.65rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	font-size: 0.75rem;
	font-weight: 600;
}

.site-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding-top: 1.25rem;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.7);
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
}

.site-footer__legal-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__copy {
	margin: 0;
}

@media (min-width: 768px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

@media (min-width: 1100px) {
	.site-footer__grid {
		grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
	}
}

.mds-back-to-top {
	position: fixed;
	right: max(1rem, env(safe-area-inset-right));
	bottom: max(1rem, env(safe-area-inset-bottom));
	z-index: 40;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 0;
	border-radius: var(--mds-radius-small);
	background: var(--mds-navy);
	color: #fff;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(7, 11, 24, 0.28);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.2s ease;
}

.mds-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
}

.mds-back-to-top:hover,
.mds-back-to-top:focus-visible {
	background: var(--mds-red);
	outline: none;
}

.mds-back-to-top:focus-visible {
	box-shadow: 0 0 0 3px rgba(201, 0, 18, 0.35), 0 10px 24px rgba(7, 11, 24, 0.28);
}

@media (prefers-reduced-motion: reduce) {
	.mds-back-to-top {
		transition: none;
	}
}

/* —— Content shell —— */
.site-main {
	padding-block: var(--section-spacing-mobile);
}

@media (min-width: 768px) {
	.site-main {
		padding-block: var(--section-spacing-tablet);
	}
}

@media (min-width: 1024px) {
	.site-main {
		padding-block: var(--section-spacing-desktop);
	}
}

.entry-title,
.page-title {
	font-family: var(--mds-font-display);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	line-height: 1.2;
	color: var(--mds-text);
	margin: 0 0 1rem;
}

.mds-section {
	padding-block: clamp(3rem, 6vw, 6rem);
}

.mds-empty-state {
	padding: 2rem;
	border: 1px dashed var(--mds-border);
	border-radius: var(--radius-md);
	background: var(--mds-background-light);
	text-align: center;
	color: var(--mds-muted);
}

.mds-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition:
		opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.mds-reveal.is-visible {
	opacity: 1;
	transform: none;
}

[data-mds-reveal] {
	opacity: 0;
	transition:
		opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--mds-reveal-delay, 0ms);
	will-change: opacity, transform;
}

[data-mds-reveal='up'] {
	transform: translateY(28px);
}

[data-mds-reveal='fade'] {
	transform: none;
}

[data-mds-reveal='left'] {
	transform: translateX(-28px);
}

[data-mds-reveal='right'] {
	transform: translateX(28px);
}

[data-mds-reveal='scale'] {
	transform: scale(0.96);
}

[data-mds-reveal].is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.mds-reveal,
	[data-mds-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.mds-button {
	display: inline-block;
	padding: 0.85rem 1.4rem;
	border-radius: var(--radius-sm);
	background: var(--mds-red);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.mds-button--secondary {
	background: transparent;
	border: 1px solid currentColor;
}

.mds-button--light {
	background: #fff;
	color: var(--mds-red);
}

.mds-button--light-outline {
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
}

.mds-section__eyebrow {
	margin: 0 0 0.5rem;
	color: var(--mds-red);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.mds-text-highlight {
	color: var(--mds-gold);
}

.mds-section__title {
	font-family: var(--mds-font-display);
	font-size: clamp(1.65rem, 3.2vw, 2.5rem);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--mds-navy);
	margin: 0 0 1rem;
}

.mds-section__title::after {
	content: "";
	display: block;
	width: 2.75rem;
	height: 3px;
	margin-top: 0.7rem;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--mds-gold-dark), var(--mds-gold), var(--mds-gold-light));
}

.mds-about-section-head--center .mds-section__title::after,
.mds-section__header--center .mds-section__title::after,
.mds-section--home-press-insights .mds-section__title::after,
.mds-section--home-faq .mds-section__title::after,
.mds-section--home-solutions .mds-section__title::after {
	margin-left: auto;
	margin-right: auto;
}

.mds-section__description {
	margin: 0 0 1.25rem;
	max-width: 40rem;
	color: var(--mds-muted);
	font-size: 1.05rem;
	line-height: 1.6;
}

.mds-section--page-header {
	padding-block: clamp(2rem, 4vw, 3rem);
	background: var(--mds-background-light);
	border-bottom: 1px solid var(--mds-border);
}

.mds-page-header__title {
	margin: 0 0 0.5rem;
	font-family: var(--mds-font-display);
	font-size: clamp(2rem, 3.2vw, 2.75rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--mds-navy);
}

.mds-page-header__subtitle {
	margin: 0;
	max-width: 40rem;
	color: var(--mds-muted);
	font-size: 1.05rem;
}

.mds-section--content .mds-section__body {
	max-width: 48rem;
}

.mds-section--international-intro .mds-international-intro {
	max-width: 46rem;
}

.mds-international-partners {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.mds-international-partners {
		grid-template-columns: repeat(3, 1fr);
	}
}

.mds-international-partners__item {
	padding: 1.25rem 1.35rem;
	background: var(--mds-background-light);
	border-radius: var(--mds-radius-medium);
	border: 1px solid var(--mds-border);
}

.mds-international-partners__title {
	margin: 0 0 0.5rem;
	font-family: var(--mds-font-display);
	font-size: 1.1rem;
	color: var(--mds-navy);
}

.mds-international-partners__text {
	margin: 0;
	color: var(--mds-muted);
	font-size: 0.95rem;
}

.mds-international-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	align-items: center;
	justify-content: space-between;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	border-radius: var(--mds-radius-large);
	background: linear-gradient(135deg, var(--mds-navy), #12182b);
	color: #fff;
}

.mds-international-cta__title {
	margin: 0 0 0.5rem;
	font-family: var(--mds-font-display);
	font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.mds-international-cta__desc {
	margin: 0;
	opacity: 0.9;
	max-width: 36rem;
}

.mds-international-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.mds-button--ghost-light {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.55);
	color: #fff;
}

.mds-hero__title-part--blue {
	color: var(--mds-gray-light);
}

.mds-hero__title-part--red {
	color: var(--mds-red);
}

.mds-section--home-final-cta.mds-section--bg-solid_red {
	background: var(--mds-red-dark);
	color: #fff;
}

.mds-section--home-final-cta.mds-section--bg-navy {
	background: linear-gradient(135deg, var(--mds-navy), #12182b);
	color: #fff;
}
