:root {
	--fx-primary: #0a56b5;
	--fx-cta: #e28820;
	--fx-support: #8faf9f;
	--fx-bg: #ffffff;
	--fx-bg-soft: #f7f9fc;
	--fx-surface: #ffffff;
	--fx-border: #e3e8ef;
	--fx-text: #1f2937;
	--fx-text-muted: #5b6676;
	--fx-heading: #162033;
	--fx-cta-hover: #c97718;
	--fx-primary-soft: rgba(10, 86, 181, 0.08);
	--fx-support-soft: rgba(143, 175, 159, 0.14);
	--fx-shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
	--fx-shadow-md: 0 10px 30px rgba(15, 23, 42, 0.07);
	--fx-shadow-cta: 0 8px 18px rgba(226, 136, 32, 0.18);
	--fx-radius-sm: 12px;
	--fx-radius-md: 18px;
	--fx-radius-lg: 24px;
	--fx-max-width: 1180px;
}

@font-face {
	font-family: "Noto Sans";
	src:
		url("../fonts/NotoSans-Regular.woff2") format("woff2"),
		url("../fonts/NotoSans-Regular.woff") format("woff"),
		url("../fonts/NotoSans-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Noto Sans Armenian";
	src:
		url("../fonts/NotoSansArmenian-Regular.woff2") format("woff2"),
		url("../fonts/NotoSansArmenian-Regular.woff") format("woff"),
		url("../fonts/NotoSansArmenian-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--fx-bg);
	color: var(--fx-text);
	font-family: "Noto Sans", system-ui, sans-serif;
	line-height: 1.6;
}

.lang-hy body,
body.lang-hy,
html[lang^="hy"] body {
	font-family: "Noto Sans Armenian", "Noto Sans", system-ui, sans-serif;
}

.lang-ru body,
body.lang-ru,
html[lang^="ru"] body {
	font-family: "Noto Sans", "Noto Sans Armenian", system-ui, sans-serif;
}

a {
	color: var(--fx-primary);
	text-decoration: none;
	transition:
		color 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

a:hover {
	color: #084491;
}

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

strong {
	color: var(--fx-heading);
}

.container {
	width: min(calc(100% - 2rem), var(--fx-max-width));
	margin: 0 auto;
}

.site-main {
	min-height: 60vh;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--fx-border);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
	min-height: 82px;
	padding: 0.9rem 0;
}

.site-header__panel {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	gap: 1.5rem;
	min-width: 0;
}

.site-branding {
	min-width: 0;
}

.site-branding__link {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	color: inherit;
	min-width: 0;
}

.site-branding__mark,
.site-footer__mark {
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background:
		radial-gradient(circle at 30% 30%, rgba(226, 136, 32, 0.95), rgba(226, 136, 32, 0.72) 35%, transparent 36%),
		linear-gradient(135deg, rgba(10, 86, 181, 0.14), rgba(143, 175, 159, 0.25));
	border: 1px solid rgba(10, 86, 181, 0.1);
	position: relative;
	overflow: hidden;
}

.site-branding__mark::after,
.site-footer__mark::after {
	content: "";
	position: absolute;
	inset: 8px;
	border: 1.5px solid rgba(10, 86, 181, 0.24);
	border-radius: 10px;
}

.site-branding__logo {
	display: inline-flex;
	align-items: center;
}

.site-branding__logo .custom-logo-link {
	display: inline-flex;
}

.site-branding__logo .custom-logo-link img,
.custom-logo-link img {
	max-height: 52px;
	width: auto;
}

.site-branding__text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.site-branding__text strong {
	display: block;
	font-size: 16px;
	letter-spacing: 0.01em;
}

.site-branding__text span {
	display: block;
	font-size: 13px;
	color: var(--fx-text-muted);
	line-height: 1.35;
}

.site-branding__text--with-logo {
	display: none;
}

.site-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.3rem;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid rgba(10, 86, 181, 0.16);
	border-radius: 14px;
	background: #fff;
	color: var(--fx-heading);
	box-shadow: var(--fx-shadow-sm);
	cursor: pointer;
}

.site-header__toggle-line {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition:
		transform 0.2s ease,
		opacity 0.2s ease;
}

.primary-nav {
	display: flex;
	flex: 1 1 18rem;
	justify-content: center;
}

.primary-nav .menu,
.footer-nav .menu {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav a,
.footer-nav a {
	color: var(--fx-text);
	font-size: 15px;
}

.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a,
.footer-nav .current-menu-item > a,
.footer-nav .current_page_item > a {
	color: var(--fx-primary);
}

.primary-nav__fallback-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
}

.primary-nav .menu > ul,
.footer-nav .menu > ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-header__actions {
	display: flex;
	align-items: center;
	margin-left: auto;
	gap: 0.85rem;
}

.language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}

.language-switcher a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	font-size: 13px;
	color: var(--fx-primary);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
	color: var(--fx-primary-strong, var(--fx-primary));
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 48px;
	padding: 0 1.25rem;
	border: 1px solid transparent;
	border-radius: var(--fx-radius-sm);
	font-size: 15px;
	font-weight: 600;
	box-shadow: 0 0 0 0 rgba(10, 86, 181, 0);
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.button:not(.button--primary):not(.button--ghost) {
	background: #fff;
	border-color: rgba(10, 86, 181, 0.18);
	color: var(--fx-primary);
}

.button:not(.button--primary):not(.button--ghost):hover {
	background: var(--fx-primary-soft);
	border-color: rgba(10, 86, 181, 0.28);
	color: var(--fx-primary);
}

.button--primary {
	background: var(--fx-cta);
	color: #fff;
	box-shadow: var(--fx-shadow-cta);
}

.button--primary:hover {
	background: var(--fx-cta-hover);
	color: #fff;
}

.button--ghost {
	background: #fff;
	border-color: rgba(10, 86, 181, 0.18);
	color: var(--fx-primary);
}

.button--ghost:hover {
	background: var(--fx-primary-soft);
	border-color: rgba(10, 86, 181, 0.28);
	color: var(--fx-primary);
}

.button:focus-visible,
.wpcf7-submit:focus-visible,
input[type="submit"]:focus-visible,
button[type="submit"]:focus-visible {
	outline: none;
	box-shadow: 0 0 0 4px var(--fx-primary-soft);
}

.hero,
.content-shell {
	padding: 4rem 0;
}

.section {
	padding: 2rem 0 4.5rem;
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
	gap: 2rem;
	align-items: center;
}

.hero__stack {
	max-width: 52rem;
}

.hero--page .hero__stack {
	display: grid;
	gap: 1.1rem;
}

.section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin: 0 0 1rem;
	padding: 0.5rem 0.9rem;
	border-radius: 999px;
	background: var(--fx-support-soft);
	color: #496456;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: none;
}

.section-kicker::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--fx-support);
}

.hero__title,
.page-entry__title,
.single-entry__title,
.archive-title,
.entry-card__title {
	margin: 0 0 1rem;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: var(--fx-heading);
}

.hero__title {
	max-width: 11ch;
	font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.hero__title--page {
	max-width: 14ch;
}

.hero__content,
.page-entry__content,
.single-entry__content,
.archive-description,
.entry-card__content,
.service-card__text,
.faq-item__content,
.site-footer__tagline,
.site-footer__copy {
	color: var(--fx-text-muted);
}

.page-entry__content > :first-child,
.single-entry__content > :first-child,
.entry-card__content > :first-child {
	margin-top: 0;
}

.page-entry__content > :last-child,
.single-entry__content > :last-child,
.entry-card__content > :last-child {
	margin-bottom: 0;
}

.hero__content {
	max-width: 40rem;
	font-size: 1.05rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin: 1.75rem 0 1.5rem;
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.25rem;
	font-size: 14px;
	color: var(--fx-text-muted);
}

.hero__meta span {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
}

.hero__meta span::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--fx-support);
}

.hero-card {
	padding: 1.75rem;
	border-radius: var(--fx-radius-lg);
	background: linear-gradient(180deg, #ffffff, var(--fx-bg-soft));
	border: 1px solid var(--fx-border);
	box-shadow: var(--fx-shadow-md);
}

.hero-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.hero-card__tag,
.hero-card__status {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
}

.hero-card__tag {
	background: var(--fx-primary-soft);
	color: var(--fx-primary);
}

.hero-card__status {
	background: var(--fx-support-soft);
	color: #5f7e6f;
}

.hero-card__box {
	padding: 1.25rem;
	border: 1px solid var(--fx-border);
	border-radius: var(--fx-radius-md);
	background: #fff;
}

.hero-card__box h3 {
	margin: 0 0 0.6rem;
	color: var(--fx-heading);
	font-size: 1.25rem;
}

.hero-card__box p {
	margin: 0;
	color: var(--fx-text-muted);
}

.service-grid,
.stats-grid,
.values-grid,
.mini-list {
	display: grid;
	gap: 1.125rem;
}

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

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

.service-card,
.stat-card,
.faq-item,
.teaser-shell,
.form-shell__body,
.contact-shell,
	.legal-shell,
	.entry-card,
	.page-entry,
	.single-entry,
	.partner-card {
	background: var(--fx-surface);
	border: 1px solid var(--fx-border);
	box-shadow: var(--fx-shadow-sm);
}

.service-card,
.stat-card,
.faq-item,
.entry-card,
.page-entry,
.single-entry {
	padding: 1.5rem;
	border-radius: var(--fx-radius-md);
}

.service-card {
	position: relative;
	overflow: hidden;
}

.service-card--compact {
	min-height: 100%;
	padding: 1.35rem;
}

.service-card--compact .service-card__title {
	font-size: 1.15rem;
	margin-bottom: 0;
}

.value-card {
	background: linear-gradient(180deg, #ffffff, var(--fx-bg-soft));
}

.value-card .service-card__title {
	font-size: 1.08rem;
}

.value-card .service-card__text {
	font-size: 0.97rem;
}

.stat-card {
	background: linear-gradient(180deg, #ffffff, var(--fx-bg-soft));
}

.service-card:hover {
	transform: translateY(-2px);
	border-color: rgba(143, 175, 159, 0.55);
	box-shadow: var(--fx-shadow-md);
}

.service-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 1rem;
	border-radius: 14px;
	background: var(--fx-support-soft);
	color: #5f7e6f;
	font-size: 0.9rem;
	font-weight: 700;
}

.service-card__title,
.stat-card__title {
	margin-top: 0;
	margin-bottom: 0.75rem;
	color: var(--fx-heading);
}

.entry-card__title a,
.site-footer__contact a,
.footer-nav__links a {
	color: inherit;
}

.entry-card__title a:hover,
.site-footer__contact a:hover,
.footer-nav__links a:hover {
	color: var(--fx-primary);
}

.stat-card__value {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--fx-heading);
}

.stat-card__suffix {
	margin-bottom: 0;
}

.faq-layout,
.form-shell {
	display: grid;
	grid-template-columns: minmax(0, 18rem) minmax(0, 1fr);
	gap: 1.5rem;
	align-items: start;
}

.section--faq {
	background: var(--fx-bg-soft);
}

.faq-list {
	display: grid;
	gap: 1rem;
}

.info-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.info-card {
	padding: 1.1rem 1.25rem;
	border: 1px solid var(--fx-border);
	border-radius: var(--fx-radius-md);
	background: #fff;
	box-shadow: var(--fx-shadow-sm);
}

.info-card__text {
	margin: 0;
	color: var(--fx-heading);
	font-weight: 600;
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	cursor: pointer;
	font-weight: 600;
	color: var(--fx-heading);
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: var(--fx-support-soft);
	color: #5f7e6f;
	font-size: 1.2rem;
	line-height: 1;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		color 0.2s ease;
}

.faq-item[open] {
	border-color: rgba(10, 86, 181, 0.24);
	box-shadow: var(--fx-shadow-md);
}

.faq-item[open] summary::after {
	content: "−";
	background: var(--fx-primary-soft);
	color: var(--fx-primary);
}

.faq-item__content {
	padding-top: 1rem;
}

.faq-copy__intro,
.form-shell__copy {
	margin: 0;
	max-width: 28rem;
	color: var(--fx-text-muted);
}

.section-copy {
	display: grid;
	gap: 0.65rem;
}

.section-copy__text {
	margin: 0;
	max-width: 40rem;
	color: var(--fx-text-muted);
}

.teaser-shell,
.contact-shell,
.legal-shell,
.form-shell__body {
	padding: 1.5rem;
	border-radius: var(--fx-radius-md);
}

.teaser-shell {
	background: linear-gradient(180deg, #ffffff, var(--fx-bg-soft));
}

.form-shell__body {
	background: linear-gradient(180deg, #ffffff, var(--fx-bg-soft));
}

.form-shell__fallback {
	display: grid;
	gap: 1rem;
}

.form-shell__fallback-title {
	margin: 0;
	color: var(--fx-heading);
	font-size: clamp(1.35rem, 2.4vw, 1.8rem);
	line-height: 1.2;
}

.form-shell__fallback-text,
.form-shell__preview-copy {
	margin: 0;
	color: var(--fx-text-muted);
}

.form-shell__placeholder {
	display: grid;
	gap: 0.8rem;
	margin-top: 0.5rem;
}

.form-shell__placeholder-line,
.form-shell__placeholder-submit {
	display: block;
	border-radius: 12px;
	background: linear-gradient(90deg, rgba(227, 232, 239, 0.85), rgba(247, 249, 252, 1));
	border: 1px solid rgba(227, 232, 239, 0.9);
}

.form-shell__placeholder-line {
	height: 48px;
}

.form-shell__placeholder-line--short {
	width: 48%;
}

.form-shell__placeholder-submit {
	width: 180px;
	height: 48px;
	background: linear-gradient(180deg, rgba(226, 136, 32, 0.2), rgba(226, 136, 32, 0.14));
	border-color: rgba(226, 136, 32, 0.26);
}

.contact-shell,
.legal-shell,
.page-entry,
.single-entry,
.entry-card {
	box-shadow: var(--fx-shadow-sm);
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
	gap: 1.5rem;
	align-items: start;
}

.contact-shell__title {
	margin: 0 0 0.75rem;
	color: var(--fx-heading);
	font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.contact-shell__lead {
	margin: 0;
	color: var(--fx-text-muted);
}

.contact-aside {
	display: grid;
	gap: 1rem;
}

.contact-card {
	padding: 1.25rem;
	border: 1px solid var(--fx-border);
	border-radius: var(--fx-radius-md);
	background: #fff;
	box-shadow: var(--fx-shadow-sm);
}

.contact-card--accent {
	background: linear-gradient(180deg, #ffffff, var(--fx-bg-soft));
}

.contact-card__label {
	margin: 0 0 0.5rem;
	color: var(--fx-text-muted);
	font-size: 0.95rem;
}

.contact-card__value {
	color: var(--fx-heading);
	font-size: 1.05rem;
	font-weight: 700;
}

.contact-card__text {
	margin: 0 0 1rem;
	color: var(--fx-text-muted);
}

.contact-shell .page-entry__content {
	max-width: 40rem;
}

.archive-header {
	margin-bottom: 1.5rem;
}

.archive-description {
	max-width: 42rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="date"],
textarea,
select {
	width: 100%;
	padding: 0.9rem 1rem;
	border: 1px solid var(--fx-border);
	border-radius: var(--fx-radius-sm);
	background: #fff;
	color: var(--fx-text);
	font: inherit;
}

input::placeholder,
textarea::placeholder {
	color: var(--fx-text-muted);
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--fx-primary);
	box-shadow: 0 0 0 4px var(--fx-primary-soft);
}

.wpcf7 form,
.wpcf7-form {
	display: grid;
	gap: 1rem;
}

.wpcf7 p {
	margin: 0;
}

.wpcf7 label {
	display: grid;
	gap: 0.45rem;
	color: var(--fx-heading);
	font-weight: 600;
}

.wpcf7-submit,
input[type="submit"],
button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 1.25rem;
	border: 1px solid transparent;
	border-radius: var(--fx-radius-sm);
	background: var(--fx-cta);
	color: #fff;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	box-shadow: var(--fx-shadow-cta);
}

.wpcf7-submit:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
	background: var(--fx-cta-hover);
}

.wpcf7-response-output {
	margin: 0 !important;
	border-radius: var(--fx-radius-sm);
}

.wpcf7-not-valid-tip {
	font-size: 0.9rem;
}

.teaser-shell__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.mini-list__item,
.partner-card {
	padding: 1rem 1.25rem;
	border-radius: var(--fx-radius-sm);
}

.mini-list__item {
	border: 1px solid var(--fx-border);
	background: #fff;
	color: var(--fx-heading);
	font-weight: 600;
	box-shadow: var(--fx-shadow-sm);
}

.partners-slider {
	--partner-gap: 1rem;
	display: grid;
	grid-auto-columns: calc((100% - (var(--partner-gap) * 3)) / 4);
	grid-auto-flow: column;
	gap: var(--partner-gap);
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-snap-type: inline mandatory;
	scrollbar-width: thin;
	padding-bottom: 0.25rem;
}

.partner-card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 112px;
	padding: 1rem;
	scroll-snap-align: start;
}

.partner-card__logo {
	display: block;
	width: min(100%, 160px);
	height: auto;
	max-height: 80px;
	object-fit: contain;
}

.teaser-shell--partners {
	display: grid;
	gap: 1.25rem;
}

.site-footer {
	background: var(--fx-bg-soft);
	border-top: 1px solid var(--fx-border);
}

.site-footer .container {
	width: min(calc(100% - 3rem), 1360px);
	padding: 2rem 4rem;
}

.site-footer__inner {
	display: grid;
	gap: 2rem;
	padding: 2rem 0;
}

.site-footer__top,
.site-footer__bottom {
	display: grid;
	grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
	align-items: center;
	gap: 1.5rem 2rem;
}

.site-footer__bottom {
	grid-template-columns: minmax(0, 1fr) auto;
	padding-top: 1rem;
	border-top: 1px solid var(--fx-border);
}

.site-footer__brand {
	min-width: 0;
	justify-self: start;
}

.site-footer__brand-head {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}

.site-footer__logo-link {
	display: inline-flex;
	align-items: center;
}

.site-footer__logo {
	display: block;
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.site-footer__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--fx-heading);
}

.site-footer__tagline {
	margin: 0.15rem 0 0;
}

.site-footer__note {
	margin: 0;
	color: var(--fx-text-muted);
	max-width: 52rem;
}

.site-footer__contact,
.footer-nav__links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
}

.site-footer__contact {
	justify-self: end;
	justify-content: flex-end;
}

.footer-nav {
	display: flex;
	justify-content: center;
	min-width: 0;
	justify-self: center;
}

.footer-nav .menu,
.footer-nav .menu > ul,
.footer-nav__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-nav .menu > li,
.footer-nav .menu > ul > li,
.footer-nav__links > a {
	list-style: none;
}

.site-footer__copy {
	margin: 0;
	white-space: nowrap;
	text-align: right;
	justify-self: end;
}

.page-entry__title,
.single-entry__title,
.archive-title {
	font-size: clamp(2rem, 4vw, 3.2rem);
}

@media (max-width: 960px) {
	.site-footer__top,
	.site-footer__bottom {
		grid-template-columns: 1fr;
	}

	.site-header__inner {
		min-height: auto;
		align-items: flex-start;
	}

	.primary-nav,
	.site-header__actions {
		width: 100%;
	}

	.primary-nav {
		justify-content: flex-start;
	}

	.site-header__panel {
		width: 100%;
	}

	.service-grid,
	.values-grid,
	.stats-grid,
	.mini-list,
	.info-list,
	.hero__grid,
	.faq-layout,
	.form-shell,
	.contact-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.container {
		width: min(calc(100% - 1.5rem), var(--fx-max-width));
	}

	.site-branding__link {
		align-items: flex-start;
	}

	.site-branding__text strong {
		font-size: 15px;
	}

	.site-header__inner {
		align-items: center;
		flex-wrap: nowrap;
		gap: 1rem;
		padding: 0.8rem 0;
	}

	.site-branding {
		min-width: 0;
	}

	.site-branding__text span {
		display: none;
	}

	.site-header__toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.js .site-header__panel {
		display: none;
		position: absolute;
		top: calc(100% + 1px);
		left: 0;
		right: 0;
		z-index: 20;
		padding: 1rem 0 1.25rem;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(12px);
		border-bottom: 1px solid var(--fx-border);
		box-shadow: var(--fx-shadow-md);
	}

	.site-header.is-menu-open .site-header__panel {
		display: grid;
		gap: 1rem;
	}

	.site-header.is-menu-open .site-header__toggle-line:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.site-header.is-menu-open .site-header__toggle-line:nth-child(2) {
		opacity: 0;
	}

	.site-header.is-menu-open .site-header__toggle-line:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.site-header__panel .primary-nav,
	.site-header__panel .site-header__actions {
		width: min(calc(100% - 1.5rem), var(--fx-max-width));
		margin: 0 auto;
	}

	.site-header__panel .primary-nav .menu,
	.site-header__panel .primary-nav .menu > ul,
	.site-header__panel .primary-nav__fallback-links {
		width: 100%;
	}

	.primary-nav .menu,
	.footer-nav .menu,
	.primary-nav__fallback-links {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.site-header__actions {
		flex-direction: column;
		align-items: stretch;
		margin-left: 0;
		gap: 0.85rem;
	}

	.language-switcher {
		width: 100%;
		justify-content: flex-start;
		padding: 0;
	}

	.site-header__panel .language-switcher,
	.site-header__panel .button {
		width: 100%;
	}

	.site-header__panel .language-switcher a {
		display: inline-flex;
		align-self: flex-start;
	}

	.site-header__panel .button {
		justify-content: center;
	}

	.hero,
	.content-shell {
		padding: 3rem 0;
	}

	.hero__content {
		font-size: 1rem;
	}

	.hero__actions {
		margin: 1.35rem 0 1.2rem;
	}

	.hero__meta {
		gap: 0.75rem 1rem;
	}

	.hero-card__top {
		flex-direction: column;
		align-items: flex-start;
	}

	.section {
		padding: 1.5rem 0 3.5rem;
	}

	.service-card,
	.stat-card,
	.faq-item,
	.info-card,
	.contact-card,
	.teaser-shell,
	.form-shell__body,
	.contact-shell,
	.page-entry,
	.single-entry {
		padding: 1.2rem;
	}

	.teaser-shell__head {
		flex-direction: column;
		align-items: flex-start;
	}

	.partners-slider {
		grid-auto-columns: calc((100% - 1rem) / 1.5);
	}
}

@media (max-width: 560px) {
	.primary-nav a,
	.footer-nav a,
	.primary-nav__fallback-links a,
	.footer-nav__links a {
		font-size: 14px;
	}

	.site-header__panel .site-header__actions,
	.hero__actions {
		width: 100%;
	}

	.button,
	.button--primary,
	.button--ghost {
		width: 100%;
	}

	.hero__title {
		max-width: 100%;
		font-size: clamp(2rem, 10vw, 2.5rem);
	}

	.hero-card,
	.hero-card__box {
		padding: 1rem;
	}

	.site-footer__inner {
		gap: 1.4rem;
		padding: 1.6rem 0;
	}

	.site-footer__top,
	.site-footer__bottom,
	.footer-nav,
	.footer-nav .menu,
	.footer-nav .menu > ul,
	.site-footer__contact,
	.footer-nav__links {
		justify-content: flex-start;
	}

	.site-footer__contact,
	.footer-nav,
	.site-footer__copy {
		justify-self: start;
	}

	.site-footer__copy {
		white-space: normal;
		text-align: left;
	}
}
