/*
Theme Name: Grinity Garant Theme
Theme URI: https://grinity-garant.ru
Description: Современная тема для кадрового агентства в тёмных тонах с зелёными акцентами.
Version: 1.8.7
Author: AI Collaborator
Text Domain: grinity-garant
*/

:root {
	--accent-green: #00ff66;
	--accent-green-hover: #00db58;
	--bg-page: #0a0a0a;
	--bg-surface: #161616;
	--bg-surface-soft: #111;
	--border-color: #333;
	--text-main: #e0e0e0;
	--text-secondary: #c7cbc9;
	--text-muted: #aaa;
	--header-nav-height: 76px;
	--header-contact-height: 32px;
	--header-height: calc(var(--header-nav-height) + var(--header-contact-height));
	--content-width: 1200px;
	--narrow-width: 820px;
	--radius: 12px;
}

html {
	scroll-behavior: smooth;
}

/* Native focus/validation must keep fields below the sticky site header. */
html:root {
	scroll-padding-top: calc(var(--header-height) + var(--header-sticky-offset, 0px) + 20px);
}

html:has(body.admin-bar) {
	--header-sticky-offset: 32px;
}

@media (max-width: 782px) {
	html:has(body.admin-bar) { --header-sticky-offset: 46px; }
}

/* Below 600px the WordPress toolbar scrolls away instead of staying fixed. */
@media (max-width: 600px) {
	html:has(body.admin-bar) { --header-sticky-offset: 0px; }
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--bg-page);
	color: var(--text-main);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
}

body.menu-open {
	overflow: hidden;
}

body.menu-open::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 900;
	background: rgba(0, 0, 0, 0.64);
	backdrop-filter: blur(3px);
	pointer-events: none;
}

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

a {
	color: var(--accent-green);
	text-underline-offset: 0.2em;
}

a:hover,
a:focus-visible {
	color: var(--accent-green-hover);
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid var(--accent-green);
	outline-offset: 3px;
}

.container {
	width: min(100% - 40px, var(--content-width));
	margin-inline: auto;
}

.container--narrow {
	max-width: var(--narrow-width);
}

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

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 10px 16px;
	clip: auto;
	background: #fff;
	color: #000;
}

/* Header and navigation */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	min-height: var(--header-height);
	background: rgba(9, 11, 10, 0.9);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(20px) saturate(125%);
	transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 1px;
	background: linear-gradient(90deg, var(--accent-green) 0 8%, rgba(0, 255, 102, 0.18) 22%, rgba(255, 255, 255, 0.04) 60%, transparent 100%);
	opacity: 0.48;
	pointer-events: none;
}

.site-header.is-scrolled {
	background: rgba(7, 9, 8, 0.97);
	border-bottom-color: rgba(0, 255, 102, 0.12);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.admin-bar .site-header {
	top: var(--header-sticky-offset, 32px);
}

.site-header__contact-bar {
	min-height: var(--header-contact-height);
	background: rgba(255, 255, 255, 0.018);
	border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.site-header__contact-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--header-contact-height);
	gap: 24px;
}

.header-availability,
.header-contacts,
.header-contacts a {
	display: flex;
	align-items: center;
}

.header-availability {
	gap: 7px;
	color: #727c76;
	font-size: 0.7rem;
	font-weight: 650;
	letter-spacing: 0.035em;
}

.header-availability i {
	display: block;
	width: 6px;
	height: 6px;
	background: var(--accent-green);
	border-radius: 50%;
	box-shadow: 0 0 8px rgba(0, 255, 102, 0.55);
}

.header-contacts {
	justify-content: flex-end;
	gap: 0;
}

.header-contacts a {
	min-height: 22px;
	padding: 0 14px;
	gap: 7px;
	color: #9ca69f;
	border-right: 1px solid rgba(255, 255, 255, 0.075);
	font-size: 0.7rem;
	font-weight: 650;
	line-height: 1;
	text-decoration: none;
	transition: color 0.2s ease;
}

.header-contacts a:first-child {
	padding-left: 0;
}

.header-contacts a:last-child {
	padding-right: 0;
	border-right: 0;
}

.header-contacts a:hover,
.header-contacts a:focus-visible {
	color: var(--accent-green);
}

.header-contacts svg {
	flex: 0 0 auto;
}

.header-contact__compact {
	display: none;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--header-nav-height);
	gap: 28px;
	transition: min-height 0.25s ease;
}

.site-header.is-scrolled .site-header__inner {
	min-height: var(--header-nav-height);
}

.site-branding,
.site-branding .custom-logo-link,
.site-logo-link {
	display: flex;
	align-items: center;
	line-height: 0;
}

.site-branding {
	position: relative;
	padding-right: 28px;
}

.site-branding::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 28px;
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16), transparent);
	transform: translateY(-50%);
}

.site-branding .custom-logo,
.site-logo-img {
	display: block;
	width: auto;
	max-height: 48px;
	transition: filter 0.25s ease, transform 0.25s ease;
}

.site-branding a:hover .custom-logo,
.site-branding a:focus-visible .custom-logo,
.site-logo-link:hover .site-logo-img,
.site-logo-link:focus-visible .site-logo-img {
	filter: drop-shadow(0 0 10px rgba(0, 255, 102, 0.18));
	transform: translateY(-1px);
}

.main-navigation {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-left: auto;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 25px;
	list-style: none;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.nav-menu > li {
	position: relative;
}

.nav-menu a {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 11px 0;
	color: #bfc6c2;
	border: 0;
	border-radius: 0;
	font-size: 0.86rem;
	font-weight: 650;
	letter-spacing: 0.012em;
	line-height: 1.2;
	white-space: nowrap;
	text-decoration: none;
	transition: color 0.2s ease;
}

.nav-menu a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 3px;
	left: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-green), #70ffa8);
	border-radius: 999px;
	box-shadow: 0 0 9px rgba(0, 255, 102, 0.34);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.22s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
	color: #fff;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
	transform: scaleX(0.42);
}

.nav-menu .current-menu-item:not(.menu-item-type-custom) > a,
.nav-menu .current_page_item:not(.menu-item-type-custom) > a,
.nav-menu .is-page-active > a,
.nav-menu .is-section-active > a {
	color: #fff;
}

.nav-menu .current-menu-item:not(.menu-item-type-custom) > a::after,
.nav-menu .current_page_item:not(.menu-item-type-custom) > a::after,
.nav-menu .is-page-active > a::after,
.nav-menu .is-section-active > a::after {
	transform: scaleX(1);
}

.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 8px 8px 8px 15px;
	gap: 10px;
	color: #edf5f0;
	background: rgba(0, 255, 102, 0.045);
	border: 1px solid rgba(0, 255, 102, 0.28);
	border-radius: 10px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
	font-size: 0.87rem;
	font-weight: 750;
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.header-cta svg {
	width: 26px;
	height: 26px;
	padding: 4px;
	color: #07120b;
	background: var(--accent-green);
	border-radius: 7px;
	transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
	color: #fff;
	background: rgba(0, 255, 102, 0.09);
	border-color: rgba(0, 255, 102, 0.52);
	transform: translateY(-1px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.header-cta:hover svg,
.header-cta:focus-visible svg {
	transform: translateX(2px);
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 7px;
	flex: 0 0 auto;
	color: #fff;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	font: inherit;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.menu-toggle__label {
	display: none;
}

.menu-toggle__icon {
	display: flex;
	width: 28px;
	height: 28px;
	padding: 7px 5px;
	flex-direction: column;
	justify-content: space-between;
	background: rgba(0, 255, 102, 0.12);
	border-radius: 8px;
}

.menu-toggle__icon span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--accent-green);
	border-radius: 999px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] {
	color: var(--accent-green);
	background: rgba(0, 255, 102, 0.08);
	border-color: rgba(0, 255, 102, 0.28);
}

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

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

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

/* Shared typography and components */
.site-main {
	min-height: 60vh;
}

.standard-page,
.archive-page,
.single-entry-page,
.content-listing,
.about-page-main {
	padding: 72px 0 96px;
}

.page-header {
	margin-bottom: 40px;
}

.page-header--centered {
	text-align: center;
}

.page-title,
.entry-title {
	margin: 0 0 28px;
	color: #fff;
	font-size: clamp(2rem, 4vw, 2.75rem);
	line-height: 1.15;
}

.page-title--accent {
	color: var(--accent-green);
}

.entry-title a {
	color: inherit;
	text-decoration: none;
}

.page-lead,
.section-subtitle,
.about-hero > p,
.archive-description {
	color: var(--text-muted);
	font-size: 1.1rem;
}

.page-lead {
	max-width: 800px;
	margin: -12px 0 40px;
}

.archive-description {
	max-width: 780px;
	margin: -12px auto 0;
}

.page-intro {
	margin-bottom: 40px;
}

.section-title {
	margin: 0 0 40px;
	color: #fff;
	font-size: clamp(1.8rem, 3vw, 2.25rem);
	line-height: 1.2;
	text-align: center;
}

.section-title--accent {
	color: var(--accent-green);
}

.section-subtitle {
	margin: -24px auto 40px;
	text-align: center;
}

.surface-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
}

.surface-card h2,
.surface-card h3,
.contact-info h2,
.contact-info h3 {
	margin-top: 0;
	color: var(--accent-green);
}

.entry-content {
	color: var(--text-main);
	line-height: 1.8;
}

.entry-content > :first-child {
	margin-top: 0;
}

.entry-content > :last-child {
	margin-bottom: 0;
}

.entry-content iframe,
.entry-content video {
	max-width: 100%;
}

.entry-thumbnail {
	display: block;
	margin-bottom: 24px;
}

.entry-thumbnail img {
	display: block;
	width: 100%;
	border-radius: 8px;
}

.content-entry {
	padding: 32px;
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
}

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

.content-entry--single {
	padding: 40px;
}

.content-entry .entry-title {
	font-size: clamp(1.6rem, 3vw, 2rem);
}

.content-entry--single .entry-title,
.standard-page .content-entry .page-title {
	font-size: clamp(2rem, 4vw, 2.75rem);
}

.text-link,
.back-links a,
.section-more a {
	font-weight: 700;
	text-decoration: none;
}

.back-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
	margin-top: 40px;
}

.empty-message,
.no-results {
	width: 100%;
	color: var(--text-muted);
	text-align: center;
}

.no-results .hero-btn {
	margin-top: 16px;
}

/* Hero and landing page */
.hero-section {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - var(--header-height));
	overflow: hidden;
	text-align: center;
}

.hero-bg-slider,
.hero-bg-slide,
.hero-overlay {
	position: absolute;
	inset: 0;
}

.hero-bg-slider {
	z-index: 1;
}

.hero-bg-slide {
	background-position: center;
	background-size: cover;
	background-color: #0d1b14;
	opacity: 0;
	animation: hero-fade 18s infinite;
}

.hero-bg-slide:nth-child(1) {
	background-image:
		linear-gradient(90deg, rgba(4, 12, 8, 0.92) 0%, rgba(4, 12, 8, 0.54) 50%, rgba(4, 12, 8, 0.18) 100%),
		url("images/hero/outstaffing-team.webp");
}

.hero-bg-slide:nth-child(2) {
	background-image:
		linear-gradient(90deg, rgba(4, 10, 7, 0.94) 0%, rgba(4, 10, 7, 0.46) 52%, rgba(4, 10, 7, 0.16) 100%),
		url("images/hero/production-team.webp");
	animation-delay: 6s;
}

.hero-bg-slide:nth-child(3) {
	background-image:
		linear-gradient(90deg, rgba(4, 10, 7, 0.94) 0%, rgba(4, 10, 7, 0.48) 52%, rgba(4, 10, 7, 0.18) 100%),
		url("images/hero/logistics-team.webp");
	animation-delay: 12s;
}

@keyframes hero-fade {
	0% { opacity: 0; transform: scale(1); }
	8%, 33% { opacity: 1; }
	33% { transform: scale(1.06); }
	41%, 100% { opacity: 0; }
}

.hero-overlay {
	z-index: 2;
	background: linear-gradient(180deg, rgba(3, 8, 5, 0.12), rgba(3, 8, 5, 0.46));
}

.hero-content {
	position: relative;
	z-index: 3;
	text-align: left;
}

.hero-content h1 {
	max-width: 920px;
	margin: 0 0 20px;
	color: #fff;
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	line-height: 1.15;
}

.hero-content p {
	max-width: 750px;
	margin: 0 0 36px;
	color: #d0d0d0;
	font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-buttons {
	display: flex;
	justify-content: flex-start;
	gap: 18px;
	flex-wrap: wrap;
}

.hero-btn,
.card-button {
	display: inline-block;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn {
	padding: 14px 30px;
	font-size: 1.02rem;
}

.hero-btn--compact {
	padding: 11px 24px;
	font-size: 0.95rem;
}

.hero-btn-primary,
.card-button {
	background: var(--accent-green);
	color: #07120b;
	box-shadow: 0 4px 20px rgba(0, 255, 102, 0.25);
}

.hero-btn-primary:hover,
.hero-btn-primary:focus-visible,
.card-button:hover,
.card-button:focus-visible {
	background: var(--accent-green-hover);
	color: #07120b;
	transform: translateY(-2px);
}

.hero-btn-secondary {
	background: rgba(0, 0, 0, 0.15);
	color: #fff;
	border: 2px solid var(--accent-green);
}

.hero-btn-secondary:hover,
.hero-btn-secondary:focus-visible {
	background: rgba(0, 255, 102, 0.12);
	color: #fff;
	border-color: var(--accent-green-hover);
	transform: translateY(-2px);
}

.landing-section {
	padding: 80px 0;
	scroll-margin-top: calc(var(--header-height) + 16px);
}

.landing-section--muted {
	background: rgba(255, 255, 255, 0.015);
}

.section-transition {
	position: relative;
	z-index: 8;
	height: 86px;
	margin: -43px 0;
	overflow: hidden;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(6, 9, 7, 0.04), rgba(7, 10, 8, 0.46) 50%, rgba(9, 10, 9, 0.04));
}

.section-transition svg {
	display: block;
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 -8px 22px rgba(0, 0, 0, 0.2));
}

.section-transition--reverse svg {
	transform: scaleX(-1);
}

.section-transition__fill {
	fill: rgba(8, 11, 9, 0.74);
}

.section-transition__line {
	fill: none;
	vector-effect: non-scaling-stroke;
}

.section-transition__line--accent {
	stroke: rgba(0, 255, 102, 0.18);
	stroke-width: 1.35;
}

.section-transition__line--soft {
	stroke: rgba(255, 255, 255, 0.055);
	stroke-width: 1;
}

.section-transition--hero {
	z-index: 5;
	height: 112px;
	margin: -56px 0;
	background: linear-gradient(180deg, rgba(3, 8, 5, 0), rgba(6, 11, 8, 0.78) 50%, rgba(7, 11, 8, 0.06));
}

.section-transition--hero svg {
	filter: drop-shadow(0 -16px 30px rgba(0, 0, 0, 0.36));
}

.section-transition--hero .section-transition__fill {
	fill: rgba(7, 12, 9, 0.94);
}

.section-transition--hero .section-transition__line--accent {
	stroke: rgba(0, 255, 102, 0.34);
}

#about,
#employers,
#vacancies,
#education {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background-color: #0a0d0b;
}

#about::before,
#employers::before,
#vacancies::before,
#education::before,
#about::after,
#employers::after,
#vacancies::after,
#education::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

#about::before,
#employers::before,
#vacancies::before,
#education::before {
	z-index: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	filter: saturate(0.7) contrast(1.08) brightness(0.9);
	opacity: 0.76;
	transform: scale(1.035);
}

#about::before {
	background-image: url("images/sections/about-team.webp");
	background-position: center 44%;
}

#employers::before {
	background-image: url("images/sections/employer-workforce.webp");
	background-position: center 48%;
}

#vacancies::before {
	background-image: url("images/hero/production-team.webp");
	background-position: center 44%;
	filter: saturate(0.52) contrast(1.1) brightness(0.76);
	opacity: 0.62;
}

#education::before {
	background-image: url("images/sections/training-session.webp");
	background-position: center 46%;
}

#about::after,
#employers::after,
#vacancies::after,
#education::after {
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(5, 8, 6, 0.82) 0%, rgba(5, 9, 7, 0.48) 50%, rgba(5, 7, 6, 0.68) 100%),
		linear-gradient(180deg, rgba(5, 7, 6, 0.68) 0%, rgba(5, 7, 6, 0.22) 48%, rgba(5, 7, 6, 0.76) 100%);
	-webkit-backdrop-filter: blur(2px) saturate(0.8);
	backdrop-filter: blur(2px) saturate(0.8);
	box-shadow:
		inset 0 1px rgba(0, 255, 102, 0.07),
		inset 0 -1px rgba(255, 255, 255, 0.035);
}

#vacancies::after {
	background:
		radial-gradient(circle at 71% 30%, rgba(0, 255, 102, 0.09), transparent 27%),
		linear-gradient(90deg, rgba(4, 7, 5, 0.86) 0%, rgba(5, 9, 7, 0.56) 48%, rgba(4, 7, 5, 0.72) 100%),
		linear-gradient(180deg, rgba(4, 7, 5, 0.86) 0%, rgba(4, 7, 5, 0.42) 43%, rgba(4, 7, 5, 0.88) 100%);
	-webkit-backdrop-filter: blur(3px) saturate(0.72);
	backdrop-filter: blur(3px) saturate(0.72);
}

#about > .container,
#employers > .container,
#vacancies > .container,
#education > .container {
	position: relative;
	z-index: 2;
}

#about .surface-card,
#employers .surface-card,
#vacancies .surface-card,
#education .surface-card {
	background: linear-gradient(145deg, rgba(24, 26, 25, 0.88), rgba(12, 15, 13, 0.8));
	-webkit-backdrop-filter: blur(14px) saturate(0.86);
	backdrop-filter: blur(14px) saturate(0.86);
	border-color: rgba(255, 255, 255, 0.11);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

#vacancies .section-title {
	text-shadow: 0 8px 30px rgba(0, 0, 0, 0.58);
}

.about-preview,
.about-overview {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
	align-items: center;
	gap: 40px;
}

.about-preview__content p,
.about-overview__copy p {
	margin: 0 0 20px;
	font-size: 1.05rem;
	line-height: 1.8;
}

.about-preview__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
}

.about-preview__aside {
	position: relative;
	overflow: hidden;
	padding: 34px 30px 30px;
	border-radius: 22px;
	box-shadow:
		0 24px 60px rgba(0, 0, 0, 0.36),
		inset 0 1px rgba(255, 255, 255, 0.045);
}

.about-preview__aside::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent-green) 24%, rgba(0, 255, 102, 0.28) 72%, transparent);
}

.about-preview__aside::after {
	content: "";
	position: absolute;
	top: -92px;
	right: -80px;
	width: 190px;
	height: 190px;
	border: 1px solid rgba(0, 255, 102, 0.08);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 255, 102, 0.12), transparent 68%);
	pointer-events: none;
}

.about-preview__aside h3 {
	position: relative;
	z-index: 1;
	margin: 0 0 22px;
	color: #fff;
	font-size: 1.45rem;
	line-height: 1.2;
}

.about-preview__aside h3::before {
	content: "Почему выбирают нас";
	display: block;
	margin-bottom: 8px;
	color: var(--accent-green);
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.check-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.check-list li::before {
	content: "✓";
	margin-right: 9px;
	color: var(--accent-green);
	font-weight: 800;
}

.about-preview__aside .check-list {
	position: relative;
	z-index: 1;
	counter-reset: about-advantage;
	gap: 9px;
}

.about-preview__aside .check-list li {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	min-height: 54px;
	padding: 9px 12px 9px 9px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.91rem;
	font-weight: 700;
	line-height: 1.35;
	background: linear-gradient(100deg, rgba(0, 255, 102, 0.065), rgba(255, 255, 255, 0.018));
	border: 1px solid rgba(255, 255, 255, 0.075);
	border-radius: 13px;
	transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.about-preview__aside .check-list li::before {
	counter-increment: about-advantage;
	content: "0" counter(about-advantage);
	display: grid;
	place-items: center;
	width: 40px;
	height: 36px;
	margin: 0;
	color: var(--accent-green);
	font-size: 0.75rem;
	font-weight: 850;
	letter-spacing: 0.04em;
	background: rgba(0, 255, 102, 0.08);
	border: 1px solid rgba(0, 255, 102, 0.22);
	border-radius: 10px;
}

.about-preview__aside .check-list li:hover {
	background: linear-gradient(100deg, rgba(0, 255, 102, 0.1), rgba(255, 255, 255, 0.025));
	border-color: rgba(0, 255, 102, 0.2);
	transform: translateX(3px);
}

.benefits-grid,
.principles-grid,
.archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.benefits-grid {
	counter-reset: employer-benefit;
	gap: 20px;
}

.principles-grid .surface-card {
	padding: 30px;
}

.benefit-card {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 30px 28px 26px;
	border-radius: 22px;
	counter-increment: employer-benefit;
	transition: transform 0.38s ease, border-color 0.38s ease, box-shadow 0.38s ease;
}

.benefit-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-green), rgba(0, 255, 102, 0.18) 58%, transparent 100%);
	opacity: 0.72;
}

.benefit-card::after {
	content: "";
	position: absolute;
	top: -78px;
	right: -74px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 255, 102, 0.13), transparent 68%);
	pointer-events: none;
}

.benefit-card > * {
	position: relative;
	z-index: 1;
}

.benefit-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 20px;
	color: var(--accent-green);
	background: linear-gradient(145deg, rgba(0, 255, 102, 0.12), rgba(0, 255, 102, 0.035));
	border: 1px solid rgba(0, 255, 102, 0.25);
	border-radius: 17px;
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.055), 0 12px 28px rgba(0, 255, 102, 0.06);
	transition: transform 0.38s ease, background-color 0.38s ease;
}

.benefit-card__icon svg {
	width: 34px;
	height: 34px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.benefit-card h3 {
	margin: 0 0 13px;
	font-size: 1.17rem;
	line-height: 1.35;
}

.benefit-card h3::before {
	content: "Решение 0" counter(employer-benefit);
	display: block;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.42);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.benefit-card p,
.principles-grid p {
	margin-bottom: 18px;
}

.benefit-card p {
	flex: 1;
	color: rgba(255, 255, 255, 0.67);
	font-size: 0.94rem;
	line-height: 1.65;
}

.principles-grid p {
	margin-bottom: 0;
}

.benefit-card__list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 7px 14px;
	list-style: none;
	color: var(--text-secondary);
	font-size: 0.85rem;
	line-height: 1.45;
	background: rgba(5, 10, 7, 0.52);
	border: 1px solid rgba(255, 255, 255, 0.065);
	border-radius: 14px;
}

.benefit-card__list li {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	align-items: start;
	gap: 6px;
	padding: 9px 0;
}

.benefit-card__list li + li {
	border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.benefit-card__list li::before {
	content: "✓";
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	margin: 1px 0 0;
	color: var(--accent-green);
	font-size: 0.7rem;
	font-weight: 850;
	background: rgba(0, 255, 102, 0.08);
	border: 1px solid rgba(0, 255, 102, 0.18);
	border-radius: 6px;
}

.benefit-card:hover {
	border-color: rgba(0, 255, 102, 0.22);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38), 0 0 34px rgba(0, 255, 102, 0.045);
	transform: translateY(-6px);
}

.benefit-card:hover .benefit-card__icon {
	background: linear-gradient(145deg, rgba(0, 255, 102, 0.18), rgba(0, 255, 102, 0.055));
	transform: translateY(-2px) scale(1.035);
}

.employers-actions,
.reviews-actions {
	display: flex;
	justify-content: center;
	margin-top: 34px;
}

.cards-carousel {
	display: flex;
	gap: 28px;
	overflow-x: auto;
	padding: 2px 2px 18px;
	scroll-snap-type: x mandatory;
	scrollbar-color: var(--accent-green) #121212;
	scrollbar-width: thin;
}

.cards-carousel::-webkit-scrollbar {
	height: 8px;
}

.cards-carousel::-webkit-scrollbar-track {
	background: #121212;
	border-radius: 4px;
}

.cards-carousel::-webkit-scrollbar-thumb {
	background: var(--accent-green);
	border-radius: 4px;
}

.cards-carousel .listing-card {
	flex: 0 0 350px;
	scroll-snap-align: start;
}

.listing-card {
	display: flex;
	flex-direction: column;
	padding: 30px;
}

.listing-card--with-image {
	position: relative;
	overflow: hidden;
	padding: 0;
	border-color: rgba(255, 255, 255, 0.1);
	border-radius: 22px;
	background: linear-gradient(155deg, rgba(23, 26, 24, 0.96), rgba(10, 13, 11, 0.98));
	box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
	transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.listing-card--with-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 4;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-green), rgba(0, 255, 102, 0.2) 62%, transparent);
}

.listing-card__image {
	position: relative;
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--bg-surface-soft);
}

.listing-card__image::before {
	content: "Открытая вакансия";
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 3;
	padding: 7px 10px;
	color: var(--accent-green);
	font-size: 0.67rem;
	font-weight: 850;
	letter-spacing: 0.075em;
	text-transform: uppercase;
	background: rgba(5, 10, 7, 0.84);
	border: 1px solid rgba(0, 255, 102, 0.22);
	border-radius: 9px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.listing-card__image::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(180deg, rgba(4, 8, 6, 0.04) 34%, rgba(5, 8, 6, 0.72) 100%),
		linear-gradient(90deg, rgba(4, 8, 6, 0.14), transparent 52%);
	pointer-events: none;
}

.listing-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.86) contrast(1.03);
	transition: transform 0.55s ease, filter 0.55s ease;
}

.listing-card--with-image:hover .listing-card__image img {
	transform: scale(1.065);
	filter: saturate(1) contrast(1.04) brightness(1.05);
}

.listing-card--with-image:hover {
	border-color: rgba(0, 255, 102, 0.2);
	box-shadow: 0 30px 75px rgba(0, 0, 0, 0.4), 0 0 34px rgba(0, 255, 102, 0.04);
	transform: translateY(-6px);
}

.listing-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 26px 28px 28px;
}

.listing-card--with-image .listing-card__body {
	position: relative;
	background: linear-gradient(150deg, rgba(22, 25, 23, 0.94), rgba(10, 13, 11, 0.98));
}

.listing-card h2,
.listing-card h3 {
	margin: 0;
	font-size: 1.4rem;
	line-height: 1.3;
}

.listing-card--with-image h2,
.listing-card--with-image h3 {
	color: #fff;
	font-size: 1.27rem;
	line-height: 1.32;
}

.listing-card__excerpt {
	flex-grow: 1;
	margin: 14px 0 22px;
}

.listing-card__salary,
.vacancy-single__salary {
	color: var(--accent-green);
	font-weight: 800;
	letter-spacing: 0.01em;
}

.listing-card__salary {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	margin: 12px 0 0;
	padding: 7px 11px;
	font-size: 1.02rem;
	line-height: 1.2;
	background: rgba(0, 255, 102, 0.075);
	border: 1px solid rgba(0, 255, 102, 0.17);
	border-radius: 10px;
}

.listing-card__excerpt p {
	margin: 0;
}

.listing-card--with-image .listing-card__excerpt {
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.93rem;
	line-height: 1.65;
}

.card-button {
	align-self: flex-start;
	padding: 9px 18px;
}

.listing-card--with-image .card-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	align-self: stretch;
	padding: 12px 15px;
	border-radius: 12px;
}

.listing-card--with-image .card-button::after {
	content: "→";
	font-size: 1.15rem;
	line-height: 1;
	transition: transform 0.25s ease;
}

.listing-card--with-image .card-button:hover::after,
.listing-card--with-image .card-button:focus-visible::after {
	transform: translateX(4px);
}

#education .cards-carousel {
	counter-reset: education-program;
}

#education .listing-card {
	position: relative;
	overflow: hidden;
	min-height: 100%;
	padding: 32px 30px 28px;
	border-color: rgba(255, 255, 255, 0.1);
	border-radius: 22px;
	background: linear-gradient(150deg, rgba(24, 27, 25, 0.9), rgba(10, 14, 12, 0.84));
	counter-increment: education-program;
	box-shadow: 0 22px 58px rgba(0, 0, 0, 0.3);
	transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

#education .listing-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-green), rgba(0, 255, 102, 0.16) 58%, transparent);
}

#education .listing-card::after {
	content: "";
	position: absolute;
	top: -90px;
	right: -76px;
	width: 190px;
	height: 190px;
	border: 1px solid rgba(0, 255, 102, 0.07);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 255, 102, 0.12), transparent 68%);
	pointer-events: none;
}

#education .listing-card > * {
	position: relative;
	z-index: 1;
}

#education .listing-card h3 {
	color: #fff;
	font-size: 1.22rem;
	line-height: 1.38;
}

#education .listing-card h3::before {
	content: "Программа 0" counter(education-program);
	display: block;
	margin-bottom: 12px;
	color: var(--accent-green);
	font-size: 0.66rem;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

#education .listing-card__excerpt {
	flex: 1;
	margin: 18px 0 24px;
	padding: 14px 15px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.92rem;
	line-height: 1.65;
	background: rgba(5, 10, 7, 0.48);
	border: 1px solid rgba(255, 255, 255, 0.065);
	border-radius: 14px;
}

#education .listing-card .card-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	align-self: stretch;
	padding: 12px 15px;
	border-radius: 12px;
}

#education .listing-card .card-button::after {
	content: "→";
	font-size: 1.15rem;
	line-height: 1;
	transition: transform 0.25s ease;
}

#education .listing-card .card-button:hover::after,
#education .listing-card .card-button:focus-visible::after {
	transform: translateX(4px);
}

#education .listing-card:hover {
	border-color: rgba(0, 255, 102, 0.2);
	box-shadow: 0 30px 75px rgba(0, 0, 0, 0.4), 0 0 34px rgba(0, 255, 102, 0.04);
	transform: translateY(-6px);
}

.section-more {
	margin-top: 24px;
	text-align: right;
}

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

/* Contacts and forms */
.contacts-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
}

.contacts-grid--page {
	margin-top: 40px;
}

.contact-info h2,
.contact-info h3,
.contact-form-card h3 {
	margin-bottom: 20px;
}

.contact-details p {
	margin: 0 0 14px;
}

.company-details {
	color: var(--text-muted);
}

.contact-details a,
.contact-form-fallback a {
	font-weight: 700;
	text-decoration: none;
}

.contact-details__admin-note {
	padding: 12px 15px;
	color: #f2d68a;
	background: #302817;
	border-radius: 6px;
	font-size: 0.9rem;
}

.contact-form-card,
.contact-form-section {
	padding: 32px;
}

.contact-form-section {
	margin-top: 56px;
	border-left: 5px solid var(--accent-green);
}

.contact-page__header {
	max-width: 760px;
	margin-bottom: 46px;
}

.contact-page__header .page-title {
	margin-bottom: 14px;
}

.contact-page__eyebrow,
.contact-page-form__eyebrow {
	display: inline-block;
	margin-bottom: 11px;
	color: var(--accent-green);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.contact-page__header .page-intro {
	max-width: 680px;
	margin: 0;
	color: var(--text-muted);
	font-size: 1.08rem;
}

.contact-page-overview {
	position: relative;
	display: grid;
	grid-template-columns: minmax(330px, 0.86fr) minmax(430px, 1.14fr);
	overflow: hidden;
	background: linear-gradient(135deg, #101311, #080a09);
	border: 1px solid rgba(255, 255, 255, 0.095);
	border-radius: 22px;
	box-shadow: 0 24px 65px rgba(0, 0, 0, 0.32);
}

.contact-page-overview::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 2;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent-green) 35%, rgba(112, 255, 168, 0.35) 68%, transparent);
}

.contact-page-overview__details {
	position: relative;
	z-index: 1;
	padding: 44px 42px;
	background:
		radial-gradient(circle at 8% 4%, rgba(0, 255, 102, 0.11), transparent 34%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent);
}

.contact-page-overview__details h2 {
	margin: 0 0 12px;
	color: #fff;
	font-size: clamp(1.65rem, 2.6vw, 2.1rem);
}

.contact-page-overview__intro {
	max-width: 430px;
	margin: 0;
	color: #87918b;
	font-size: 0.88rem;
	line-height: 1.65;
}

.contact-page-overview .contact-details {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 20px;
	margin-top: 27px;
}

.contact-page-overview .contact-details__item {
	display: flex;
	min-width: 0;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 0;
	color: #c7d0ca;
	border-bottom: 1px solid rgba(255, 255, 255, 0.065);
	text-decoration: none;
}

.contact-page-overview .contact-details__item--wide {
	grid-column: 1 / -1;
}

.contact-page-overview .contact-details__item > svg {
	width: 17px;
	height: 17px;
	margin-top: 3px;
	flex: 0 0 auto;
	color: rgba(0, 255, 102, 0.72);
}

.contact-page-overview .contact-details__item > span,
.contact-page-overview .contact-details__item small,
.contact-page-overview .contact-details__item strong {
	display: block;
	min-width: 0;
}

.contact-page-overview .contact-details__item small {
	margin-bottom: 3px;
	color: #68726c;
	font-size: 0.64rem;
	font-weight: 650;
}

.contact-page-overview .contact-details__item strong {
	overflow-wrap: anywhere;
	color: #cbd3ce;
	font-size: 0.75rem;
	font-weight: 650;
	line-height: 1.45;
}

.contact-page-overview a.contact-details__item:hover strong,
.contact-page-overview a.contact-details__item:focus-visible strong {
	color: var(--accent-green);
}

.contact-page-overview .contact-details__item--action {
	margin-top: 5px;
	padding: 13px 15px;
	background: rgba(0, 255, 102, 0.045);
	border: 1px solid rgba(0, 255, 102, 0.11);
	border-radius: 10px;
}

.contact-page-overview__map {
	min-height: 580px;
	overflow: hidden;
	background: #e9ecea;
	border-left: 1px solid rgba(255, 255, 255, 0.075);
}

.contact-page-overview__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 580px;
	border: 0;
}

.contact-page-overview__map.cookie-embed {
	position: relative;
	display: grid;
	place-items: stretch;
	background:
		radial-gradient(circle at 50% 38%, rgba(0, 255, 102, 0.09), transparent 31%),
		linear-gradient(145deg, #101512, #070a08);
}

/* The map and its consent prompt are alternatives, not two stacked rows. */
.contact-page-overview__map.cookie-embed > iframe,
.contact-page-overview__map.cookie-embed > .cookie-embed__placeholder {
	grid-area: 1 / 1;
	min-width: 0;
	min-height: inherit;
}

/* Override the iframe's display: block while consent keeps it hidden. */
.contact-page-overview__map iframe[hidden] {
	display: none;
}

.cookie-embed__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 580px;
	padding: 42px;
	text-align: center;
}

.cookie-embed__placeholder[hidden] {
	display: none;
}

.cookie-embed__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	margin-bottom: 22px;
	color: var(--accent-green);
	background: rgba(0, 255, 102, 0.07);
	border: 1px solid rgba(0, 255, 102, 0.16);
	border-radius: 20px;
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.25);
}

.cookie-embed__icon svg {
	width: 38px;
	height: 38px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cookie-embed__placeholder h3 {
	max-width: 390px;
	margin: 0 0 11px;
	color: #fff;
	font-size: 1.45rem;
}

.cookie-embed__placeholder p {
	max-width: 410px;
	margin: 0 0 23px;
	color: rgba(255, 255, 255, 0.57);
	font-size: 0.88rem;
	line-height: 1.65;
}

.contact-page-form {
	position: relative;
	display: grid;
	grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
	margin-top: 72px;
	overflow: hidden;
	background: linear-gradient(135deg, #101311, #080a09);
	border: 1px solid rgba(255, 255, 255, 0.095);
	border-radius: 22px;
	box-shadow: 0 24px 65px rgba(0, 0, 0, 0.34);
}

.contact-page-form--home {
	margin-top: 0;
}

.contact-page-form::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent-green) 35%, rgba(112, 255, 168, 0.35) 68%, transparent);
}

.contact-page-form__intro {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 52px 46px;
	background:
		radial-gradient(circle at 8% 4%, rgba(0, 255, 102, 0.12), transparent 34%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent);
}

.contact-page-form__intro h2 {
	max-width: 430px;
	margin: 0 0 18px;
	color: #fff;
	font-size: clamp(1.85rem, 3vw, 2.45rem);
	line-height: 1.15;
}

.contact-page-form__intro > p {
	max-width: 430px;
	margin: 0;
	color: var(--text-muted);
	line-height: 1.75;
}

.contact-page-form__steps {
	display: grid;
	gap: 18px;
	list-style: none;
	margin: 34px 0 0;
	padding: 0;
}

.contact-page-form__steps li {
	display: flex;
	align-items: flex-start;
	gap: 13px;
}

.contact-page-form__steps li > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex: 0 0 auto;
	color: var(--accent-green);
	background: rgba(0, 255, 102, 0.075);
	border: 1px solid rgba(0, 255, 102, 0.18);
	border-radius: 9px;
	font-size: 0.68rem;
	font-weight: 800;
}

.contact-page-form__steps strong,
.contact-page-form__steps small {
	display: block;
}

.contact-page-form__steps strong {
	color: #e9efeb;
	font-size: 0.92rem;
}

.contact-page-form__steps small {
	margin-top: 2px;
	color: #7f8983;
	font-size: 0.78rem;
}

.contact-page-form--home .contact-page-form__steps {
	padding-bottom: 28px;
}

.contact-page-form__quick-contact {
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.085);
}

.contact-page-form__quick-label {
	display: block;
	margin-bottom: 13px;
	color: #7e8982;
	font-size: 0.67rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.contact-page-form__quick-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 18px;
}

.contact-page-form__quick-list > a,
.contact-page-form__quick-list > div {
	display: flex;
	min-width: 0;
	align-items: flex-start;
	gap: 9px;
	color: #c8d1cb;
	text-decoration: none;
}

.contact-page-form__quick-list > div:last-child {
	grid-column: 1 / -1;
}

.contact-page-form__quick-list svg {
	width: 16px;
	height: 16px;
	margin-top: 2px;
	flex: 0 0 auto;
	color: rgba(0, 255, 102, 0.72);
}

.contact-page-form__quick-list span,
.contact-page-form__quick-list small,
.contact-page-form__quick-list strong {
	display: block;
	min-width: 0;
}

.contact-page-form__quick-list small {
	margin-bottom: 2px;
	color: #69736d;
	font-size: 0.65rem;
	font-weight: 650;
}

.contact-page-form__quick-list strong {
	overflow: hidden;
	color: #c8d1cb;
	font-size: 0.74rem;
	font-weight: 650;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.contact-page-form__quick-list > a:hover strong,
.contact-page-form__quick-list > a:focus-visible strong {
	color: var(--accent-green);
}

.contact-page-form__quick-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 15px;
	color: #aeb8b1;
	font-size: 0.75rem;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.2s ease, gap 0.2s ease;
}

.contact-page-form__quick-more span {
	color: var(--accent-green);
	font-size: 0.95rem;
}

.contact-page-form__quick-more:hover,
.contact-page-form__quick-more:focus-visible {
	gap: 11px;
	color: var(--accent-green);
}

.contact-page-form__card {
	position: relative;
	padding: 42px;
	background: rgba(255, 255, 255, 0.025);
	border-left: 1px solid rgba(255, 255, 255, 0.075);
}

.contact-page-form__card-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 27px;
}

.contact-page-form__card-heading h3 {
	margin: 0;
	color: #fff;
	font-size: 1.35rem;
}

.contact-page-form__card-heading > span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #8e9992;
	font-size: 0.72rem;
	text-align: right;
}

.contact-page-form__card-heading i {
	display: block;
	width: 7px;
	height: 7px;
	flex: 0 0 auto;
	background: var(--accent-green);
	border-radius: 50%;
	box-shadow: 0 0 9px rgba(0, 255, 102, 0.6);
}

.contact-page-form__card .grinity-contact-form {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 17px;
}

.contact-page-form__card .grinity-contact-form__field:has(select),
.contact-page-form__card .grinity-contact-form__field:has(textarea),
.contact-page-form__card .grinity-contact-form__field:has([name="contact_subject"]),
.contact-page-form__card .grinity-contact-form[data-audience="candidate"] .grinity-contact-form__field:has([name="contact_email"]),
.contact-page-form__card .grinity-contact-form__audience-note,
.contact-page-form__card .grinity-contact-form__legal-note,
.contact-page-form__card .grinity-contact-form__privacy,
.contact-page-form__card .grinity-contact-form__actions {
	grid-column: 1 / -1;
}

.contact-page-form__card .grinity-contact-form__field label {
	margin-bottom: 7px;
	color: #cdd5d0;
	font-size: 0.82rem;
}

.contact-page-form__card .grinity-contact-form__field input,
.contact-page-form__card .grinity-contact-form__field select,
.contact-page-form__card .grinity-contact-form__field textarea {
	padding: 12px 13px;
	background: rgba(4, 7, 5, 0.72);
	border-color: rgba(255, 255, 255, 0.12);
	border-radius: 9px;
}

.contact-page-form__card .grinity-contact-form__privacy {
	padding: 13px 14px;
	background: rgba(0, 0, 0, 0.18);
	border-color: rgba(255, 255, 255, 0.08);
	border-radius: 9px;
	font-size: 0.78rem;
}

.contact-page-form__card .grinity-contact-form__submit {
	min-height: 48px;
	padding-inline: 24px;
	background: linear-gradient(135deg, #24ff79, var(--accent-green));
	border-radius: 9px;
	box-shadow: 0 10px 24px rgba(0, 255, 102, 0.14);
}

/* Single entries, about page, 404 */
.entry-meta {
	margin: -12px 0 28px;
	color: var(--accent-green);
	font-weight: 700;
}

.single-entry-content {
	padding: 40px;
}

.vacancy-single__salary {
	display: inline-flex;
	margin: -10px 0 16px;
	padding: 9px 15px;
	background: rgba(0, 255, 102, 0.08);
	border: 1px solid rgba(0, 255, 102, 0.24);
	border-radius: 8px;
	font-size: 1.35rem;
}

.vacancy-single__image {
	margin-bottom: 28px;
	overflow: hidden;
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
}

.vacancy-single__image img {
	display: block;
	width: 100%;
	max-height: 520px;
	object-fit: cover;
}

.about-hero {
	max-width: 790px;
	margin: 0 auto 64px;
	text-align: center;
}

.about-hero .page-title {
	margin-bottom: 16px;
}

.about-overview {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 72px;
}

.about-overview__copy h2,
.about-cta h2 {
	margin-top: 0;
	color: #fff;
}

.stats-card {
	padding: 36px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

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

.stats-grid strong,
.stats-grid span {
	display: block;
}

.stats-grid strong {
	color: var(--accent-green);
	font-size: 2.4rem;
	line-height: 1;
}

.stats-grid span {
	margin-top: 8px;
	color: var(--text-muted);
	font-size: 0.9rem;
}

.about-admin-content {
	margin-bottom: 72px;
	padding: 36px;
}

.about-principles {
	margin-bottom: 72px;
}

.about-cta {
	padding: 48px 30px;
	background: #0f0f0f;
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	text-align: center;
}

.about-cta p {
	max-width: 620px;
	margin: 0 auto 28px;
	color: var(--text-muted);
}

.error-404-page {
	display: flex;
	align-items: center;
	padding: 80px 0;
	text-align: center;
}

.error-code {
	margin: 0;
	color: var(--accent-green);
	font-size: clamp(6rem, 20vw, 12rem);
	font-weight: 800;
	line-height: 0.9;
	text-shadow: 0 0 30px rgba(0, 255, 102, 0.15);
}

.error-404-page h1 {
	margin: 24px 0 12px;
	color: #fff;
	font-size: clamp(1.8rem, 5vw, 2.6rem);
}

.error-description {
	max-width: 620px;
	margin: 0 auto 32px;
	color: var(--text-muted);
	font-size: 1.08rem;
}

/* Pagination and footer */
.navigation.pagination {
	margin-top: 44px;
}

.archive-external-link {
	margin-top: 44px;
	text-align: center;
}

.education-benefits {
	margin-bottom: 48px;
}

#reviews {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 18%, rgba(0, 255, 102, 0.035), transparent 31%),
		radial-gradient(circle at 88% 74%, rgba(0, 255, 102, 0.025), transparent 28%),
		#090b0a;
}

#reviews > .container {
	position: relative;
	z-index: 1;
}

.reviews-grid {
	display: grid;
	grid-auto-columns: calc((100% - 40px) / 3);
	grid-auto-flow: column;
	gap: 20px;
	counter-reset: review-card;
}

.reviews-carousel__viewport {
	overflow-x: auto;
	padding: 10px 5px 14px;
	overscroll-behavior-inline: contain;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.reviews-carousel__viewport::-webkit-scrollbar {
	display: none;
}

.reviews-carousel__viewport:focus-visible {
	outline: 2px solid var(--accent-green);
	outline-offset: 5px;
	border-radius: var(--radius);
}

.reviews-carousel__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	width: max-content;
	max-width: 100%;
	gap: 10px;
	margin: 22px auto 0;
	padding: 8px 10px;
	background: linear-gradient(145deg, rgba(20, 25, 22, 0.88), rgba(8, 11, 9, 0.78));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.035);
	backdrop-filter: blur(14px);
}

.reviews-carousel.is-static .reviews-carousel__controls {
	display: none;
}

.reviews-carousel__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	color: var(--accent-green);
	background: linear-gradient(145deg, rgba(0, 255, 102, 0.11), rgba(0, 255, 102, 0.035));
	border: 1px solid rgba(0, 255, 102, 0.24);
	border-radius: 12px;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.reviews-carousel__button:hover,
.reviews-carousel__button:focus-visible {
	color: #07120b;
	background: var(--accent-green);
	border-color: var(--accent-green);
	transform: translateY(-2px);
}

.reviews-carousel__button:disabled {
	opacity: 0.32;
	cursor: default;
	transform: none;
}

.reviews-carousel__button svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.reviews-carousel__counter {
	min-width: 72px;
	color: var(--text-muted);
	font-size: 0.82rem;
	font-weight: 750;
	font-variant-numeric: tabular-nums;
	text-align: center;
}

.review-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 100%;
	overflow: hidden;
	padding: 28px 28px 24px;
	gap: 16px;
	background:
		linear-gradient(145deg, rgba(25, 31, 27, 0.92), rgba(9, 12, 10, 0.86) 55%, rgba(11, 15, 12, 0.94)),
		radial-gradient(circle at 90% 8%, rgba(0, 255, 102, 0.08), transparent 30%);
	border-color: rgba(255, 255, 255, 0.1);
	border-radius: 22px;
	box-shadow: 0 22px 52px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.045);
	backdrop-filter: blur(15px) saturate(118%);
	counter-increment: review-card;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.review-card::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 102, 0.9) 18%, rgba(111, 255, 173, 0.92) 52%, transparent 94%);
	content: "";
}

.review-card::after {
	position: absolute;
	top: 8px;
	right: 18px;
	z-index: 0;
	color: rgba(0, 255, 102, 0.095);
	content: "“";
	font-family: Georgia, "Times New Roman", serif;
	font-size: 8.5rem;
	font-weight: 700;
	line-height: 1;
	pointer-events: none;
}

.review-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 255, 102, 0.2);
	box-shadow: 0 28px 62px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(0, 255, 102, 0.035), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.review-card blockquote {
	position: relative;
	z-index: 1;
	flex: 1;
	margin: 0;
	padding: 17px 18px;
	color: rgba(255, 255, 255, 0.72);
	background: linear-gradient(135deg, rgba(4, 7, 5, 0.66), rgba(12, 17, 13, 0.48));
	border: 1px solid rgba(255, 255, 255, 0.065);
	border-left-color: rgba(0, 255, 102, 0.44);
	border-radius: 14px;
	font-size: 0.96rem;
	line-height: 1.72;
}

.review-card blockquote p {
	margin: 0;
}

.review-card__author {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: 62px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.065);
	gap: 14px;
}

.review-card__author::after {
	margin-left: auto;
	padding: 7px 9px;
	color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.065);
	border-radius: 9px;
	content: "Отзыв 0" counter(review-card);
	font-size: 0.69rem;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.review-card__author > div {
	display: grid;
	gap: 3px;
}

.review-card__author strong {
	color: #fff;
	font-size: 1.03rem;
}

.review-card__avatar {
	display: flex;
	flex: 0 0 56px;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	object-fit: cover;
	color: #07120b;
	background: linear-gradient(135deg, var(--accent-green), #86ffc0);
	border: 2px solid rgba(0, 255, 102, 0.5);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(0, 255, 102, 0.08), 0 13px 26px rgba(0, 0, 0, 0.28);
	font-size: 1.25rem;
	font-weight: 800;
}

.review-rating {
	display: inline-flex;
	width: max-content;
	padding: 5px 7px;
	background: rgba(0, 255, 102, 0.055);
	border: 1px solid rgba(0, 255, 102, 0.1);
	border-radius: 8px;
	font-size: 1rem;
	letter-spacing: 0.08em;
	line-height: 1;
}

.review-rating__filled {
	color: var(--accent-green);
}

.review-rating__empty {
	color: #59605c;
}

.review-card > time {
	position: relative;
	z-index: 1;
	align-self: flex-start;
	padding: 5px 8px;
	color: var(--text-muted);
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.055);
	border-radius: 8px;
	font-size: 0.78rem;
	font-variant-numeric: tabular-nums;
}

.comment-respond {
	max-width: 780px;
	margin: 56px auto 0;
	padding: 32px;
	background: linear-gradient(145deg, rgba(0, 255, 102, 0.055), var(--bg-surface) 45%);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
}

.review-form-title {
	margin: 0 0 8px;
	color: #fff;
	font-size: 1.55rem;
}

.review-form-note {
	margin: 0 0 24px;
	color: var(--text-muted);
}

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

.comment-form > p {
	margin: 0;
}

.comment-form-comment,
.comment-form-rating,
.comment-form-cookies-consent,
.comment-form .form-submit,
.comment-form .review-form-note,
.comment-form [data-review-consent-name],
.comment-form .logged-in-as {
	grid-column: 1 / -1;
}

.comment-form label,
.review-form-label {
	display: block;
	margin-bottom: 6px;
	color: var(--text-secondary);
	font-weight: 600;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
	width: 100%;
	padding: 11px 12px;
	color: var(--text-main);
	background: var(--bg-page);
	border: 1px solid #444;
	border-radius: 6px;
	font: inherit;
}

.comment-form textarea {
	resize: vertical;
}

.review-form-optional {
	color: var(--text-muted);
	font-size: 0.82rem;
	font-weight: 400;
}

.review-rating-input {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.review-rating-stars {
	display: inline-flex;
	flex-direction: row-reverse;
}

.review-rating-stars input,
.review-rating-zero input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.review-rating-stars label {
	margin: 0;
	padding: 0 3px;
	color: #59605c;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	transition: color 0.18s ease, transform 0.18s ease;
}

.review-rating-stars label:hover,
.review-rating-stars label:hover ~ label,
.review-rating-stars input:checked ~ label {
	color: var(--accent-green);
}

.review-rating-stars label:hover {
	transform: translateY(-2px) scale(1.08);
}

.review-rating-zero span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: var(--text-muted);
	border: 1px solid #555;
	border-radius: 50%;
	cursor: pointer;
}

.review-rating-zero input:checked + span,
.review-rating-zero span:hover {
	color: #07120b;
	background: var(--accent-green);
	border-color: var(--accent-green);
}

.comment-form-cookies-consent,
.comment-form-privacy {
	grid-column: 1 / -1;
	display: flex;
	align-items: flex-start;
	gap: 9px;
	color: var(--text-muted);
	font-size: 0.9rem;
}

.comment-form-cookies-consent label,
.comment-form-privacy label {
	margin: 0;
	font-weight: 400;
}

.review-submit {
	border: 0;
	cursor: pointer;
}

.cooperation-page .page-visual-header {
	max-width: none;
}

.cooperation-comparison {
	position: relative;
	overflow: hidden;
	margin-top: 36px;
	background:
		radial-gradient(circle at 12% 4%, rgba(0, 255, 102, 0.09), transparent 27%),
		linear-gradient(145deg, rgba(21, 27, 23, 0.9), rgba(7, 10, 8, 0.86));
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 26px;
	box-shadow: 0 28px 78px rgba(0, 0, 0, 0.38);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

.cooperation-comparison::before {
	position: absolute;
	top: -150px;
	right: -90px;
	width: 370px;
	height: 370px;
	background: radial-gradient(circle, rgba(0, 255, 102, 0.1), transparent 67%);
	content: "";
	pointer-events: none;
}

.cooperation-comparison::after {
	position: absolute;
	top: 0;
	left: 5%;
	width: 90%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 102, 0.92), transparent);
	content: "";
}

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

.cooperation-card {
	position: relative;
	min-width: 0;
	padding: 46px 44px 42px;
	overflow: hidden;
	background: linear-gradient(140deg, rgba(255, 255, 255, 0.025), transparent 55%);
	transition: background 0.35s ease;
}

.cooperation-card + .cooperation-card {
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.cooperation-card--accent {
	background: linear-gradient(145deg, rgba(0, 255, 102, 0.07), rgba(9, 14, 11, 0.26) 48%, transparent);
}

.cooperation-card h2 {
	position: relative;
	margin: 8px 0 26px;
	font-size: clamp(1.9rem, 3vw, 2.45rem);
}

.cooperation-card h3 {
	margin-top: 30px;
	color: #fff;
	font-size: 1.02rem;
}

.cooperation-card__kicker {
	position: relative;
	margin: 0;
	color: var(--accent-green);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.cooperation-card__number {
	position: absolute;
	top: 22px;
	right: 28px;
	margin: 0;
	color: rgba(0, 255, 102, 0.11);
	font-size: 5.4rem;
	font-weight: 900;
	line-height: 1;
}

.cooperation-card__lead {
	position: relative;
	margin-bottom: 28px;
	color: var(--text-secondary);
	font-size: 1.04rem;
	line-height: 1.72;
}

.cooperation-card .check-list {
	margin-bottom: 28px;
}

.cooperation-difference {
	position: relative;
	display: grid;
	grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
	align-items: center;
	gap: 38px;
	margin: 0;
	padding: 32px 44px;
	background: linear-gradient(90deg, rgba(0, 255, 102, 0.075), rgba(255, 255, 255, 0.018));
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cooperation-difference__heading span,
.cooperation-cta__copy > span {
	display: block;
	margin-bottom: 8px;
	color: var(--accent-green);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.cooperation-difference h2 {
	margin: 0;
	font-size: 1.45rem;
}

.cooperation-difference p {
	margin: 0;
	color: var(--text-secondary);
	line-height: 1.75;
}

.cooperation-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 42px;
	max-width: none;
	margin: 32px 0 0;
	text-align: left;
}

.cooperation-cta__copy {
	max-width: 760px;
}

.cooperation-cta h2 {
	margin-bottom: 10px;
	color: #fff;
}

.cooperation-cta p {
	margin: 0;
	color: var(--text-muted);
}

.cooperation-cta .hero-btn {
	flex: 0 0 auto;
}

.review-stars {
	margin: 0;
	color: var(--accent-green);
	font-size: 1.1rem;
	letter-spacing: 0.08em;
}

.review-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0;
	font-size: 0.9rem;
}

.review-card__meta strong {
	color: var(--text-main);
}

.review-card__meta time {
	color: var(--text-muted);
}

.partners-section {
	padding: 64px 0 72px;
	overflow: hidden;
	background: #0c0c0c;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.partners-section .section-title {
	margin-bottom: 36px;
}

.partners-marquee {
	width: min(calc(100% - 32px), var(--content-width));
	margin-inline: auto;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(
		to right,
		transparent 0,
		rgba(0, 0, 0, 0.25) 5%,
		#000 16%,
		#000 84%,
		rgba(0, 0, 0, 0.25) 95%,
		transparent 100%
	);
	mask-image: linear-gradient(
		to right,
		transparent 0,
		rgba(0, 0, 0, 0.25) 5%,
		#000 16%,
		#000 84%,
		rgba(0, 0, 0, 0.25) 95%,
		transparent 100%
	);
}

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

.partners-marquee:hover .partners-marquee__track {
	animation-play-state: paused;
}

.partners-marquee__group {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 24px;
	padding-right: 24px;
}

.partner-logo-card {
	display: flex;
	flex: 0 0 220px;
	align-items: center;
	justify-content: center;
	height: 118px;
	padding: 16px 20px;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.partner-logo-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

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

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

.nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 7px 12px;
	color: var(--text-main);
	background: var(--bg-surface);
	border: 1px solid var(--border-color);
	border-radius: 6px;
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover,
.page-numbers:focus-visible {
	color: #07120b;
	background: var(--accent-green);
	border-color: var(--accent-green);
}

/* Public legal documents: wide desktop layout, one reading surface. */
.legal-document__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: clamp(26px, 3.5vw, 44px);
	margin-bottom: 28px;
	background: radial-gradient(ellipse at 100% 0, rgba(0, 255, 102, 0.09), transparent 55%), linear-gradient(145deg, #111b15, #0c100e);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 22px;
}

.legal-document__eyebrow {
	display: block;
	margin-bottom: 16px;
	color: var(--accent-green);
	font-size: 0.7rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.legal-document__header .page-title {
	max-width: 920px;
	margin: 0;
	font-size: clamp(1.8rem, 3.2vw, 2.6rem);
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.legal-document__header p {
	max-width: 740px;
	margin: 18px 0 0;
	color: #a4b2aa;
	font-size: 0.96rem;
	line-height: 1.7;
}

.legal-document__symbol {
	flex: 0 0 76px;
	width: 76px;
	height: 76px;
	color: rgba(0, 255, 102, 0.6);
}

.legal-document__layout {
	display: grid;
	grid-template-columns: 270px minmax(0, 1fr);
	align-items: stretch;
	background: #0f1411;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 22px;
}

.legal-document__aside {
	min-width: 0;
	padding: 30px 22px;
	background: linear-gradient(155deg, rgba(0, 255, 102, 0.055), transparent 65%);
	border-right: 1px solid rgba(255, 255, 255, 0.075);
	border-radius: 22px 0 0 22px;
}

.legal-document__aside-inner {
	position: sticky;
	top: calc(var(--header-height) + var(--header-sticky-offset, 0px) + 24px);
}

.legal-document__nav {
	display: grid;
	gap: 7px;
}

.legal-document__nav a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 52px;
	padding: 12px;
	color: #abb9b0;
	border: 1px solid transparent;
	border-radius: 10px;
	font-size: 0.82rem;
	line-height: 1.5;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.legal-document__nav a > span:last-child {
	flex-shrink: 0;
	color: #6d917a;
}

.legal-document__nav a[aria-current="page"],
.legal-document__nav a:hover {
	color: #ecfff3;
	background: rgba(0, 255, 102, 0.065);
	border-color: rgba(0, 255, 102, 0.19);
}

.legal-document__nav a[aria-current="page"] > span:last-child {
	color: var(--accent-green);
}

.legal-document a:focus-visible {
	outline: 2px solid var(--accent-green);
	outline-offset: 4px;
}

.legal-document__help {
	margin-top: 30px;
	padding: 24px 12px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.8rem;
}

.legal-document__help strong {
	color: #dce8e0;
}

.legal-document__help p {
	margin: 10px 0 14px;
	color: #98a79e;
	line-height: 1.65;
}

.legal-document__help a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 36px;
	color: var(--accent-green);
	text-underline-offset: 4px;
}

.legal-document__body {
	min-width: 0;
	padding: clamp(26px, 3.5vw, 44px);
	overflow-wrap: anywhere;
}

.legal-document__body .grinity-legal-document {
	padding: 0;
	background: none;
	border: 0;
	border-radius: 0;
}

.legal-document__body .grinity-legal-document__meta {
	margin: 0 0 28px;
	padding-bottom: 20px;
	color: #95ac9e;
	border-bottom: 1px solid rgba(0, 255, 102, 0.15);
	font-size: 0.78rem;
	letter-spacing: 0.02em;
}

.legal-document__body .grinity-legal-document h2 {
	margin: 32px 0 16px;
	color: #e8f1eb;
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	line-height: 1.4;
	letter-spacing: -0.015em;
}

.legal-document__body .grinity-legal-document > .grinity-legal-document__meta + h2,
.legal-document__body .grinity-legal-document > section > h2:first-child {
	margin-top: 0;
}

.legal-document__body p,
.legal-document__body dd,
.legal-document__body li {
	margin: 0 0 18px;
	color: #bdc9c1;
	font-size: 0.94rem;
	line-height: 1.85;
}

.legal-document__body .grinity-legal-document__meta {
	margin-bottom: 28px;
	color: #95ac9e;
	font-size: 0.78rem;
}

.legal-document__body .grinity-legal-document section {
	scroll-margin-top: calc(var(--header-height) + var(--header-sticky-offset, 0px) + 24px);
}

.legal-document__body .grinity-legal-document section + section {
	margin-top: 34px;
	padding-top: 34px;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.legal-document__body .grinity-legal-document dt {
	margin-top: 24px;
	padding: 0 0 0 14px;
	color: #e0ebe4;
	border-left: 2px solid rgba(0, 255, 102, 0.6);
	font-size: 0.9rem;
}

.legal-document__body .grinity-legal-document dd {
	margin: 12px 0 24px 16px;
}

.legal-document__body a {
	color: var(--accent-green);
	text-underline-offset: 4px;
	text-decoration-thickness: 1px;
}

.legal-document__body .grinity-legal-document > p:last-child {
	margin: 32px 0 0;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	font-size: 0.8rem;
}

@media (max-width: 900px) {
	.legal-document__layout { grid-template-columns: minmax(0, 1fr); }
	.legal-document__body { order: 0; }
	.legal-document__aside {
		order: 1;
		border-right: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.09);
		border-radius: 0 0 22px 22px;
	}
	.legal-document__aside-inner { position: static; }
	.legal-document__nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
	.legal-document__header { padding: 26px 22px; border-radius: 18px; }
	.legal-document__symbol { display: none; }
	.legal-document__body { padding: 26px 22px; }
	.legal-document__layout { border-radius: 18px; }
	.legal-document__nav { grid-template-columns: minmax(0, 1fr); }
}

.privacy-page__header {
	position: relative;
	padding: 42px 46px;
	overflow: hidden;
	background:
		radial-gradient(circle at 90% 0, rgba(0, 255, 102, 0.1), transparent 34%),
		linear-gradient(145deg, #111512, #0b0e0c);
	border: 1px solid rgba(255, 255, 255, 0.085);
	border-radius: 20px;
}

.privacy-page__header::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
}

.privacy-page__eyebrow {
	display: block;
	margin-bottom: 14px;
	color: var(--accent-green);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.privacy-page__header h1 {
	margin-bottom: 15px;
}

.privacy-page__header > p {
	max-width: 720px;
	margin: 0;
	color: #a2ada6;
	font-size: 1rem;
	line-height: 1.7;
}

.privacy-page__meta {
	display: flex;
	gap: 10px 26px;
	margin-top: 25px;
	flex-wrap: wrap;
	color: #6f7973;
	font-size: 0.76rem;
}

.privacy-page__meta a {
	color: #aeb8b1;
	text-decoration: none;
}

.privacy-page__layout {
	display: grid;
	grid-template-columns: minmax(210px, 0.3fr) minmax(0, 1fr);
	gap: 50px;
	margin-top: 54px;
}

.privacy-page__aside {
	position: sticky;
	top: calc(var(--header-height) + var(--wp-admin--admin-bar--height, 0px) + 24px);
	height: max-content;
	padding: 24px;
	background: rgba(255, 255, 255, 0.022);
	border: 1px solid rgba(255, 255, 255, 0.075);
	border-radius: 14px;
}

.privacy-page__aside > strong {
	display: block;
	margin-bottom: 14px;
	color: #eef3ef;
	font-size: 0.8rem;
}

.privacy-page__aside nav {
	display: grid;
	gap: 4px;
}

.privacy-page__aside a {
	padding: 6px 0;
	color: #77817b;
	font-size: 0.72rem;
	line-height: 1.4;
	text-decoration: none;
	transition: color 0.2s ease, transform 0.2s ease;
}

.privacy-page__aside a:hover,
.privacy-page__aside a:focus-visible {
	color: var(--accent-green);
	transform: translateX(3px);
}

.privacy-page__content {
	min-width: 0;
}

.privacy-page__content section {
	position: relative;
	padding: 0 0 42px 48px;
	scroll-margin-top: calc(var(--header-height) + var(--wp-admin--admin-bar--height, 0px) + 28px);
}

.privacy-page__content section + section {
	padding-top: 42px;
	border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.privacy-page__number {
	position: absolute;
	top: 2px;
	left: 0;
	color: rgba(0, 255, 102, 0.65);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.privacy-page__content section + section .privacy-page__number {
	top: 44px;
}

.privacy-page__content h2 {
	margin: 0 0 18px;
	color: #f1f5f2;
	font-size: clamp(1.35rem, 2.3vw, 1.75rem);
}

.privacy-page__content p,
.privacy-page__content li {
	color: #9ca69f;
	font-size: 0.92rem;
	line-height: 1.8;
}

.privacy-page__content p {
	margin: 0 0 15px;
}

.privacy-page__content ul {
	display: grid;
	gap: 9px;
	margin: 0 0 18px;
	padding-left: 20px;
}

.privacy-page__content strong {
	color: #cdd5d0;
}

.privacy-page__content a {
	color: var(--accent-green);
}

.privacy-page__operator {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.075);
	border: 1px solid rgba(255, 255, 255, 0.075);
	border-radius: 12px;
}

.privacy-page__operator > div {
	padding: 16px 18px;
	background: #0d100e;
}

.privacy-page__operator-wide {
	grid-column: 1 / -1;
}

.privacy-page__operator small,
.privacy-page__operator strong,
.privacy-page__operator a {
	display: block;
}

.privacy-page__operator small {
	margin-bottom: 5px;
	color: #68726c;
	font-size: 0.66rem;
}

.privacy-page__operator strong,
.privacy-page__operator a {
	color: #d8dfda;
	font-size: 0.82rem;
	font-weight: 650;
	text-decoration: none;
}

.site-footer {
	position: relative;
	padding: 46px 0 18px;
	color: var(--text-muted);
	background:
		radial-gradient(circle at 10% 0, rgba(0, 255, 102, 0.055), transparent 30%),
		linear-gradient(180deg, #0b0e0c, #070908);
	border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.site-footer::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 50%;
	width: min(520px, 70vw);
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 102, 0.58), transparent);
	transform: translateX(-50%);
}

.site-footer a {
	color: #b8c2bc;
	text-decoration: none;
	transition: color 0.2s ease;
}

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

.site-footer__main {
	display: grid;
	grid-template-columns: minmax(260px, 1.35fr) minmax(180px, 0.8fr) minmax(220px, 0.85fr);
	gap: 48px;
	padding-bottom: 34px;
}

.site-footer__brand .custom-logo-link,
.site-footer__logo {
	display: inline-flex;
}

.site-footer__brand .custom-logo,
.site-footer__logo img {
	display: block;
	width: auto;
	max-width: 180px;
	height: auto;
	max-height: 48px;
}

.site-footer__brand p {
	max-width: 330px;
	margin: 17px 0 0;
	color: #7e8882;
	font-size: 0.86rem;
	line-height: 1.7;
}

.site-footer__heading {
	display: block;
	margin-bottom: 14px;
	color: #f1f5f2;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.site-footer__navigation,
.site-footer__contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 9px;
}

.site-footer__navigation a,
.site-footer__contact a {
	font-size: 0.84rem;
}

.site-footer__hours {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 3px;
	color: #727c76;
	font-size: 0.76rem;
}

.site-footer__hours i {
	width: 6px;
	height: 6px;
	background: var(--accent-green);
	border-radius: 50%;
	box-shadow: 0 0 9px rgba(0, 255, 102, 0.45);
}

.site-footer__legal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.065);
	border-bottom: 1px solid rgba(255, 255, 255, 0.055);
	font-size: 0.75rem;
}

.site-footer__legal p {
	margin: 0;
}

.site-footer__cookie-settings {
	margin: 0;
	padding: 0;
	color: var(--accent-green);
	background: transparent;
	border: 0;
	font: inherit;
	cursor: pointer;
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-offset: 3px;
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.site-footer__cookie-settings:hover,
.site-footer__cookie-settings:focus-visible {
	color: #fff;
	text-decoration-color: var(--accent-green);
}

.site-footer__details {
	color: #657069;
	font-variant-numeric: tabular-nums;
}

.site-footer__credits {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding-top: 17px;
	color: #59635d;
	font-size: 0.7rem;
	letter-spacing: 0.02em;
}

.site-footer__credits a {
	color: #89938d;
}

.cookie-consent[hidden] {
	display: none;
}

.cookie-consent {
	position: fixed;
	right: 20px;
	bottom: 20px;
	left: 20px;
	z-index: 1300;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	width: min(920px, calc(100% - 40px));
	margin-inline: auto;
	padding: 20px 22px;
	background:
		radial-gradient(circle at 0 0, rgba(0, 255, 102, 0.1), transparent 28%),
		linear-gradient(145deg, rgba(19, 25, 21, 0.97), rgba(6, 9, 7, 0.97));
	border: 1px solid rgba(0, 255, 102, 0.16);
	border-radius: 19px;
	box-shadow: 0 25px 75px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.045);
	-webkit-backdrop-filter: blur(20px) saturate(120%);
	backdrop-filter: blur(20px) saturate(120%);
	opacity: 0;
	visibility: hidden;
	transform: translateY(28px) scale(0.985);
	transition: opacity 0.38s ease, visibility 0.38s ease, transform 0.48s cubic-bezier(0.2, 0.78, 0.2, 1);
}

.cookie-consent.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.cookie-consent__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	color: var(--accent-green);
	background: rgba(0, 255, 102, 0.07);
	border: 1px solid rgba(0, 255, 102, 0.16);
	border-radius: 14px;
}

.cookie-consent__icon svg {
	width: 30px;
	height: 30px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cookie-consent__content strong {
	display: block;
	margin-bottom: 5px;
	color: #fff;
	font-size: 0.98rem;
}

.cookie-consent__content p {
	margin: 0 0 4px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.78rem;
	line-height: 1.5;
}

.cookie-consent__content a {
	color: var(--accent-green);
	font-size: 0.74rem;
	font-weight: 700;
	text-underline-offset: 3px;
}

.cookie-consent__actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 7px;
	min-width: 174px;
}

.cookie-consent__button {
	min-height: 39px;
	padding: 9px 14px;
	border-radius: 9px;
	font-size: 0.76rem;
	font-weight: 800;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
	transform: translateY(-1px);
}

.cookie-consent__button--primary {
	color: #06110a;
	background: var(--accent-green);
	border: 1px solid var(--accent-green);
	box-shadow: 0 8px 20px rgba(0, 255, 102, 0.13);
}

.cookie-consent__button--secondary {
	color: rgba(255, 255, 255, 0.72);
	background: rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.11);
}

.cookie-consent__button--secondary:hover,
.cookie-consent__button--secondary:focus-visible {
	color: #fff;
	border-color: rgba(0, 255, 102, 0.25);
}

.section-progress {
	--section-step: 0;
	--section-ratio: 0;
	position: fixed;
	top: 50%;
	left: max(16px, calc((100vw - var(--content-width)) / 4 - 24px));
	z-index: 820;
	width: 48px;
	padding: 12px 8px 10px;
	color: rgba(255, 255, 255, 0.48);
	background: transparent;
	border: 0;
	box-shadow: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-12px, -50%);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
}

.section-progress.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(0, -50%);
}

.section-progress__steps {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.section-progress__steps li,
.section-progress__steps a {
	position: relative;
	display: flex;
	width: 30px;
	height: 22px;
	align-items: center;
	justify-content: center;
}

.section-progress__steps a {
	color: inherit;
	text-decoration: none;
}

.section-progress__node {
	display: block;
	width: 7px;
	height: 7px;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.section-progress__steps li.is-complete .section-progress__node {
	background: rgba(0, 255, 102, 0.4);
	border-color: rgba(0, 255, 102, 0.55);
}

.section-progress__steps li.is-active .section-progress__node {
	background: transparent;
	border-color: transparent;
	transform: scale(0.5);
}

.section-progress__rail {
	position: absolute;
	top: 23px;
	bottom: 41px;
	left: 23px;
	width: 2px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 999px;
}

.section-progress__rail i {
	display: block;
	width: 100%;
	height: calc(var(--section-ratio) * 100%);
	background: linear-gradient(180deg, rgba(0, 255, 102, 0.42), var(--accent-green));
	border-radius: inherit;
	box-shadow: 0 0 10px rgba(0, 255, 102, 0.35);
	transition: height 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-progress__runner {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 3;
	width: 14px;
	height: 14px;
	background: var(--accent-green);
	border: 3px solid rgba(5, 12, 8, 0.92);
	border-radius: 50%;
	box-shadow: 0 0 0 1px rgba(0, 255, 102, 0.35), 0 0 15px rgba(0, 255, 102, 0.58);
	transform: translateY(calc(var(--section-step) * 32px));
	transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-progress__label {
	position: absolute;
	top: 50%;
	left: 39px;
	min-width: max-content;
	padding: 7px 10px;
	color: rgba(255, 255, 255, 0.82);
	background: rgba(8, 12, 10, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 9px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
	font-size: 0.68rem;
	font-weight: 750;
	letter-spacing: 0.025em;
	line-height: 1;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-6px, -50%);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.25s ease;
}

.section-progress__steps a:hover .section-progress__label,
.section-progress__steps a:focus-visible .section-progress__label {
	opacity: 1;
	visibility: visible;
	transform: translate(0, -50%);
}

.section-progress__status {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.38);
	font-size: 0.56rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
}

@media (max-width: 1360px) {
	.section-progress {
		left: 4px;
		width: 34px;
		padding-inline: 0;
	}

	.section-progress__steps li,
	.section-progress__steps a {
		width: 32px;
	}

	.section-progress__rail {
		left: 16px;
	}

	.section-progress__runner {
		left: 9px;
	}

	.section-progress__label {
		left: 35px;
	}

	.section-progress__status {
		font-size: 0.5rem;
	}
}

@media (max-width: 1120px), (hover: none), (pointer: coarse) {
	.section-progress {
		display: none;
	}
}

.back-to-top {
	position: fixed;
	right: max(22px, env(safe-area-inset-right));
	bottom: max(22px, env(safe-area-inset-bottom));
	z-index: 850;
	display: inline-flex;
	width: 48px;
	height: 48px;
	padding: 0;
	align-items: center;
	justify-content: center;
	color: #06110a;
	background: var(--accent-green);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 14px;
	box-shadow: 0 13px 30px rgba(0, 255, 102, 0.22), 0 8px 24px rgba(0, 0, 0, 0.42);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(12px) scale(0.92);
	transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease, background 0.2s ease;
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
	background: #56ff99;
	transform: translateY(-3px) scale(1);
}

.back-to-top svg {
	width: 21px;
	height: 21px;
}

/* Targeted refresh for the highlighted landing sections and internal pages. */
.page-visual-header {
	position: relative;
	max-width: 1040px;
	margin-right: auto;
	margin-bottom: 54px;
	margin-left: auto;
	overflow: hidden;
	padding: 44px 52px;
	background:
		linear-gradient(145deg, rgba(23, 29, 25, 0.84), rgba(7, 10, 8, 0.76)),
		radial-gradient(circle at 85% 0, rgba(0, 255, 102, 0.09), transparent 34%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.045);
	-webkit-backdrop-filter: blur(16px) saturate(115%);
	backdrop-filter: blur(16px) saturate(115%);
}

.page-visual-header::before {
	position: absolute;
	top: -150px;
	right: -110px;
	width: 360px;
	height: 360px;
	background: radial-gradient(circle, rgba(0, 255, 102, 0.13), transparent 66%);
	border: 1px solid rgba(0, 255, 102, 0.055);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.page-visual-header::after {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 102, 0.88) 28%, rgba(112, 255, 168, 0.34) 70%, transparent);
	content: "";
}

.page-visual-header > * {
	position: relative;
	z-index: 1;
}

.page-visual-header .page-title {
	margin-bottom: 16px;
}

.page-visual-header .archive-description,
.page-visual-header > p {
	max-width: 790px;
	margin-right: auto;
	margin-left: auto;
	color: rgba(255, 255, 255, 0.64);
	line-height: 1.7;
}

.page-visual-header--left {
	max-width: none;
	text-align: left;
}

.page-visual-header--left .page-intro,
.page-visual-header--left > p {
	margin-left: 0;
}

.page-visual-header__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 13px;
	color: var(--accent-green);
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.page-visual-header__eyebrow::before {
	width: 7px;
	height: 7px;
	background: var(--accent-green);
	border-radius: 50%;
	box-shadow: 0 0 13px rgba(0, 255, 102, 0.72);
	content: "";
}

.page-visual-header__chips {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 24px;
}

.page-visual-header--left .page-visual-header__chips {
	justify-content: flex-start;
}

.page-visual-header__chips span {
	padding: 8px 11px;
	color: rgba(255, 255, 255, 0.68);
	background: rgba(5, 10, 7, 0.52);
	border: 1px solid rgba(0, 255, 102, 0.13);
	border-radius: 10px;
	font-size: 0.76rem;
	font-weight: 700;
}

.reviews-page,
.archive-vacancy-page,
.archive-education-page,
.single-vacancy-page,
.single-education-page,
.cooperation-page,
.about-page-main,
.contact-page {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: #080a09;
}

.reviews-page::before,
.archive-vacancy-page::before,
.archive-education-page::before,
.single-vacancy-page::before,
.single-education-page::before,
.cooperation-page::before,
.about-page-main::before,
.contact-page::before {
	position: absolute;
	top: -90px;
	left: -4%;
	z-index: -2;
	width: 108%;
	height: 900px;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	content: "";
	filter: blur(6px) saturate(0.72) brightness(0.65);
	opacity: 0.54;
	transform: scale(1.045);
	pointer-events: none;
}

.reviews-page::after,
.archive-vacancy-page::after,
.archive-education-page::after,
.single-vacancy-page::after,
.single-education-page::after,
.cooperation-page::after,
.about-page-main::after,
.contact-page::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(180deg, rgba(5, 8, 6, 0.5), #080a09 760px),
		radial-gradient(circle at 10% 20%, rgba(0, 255, 102, 0.045), transparent 28%);
	content: "";
	pointer-events: none;
}

.reviews-page::before,
.about-page-main::before {
	background-image: url("images/sections/about-team.webp");
}

.archive-vacancy-page::before,
.single-vacancy-page::before {
	background-image: url("images/sections/employer-workforce.webp");
}

.archive-education-page::before,
.single-education-page::before {
	background-image: url("images/sections/training-session.webp");
}

.cooperation-page::before {
	background-image: url("images/hero/outstaffing-team.webp");
}

.contact-page::before {
	background-image: url("images/hero/logistics-team.webp");
}

.reviews-page > .container,
.archive-vacancy-page > .container,
.archive-education-page > .container,
.single-vacancy-page > .container,
.single-education-page > .container,
.cooperation-page > .container,
.about-page-main > .container,
.contact-page > .container {
	position: relative;
	z-index: 1;
}

/* Single vacancy and education entries. */
.single-detail-page {
	padding-top: 58px;
}

.single-detail-page .single-detail-hero {
	max-width: 1120px;
	margin-bottom: 30px;
	padding: 34px;
}

.single-detail-hero__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
	align-items: stretch;
	gap: 34px;
}

.single-detail-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-width: 0;
	padding: 10px 8px 10px 12px;
}

.single-detail-hero .page-title {
	max-width: 760px;
	font-size: clamp(2.25rem, 4.5vw, 3.7rem);
	letter-spacing: -0.035em;
}

.single-detail-hero__lead {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 255, 255, 0.67);
	font-size: 1.02rem;
	line-height: 1.7;
}

.single-detail-hero__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 4px;
}

.single-detail-hero .vacancy-single__salary {
	margin: 0;
	padding: 10px 14px;
	color: #07120b;
	background: linear-gradient(135deg, #65ffa1, var(--accent-green));
	border: 0;
	border-radius: 10px;
	box-shadow: 0 10px 26px rgba(0, 255, 102, 0.18);
	font-size: 1.12rem;
	font-weight: 850;
	line-height: 1;
}

.single-detail-hero__date {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.82rem;
	font-weight: 650;
}

.single-detail-hero__date::before {
	width: 7px;
	height: 7px;
	background: var(--accent-green);
	border-radius: 50%;
	box-shadow: 0 0 11px rgba(0, 255, 102, 0.58);
	content: "";
}

.single-detail-hero__image {
	position: relative;
	min-height: 280px;
	overflow: hidden;
	background: #111713;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 18px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.single-detail-hero__image::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 44%, rgba(2, 8, 4, 0.48));
	content: "";
	pointer-events: none;
}

.single-detail-hero__image img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	transition: transform 0.65s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.single-detail-hero:hover .single-detail-hero__image img {
	transform: scale(1.035);
}

.single-detail-hero__symbol {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 280px;
	overflow: hidden;
	color: var(--accent-green);
	background:
		radial-gradient(circle at 50% 42%, rgba(0, 255, 102, 0.15), transparent 43%),
		linear-gradient(145deg, rgba(10, 18, 13, 0.88), rgba(4, 8, 6, 0.76));
	border: 1px solid rgba(0, 255, 102, 0.16);
	border-radius: 18px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.single-detail-hero__symbol::before,
.single-detail-hero__symbol::after {
	position: absolute;
	width: 210px;
	height: 210px;
	border: 1px solid rgba(0, 255, 102, 0.08);
	border-radius: 50%;
	content: "";
}

.single-detail-hero__symbol::after {
	width: 290px;
	height: 290px;
	border-color: rgba(255, 255, 255, 0.035);
}

.single-detail-hero__symbol svg {
	position: relative;
	z-index: 1;
	width: 105px;
	height: 105px;
	fill: none;
	stroke: currentColor;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
	filter: drop-shadow(0 0 18px rgba(0, 255, 102, 0.2));
}

.single-detail-hero__symbol span {
	position: relative;
	z-index: 1;
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.single-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	align-items: start;
	gap: 28px;
	max-width: 1120px;
	margin: 0 auto;
}

.single-detail-content {
	position: relative;
	padding: 44px 48px;
	background: linear-gradient(145deg, rgba(20, 25, 22, 0.91), rgba(8, 11, 9, 0.86));
	border-color: rgba(255, 255, 255, 0.09);
	border-radius: 22px;
	box-shadow: 0 24px 62px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.035);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

.single-detail-content::before {
	position: absolute;
	top: 0;
	left: 36px;
	width: 92px;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-green), transparent);
	content: "";
}

.single-detail-content__label {
	display: inline-block;
	margin-bottom: 22px;
	color: var(--accent-green);
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.single-detail-content h2,
.single-detail-content h3,
.single-detail-content h4 {
	color: #fff;
	letter-spacing: -0.018em;
}

.single-detail-content h2 {
	margin: 36px 0 16px;
	font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.single-detail-content h3 {
	margin: 30px 0 14px;
}

.single-detail-content p,
.single-detail-content li {
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.78;
}

.single-detail-content > p:first-of-type {
	margin-top: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.03rem;
}

.single-detail-content ul,
.single-detail-content ol {
	display: grid;
	gap: 10px;
	margin: 18px 0 28px;
	padding: 0;
	list-style: none;
	counter-reset: detail-list;
}

.single-detail-content li {
	position: relative;
	padding: 12px 14px 12px 42px;
	background: rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 11px;
}

.single-detail-content li::before {
	position: absolute;
	top: 18px;
	left: 17px;
	width: 8px;
	height: 8px;
	background: var(--accent-green);
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0, 255, 102, 0.48);
	content: "";
}

.single-detail-content a:not(.wp-block-button__link) {
	color: var(--accent-green);
	font-weight: 700;
	text-underline-offset: 3px;
}

.single-detail-content .wp-block-buttons {
	gap: 12px;
	margin-top: 28px;
}

.single-detail-content .wp-block-button__link {
	padding: 13px 21px;
	color: #07120b;
	background: var(--accent-green);
	border: 1px solid var(--accent-green);
	border-radius: 9px;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(0, 255, 102, 0.14);
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.single-detail-content .wp-block-button__link:hover,
.single-detail-content .wp-block-button__link:focus-visible {
	background: var(--accent-green-hover);
	transform: translateY(-2px);
}

.single-detail-content .is-style-outline .wp-block-button__link {
	color: #fff;
	background: rgba(0, 0, 0, 0.16);
	border-color: rgba(0, 255, 102, 0.48);
	box-shadow: none;
}

.single-detail-content .is-style-outline .wp-block-button__link:hover,
.single-detail-content .is-style-outline .wp-block-button__link:focus-visible {
	color: #fff;
	background: rgba(0, 255, 102, 0.11);
}

.single-detail-sidebar {
	position: sticky;
	top: calc(var(--header-height) + 24px);
	display: grid;
	gap: 14px;
}

.single-detail-cta {
	position: relative;
	overflow: hidden;
	padding: 30px;
	background:
		radial-gradient(circle at 100% 0, rgba(0, 255, 102, 0.11), transparent 39%),
		linear-gradient(145deg, rgba(20, 26, 22, 0.92), rgba(7, 10, 8, 0.9));
	border: 1px solid rgba(0, 255, 102, 0.14);
	border-radius: 22px;
	box-shadow: 0 22px 56px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

.single-detail-cta::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 102, 0.78), transparent);
	content: "";
}

.single-detail-cta__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 20px;
	color: var(--accent-green);
	background: rgba(0, 255, 102, 0.08);
	border: 1px solid rgba(0, 255, 102, 0.18);
	border-radius: 13px;
}

.single-detail-cta__icon svg {
	width: 29px;
	height: 29px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.single-detail-cta h2 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 1.4rem;
}

.single-detail-cta p {
	margin: 0 0 22px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.92rem;
	line-height: 1.65;
}

.single-detail-cta .hero-btn {
	display: block;
	width: 100%;
	padding-inline: 18px;
	text-align: center;
}

.single-detail-cta__note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 15px;
	color: rgba(255, 255, 255, 0.48);
	font-size: 0.76rem;
	font-weight: 650;
}

.single-detail-cta__note i {
	width: 6px;
	height: 6px;
	background: var(--accent-green);
	border-radius: 50%;
	box-shadow: 0 0 9px rgba(0, 255, 102, 0.62);
}

.single-detail-navigation {
	display: grid;
	gap: 9px;
}

.single-detail-back {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 48px;
	padding: 12px 16px;
	color: rgba(255, 255, 255, 0.64);
	background: rgba(8, 12, 9, 0.68);
	border: 1px solid rgba(255, 255, 255, 0.075);
	border-radius: 12px;
	font-size: 0.84rem;
	font-weight: 750;
	text-decoration: none;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.single-detail-back:hover,
.single-detail-back:focus-visible {
	color: #fff;
	background: rgba(0, 255, 102, 0.07);
	border-color: rgba(0, 255, 102, 0.2);
	transform: translateY(-2px);
}

.partners-section {
	position: relative;
	isolation: isolate;
	background: #080b09;
	border-color: rgba(255, 255, 255, 0.055);
}

.partners-section::before,
.partners-section::after,
.home-contact-section::before,
.home-contact-section::after {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none;
}

.partners-section::before {
	z-index: -2;
	background: url("images/sections/employer-workforce.webp") center 42% / cover no-repeat;
	filter: blur(7px) saturate(0.55);
	opacity: 0.3;
	transform: scale(1.055);
}

.partners-section::after {
	z-index: -1;
	background:
		linear-gradient(180deg, rgba(5, 9, 7, 0.88), rgba(8, 13, 10, 0.7), rgba(5, 8, 6, 0.9)),
		radial-gradient(circle at 50% 52%, rgba(0, 255, 102, 0.07), transparent 45%);
}

.partners-section .section-title {
	text-shadow: 0 8px 28px rgba(0, 0, 0, 0.72);
}

.partner-logo-card {
	background: rgba(255, 255, 255, 0.94);
	border-color: rgba(255, 255, 255, 0.24);
	border-radius: 18px;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.8);
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.partner-logo-card:hover {
	box-shadow: 0 24px 52px rgba(0, 0, 0, 0.4), 0 0 28px rgba(0, 255, 102, 0.055);
	transform: translateY(-4px);
}

.home-contact-section {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: #080b09;
}

.home-contact-section::before {
	z-index: -2;
	background: url("images/hero/logistics-team.webp") center / cover no-repeat;
	filter: blur(7px) saturate(0.62);
	opacity: 0.34;
	transform: scale(1.055);
}

.home-contact-section::after {
	z-index: -1;
	background:
		linear-gradient(135deg, rgba(5, 9, 7, 0.9), rgba(7, 11, 8, 0.72), rgba(5, 8, 6, 0.92)),
		radial-gradient(circle at 14% 18%, rgba(0, 255, 102, 0.1), transparent 34%);
}

.home-contact-section > .container {
	position: relative;
	z-index: 1;
}

.home-contact-section .contact-page-form {
	background: linear-gradient(135deg, rgba(17, 23, 19, 0.87), rgba(6, 9, 7, 0.8));
	-webkit-backdrop-filter: blur(17px) saturate(115%);
	backdrop-filter: blur(17px) saturate(115%);
}

.reviews-page .reviews-carousel {
	margin-bottom: 0;
}

.reviews-page .review-card {
	padding: 24px 23px 21px;
}

.reviews-page .review-card__avatar {
	width: 52px;
	height: 52px;
	flex-basis: 52px;
}

.reviews-form-feature {
	position: relative;
	display: grid;
	grid-template-columns: minmax(280px, 0.8fr) minmax(480px, 1.2fr);
	margin-top: 68px;
	overflow: hidden;
	background: linear-gradient(140deg, rgba(18, 24, 20, 0.9), rgba(6, 9, 7, 0.83));
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	box-shadow: 0 28px 76px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.045);
	-webkit-backdrop-filter: blur(17px) saturate(115%);
	backdrop-filter: blur(17px) saturate(115%);
}

.reviews-form-feature::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 2;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 102, 0.9) 32%, rgba(113, 255, 170, 0.3) 72%, transparent);
	content: "";
}

.reviews-form-feature__intro {
	position: relative;
	padding: 48px 42px;
	background:
		radial-gradient(circle at 8% 4%, rgba(0, 255, 102, 0.12), transparent 34%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent);
}

.reviews-form-feature__intro h2 {
	margin: 0 0 17px;
	color: #fff;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	line-height: 1.15;
}

.reviews-form-feature__intro > p {
	margin: 0;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.72;
}

.reviews-form-feature__intro ul {
	display: grid;
	gap: 17px;
	margin: 34px 0 0;
	padding: 0;
	list-style: none;
}

.reviews-form-feature__intro li {
	display: flex;
	align-items: flex-start;
	gap: 13px;
}

.reviews-form-feature__intro li > span {
	display: inline-flex;
	width: 32px;
	height: 32px;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	color: var(--accent-green);
	background: rgba(0, 255, 102, 0.075);
	border: 1px solid rgba(0, 255, 102, 0.18);
	border-radius: 9px;
	font-size: 0.68rem;
	font-weight: 850;
}

.reviews-form-feature__intro strong,
.reviews-form-feature__intro small {
	display: block;
}

.reviews-form-feature__intro strong {
	color: #e9efeb;
	font-size: 0.91rem;
}

.reviews-form-feature__intro small {
	margin-top: 3px;
	color: #7d8781;
	font-size: 0.77rem;
}

.reviews-form-feature__form {
	border-left: 1px solid rgba(255, 255, 255, 0.075);
}

.reviews-page .comment-respond {
	max-width: none;
	margin: 0;
	padding: 46px;
	scroll-margin-top: calc(var(--header-height) + 24px);
	background: transparent;
	border: 0;
	border-radius: 0;
}

.reviews-page .review-form-title {
	font-size: 1.75rem;
}

.reviews-page .comment-form input[type="text"],
.reviews-page .comment-form input[type="email"],
.reviews-page .comment-form textarea {
	padding: 14px 15px;
	background: rgba(3, 7, 5, 0.64);
	border-color: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.reviews-page .comment-form input[type="text"]:focus,
.reviews-page .comment-form input[type="email"]:focus,
.reviews-page .comment-form textarea:focus {
	background: rgba(3, 8, 5, 0.82);
	border-color: rgba(0, 255, 102, 0.5);
	box-shadow: 0 0 0 3px rgba(0, 255, 102, 0.07);
	outline: none;
}

.reviews-page .comment-form textarea {
	min-height: 160px;
}

.reviews-page .comment-form-privacy,
.reviews-page .comment-form-cookies-consent,
.reviews-page .logged-in-as {
	padding: 13px 15px;
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(255, 255, 255, 0.065);
	border-radius: 12px;
}

.archive-vacancy-page .archive-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.archive-vacancy-page .page-visual-header,
.reviews-page .page-visual-header {
	max-width: none;
}

.archive-vacancy-page .listing-card__image {
	aspect-ratio: 4 / 3;
}

.archive-vacancy-page .listing-card__body {
	padding: 23px 24px 25px;
}

.archive-vacancy-page .listing-card__excerpt {
	font-size: 0.88rem;
}

.archive-education-page .page-visual-header {
	max-width: none;
}

.archive-education-page .education-benefits {
	padding: 34px;
	background: linear-gradient(145deg, rgba(18, 24, 20, 0.72), rgba(7, 10, 8, 0.7));
	border: 1px solid rgba(255, 255, 255, 0.085);
	border-radius: 24px;
	box-shadow: 0 24px 66px rgba(0, 0, 0, 0.3);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
}

.archive-education-page .education-benefits .section-title {
	margin-bottom: 28px;
}

.archive-education-page .education-benefits .benefits-grid {
	counter-reset: education-benefit;
}

.archive-education-page .education-benefits .benefit-card {
	background: linear-gradient(150deg, rgba(25, 29, 26, 0.86), rgba(9, 12, 10, 0.8));
	counter-increment: education-benefit;
}

.archive-education-page .education-benefits .benefit-card h3::before {
	content: "Преимущество 0" counter(education-benefit);
}

.archive-education-page .archive-grid {
	counter-reset: education-program;
	gap: 20px;
}

.archive-education-page .archive-grid .listing-card {
	position: relative;
	overflow: hidden;
	min-height: 100%;
	padding: 30px 28px 27px;
	background: linear-gradient(150deg, rgba(24, 28, 25, 0.88), rgba(8, 12, 9, 0.84));
	border-color: rgba(255, 255, 255, 0.1);
	border-radius: 22px;
	box-shadow: 0 22px 58px rgba(0, 0, 0, 0.3);
	counter-increment: education-program;
	transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.archive-education-page .archive-grid .listing-card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-green), rgba(0, 255, 102, 0.16) 58%, transparent);
	content: "";
}

.archive-education-page .archive-grid .listing-card::after {
	position: absolute;
	top: -88px;
	right: -76px;
	width: 190px;
	height: 190px;
	background: radial-gradient(circle, rgba(0, 255, 102, 0.11), transparent 68%);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.archive-education-page .archive-grid .listing-card > * {
	position: relative;
	z-index: 1;
}

.archive-education-page .archive-grid .listing-card h2 {
	color: #fff;
	font-size: 1.25rem;
	line-height: 1.38;
}

.archive-education-page .archive-grid .listing-card h2::before {
	display: block;
	margin-bottom: 11px;
	color: var(--accent-green);
	content: "Программа 0" counter(education-program);
	font-size: 0.66rem;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.archive-education-page .archive-grid .listing-card__excerpt {
	margin: 18px 0 24px;
	padding: 14px 15px;
	color: rgba(255, 255, 255, 0.64);
	background: rgba(5, 10, 7, 0.48);
	border: 1px solid rgba(255, 255, 255, 0.065);
	border-radius: 14px;
	font-size: 0.92rem;
	line-height: 1.65;
}

.archive-education-page .archive-grid .listing-card:hover {
	border-color: rgba(0, 255, 102, 0.2);
	box-shadow: 0 30px 72px rgba(0, 0, 0, 0.4), 0 0 32px rgba(0, 255, 102, 0.04);
	transform: translateY(-6px);
}

.cooperation-page .cooperation-card:hover {
	background: linear-gradient(145deg, rgba(0, 255, 102, 0.085), rgba(255, 255, 255, 0.018) 58%, transparent);
}

.cooperation-page .cooperation-cta,
.about-page-main .about-cta {
	position: relative;
	overflow: hidden;
	padding: 46px 36px;
	background:
		radial-gradient(circle at 50% 0, rgba(0, 255, 102, 0.1), transparent 46%),
		linear-gradient(145deg, rgba(22, 28, 24, 0.84), rgba(7, 10, 8, 0.78));
	border: 1px solid rgba(0, 255, 102, 0.15);
	border-radius: 22px;
	box-shadow: 0 24px 66px rgba(0, 0, 0, 0.32);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
}

.cooperation-page .cooperation-cta {
	padding: 34px 40px;
}

.about-page-redesign .about-hero.page-visual-header {
	max-width: none;
	margin-bottom: 30px;
	padding: 32px;
	text-align: left;
}

.about-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
	align-items: stretch;
	gap: 38px;
}

.about-hero__content {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 18px 12px 18px 20px;
}

.about-page-redesign .about-hero .page-title {
	max-width: 690px;
	margin-bottom: 20px;
	font-size: clamp(2.5rem, 4.4vw, 4rem);
	letter-spacing: -0.045em;
}

.about-page-redesign .about-hero .page-title span {
	display: block;
	color: var(--accent-green);
	font-size: clamp(1.9rem, 3.05vw, 2.85rem);
	line-height: 1.12;
	white-space: nowrap;
}

.about-page-redesign .about-hero__content > p {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 255, 255, 0.67);
	font-size: 1.03rem;
	line-height: 1.72;
}

.about-page-redesign .about-hero .page-visual-header__chips {
	justify-content: flex-start;
	margin-top: 27px;
}

.about-hero__visual {
	position: relative;
	min-height: 390px;
	margin: 0;
	overflow: hidden;
	background: #0b100d;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 19px;
	box-shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
}

.about-hero__visual::before,
.about-hero__visual::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	content: "";
	pointer-events: none;
}

.about-hero__visual::before {
	background: linear-gradient(180deg, rgba(2, 7, 4, 0.02) 28%, rgba(2, 7, 4, 0.84) 100%);
}

.about-hero__visual::after {
	inset: auto 0 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
}

.about-hero__visual img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 390px;
	object-fit: cover;
	filter: saturate(0.72) contrast(1.06);
	transition: transform 0.7s cubic-bezier(0.2, 0.78, 0.2, 1), filter 0.7s ease;
}

.about-hero:hover .about-hero__visual img {
	filter: saturate(0.9) contrast(1.04);
	transform: scale(1.035);
}

.about-hero__visual figcaption {
	position: absolute;
	right: 20px;
	bottom: 20px;
	left: 20px;
	z-index: 2;
	padding: 18px 20px;
	background: rgba(5, 10, 7, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 14px;
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
}

.about-hero__visual figcaption span,
.about-hero__visual figcaption small {
	display: block;
}

.about-hero__visual figcaption span {
	margin-bottom: 6px;
	color: rgba(255, 255, 255, 0.53);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.about-hero__visual figcaption strong {
	color: var(--accent-green);
	font-size: 2.1rem;
	line-height: 1;
}

.about-hero__visual figcaption small {
	margin-top: 6px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.78rem;
}

.about-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 13px;
	color: var(--accent-green);
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.145em;
	text-transform: uppercase;
}

.about-kicker::before {
	width: 19px;
	height: 1px;
	background: currentColor;
	content: "";
}

.about-page-redesign .about-overview {
	position: relative;
	grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.95fr);
	align-items: stretch;
	gap: 0;
	margin-bottom: 82px;
	overflow: hidden;
	background: linear-gradient(145deg, rgba(21, 27, 23, 0.9), rgba(7, 10, 8, 0.84));
	border: 1px solid rgba(255, 255, 255, 0.095);
	border-radius: 24px;
	box-shadow: 0 28px 76px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.035);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

.about-page-redesign .about-overview::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent-green) 24%, rgba(0, 255, 102, 0.2) 74%, transparent);
	content: "";
}

.about-page-redesign .about-overview__copy {
	padding: 50px 52px;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.about-overview__body h2,
.about-overview__body h3 {
	margin: 0 0 22px;
	color: #fff;
	font-size: clamp(1.8rem, 3vw, 2.45rem);
	letter-spacing: -0.035em;
}

.about-page-redesign .about-overview__body p {
	margin-bottom: 19px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.98rem;
	line-height: 1.82;
}

.about-page-redesign .about-overview__body p:last-child {
	margin-bottom: 0;
}

.about-page-redesign .about-overview__body .wp-block-list {
	display: none;
}

.about-page-redesign .stats-card {
	position: relative;
	overflow: hidden;
	padding: 48px 46px;
	background:
		radial-gradient(circle at 100% 0, rgba(0, 255, 102, 0.11), transparent 34%),
		rgba(3, 8, 5, 0.36);
	border-left: 1px solid rgba(255, 255, 255, 0.075);
	box-shadow: none;
}

.about-page-redesign .stats-card h2 {
	margin: 0 0 10px;
	color: #fff;
	font-size: clamp(1.55rem, 2.5vw, 2rem);
	letter-spacing: -0.025em;
}

.stats-card__lead {
	max-width: 480px;
	margin: 0 0 24px;
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.84rem;
	line-height: 1.6;
}

.about-page-redesign .stats-grid {
	gap: 8px;
}

.about-page-redesign .stats-grid > div {
	position: relative;
	min-height: 108px;
	padding: 18px;
	background: rgba(2, 7, 4, 0.36);
	border: 1px solid rgba(255, 255, 255, 0.065);
	border-radius: 13px;
	transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.about-page-redesign .stats-grid > div:hover {
	background: rgba(0, 255, 102, 0.055);
	border-color: rgba(0, 255, 102, 0.16);
	transform: translateY(-3px);
}

.about-page-redesign .stats-grid .stats-grid__primary {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	column-gap: 16px;
	grid-column: 1 / -1;
	min-height: 100px;
	background: linear-gradient(110deg, rgba(0, 255, 102, 0.095), rgba(0, 0, 0, 0.16));
	border-color: rgba(0, 255, 102, 0.13);
}

.about-page-redesign .stats-grid strong {
	font-size: 2rem;
}

.about-page-redesign .stats-grid__primary strong {
	grid-row: 1 / 3;
	font-size: 3.2rem;
}

.about-page-redesign .stats-grid span {
	margin-top: 6px;
	font-size: 0.8rem;
}

.about-page-redesign .stats-grid__primary span {
	align-self: end;
	margin: 0;
	color: #fff;
	font-size: 0.92rem;
	font-weight: 750;
}

.about-page-redesign .stats-grid__primary small {
	align-self: start;
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.72rem;
}

.about-page-redesign .about-history,
.about-page-redesign .about-mission,
.about-page-redesign .about-services,
.about-page-redesign .about-benefits,
.about-page-redesign .about-activities {
	margin-bottom: 82px;
}

.about-section-heading.about-section-heading--left {
	max-width: 850px;
	margin-right: 0;
	margin-left: 0;
	text-align: left;
}

.about-section-heading--left .about-kicker {
	justify-content: flex-start;
}

.about-section-heading--left .section-title {
	text-align: left;
}

.about-timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	overflow: hidden;
	background: linear-gradient(145deg, rgba(18, 24, 20, 0.88), rgba(6, 9, 7, 0.84));
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 24px;
	box-shadow: 0 24px 68px rgba(0, 0, 0, 0.3);
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
}

.about-timeline::before {
	position: absolute;
	top: 57px;
	right: 15%;
	left: 15%;
	height: 1px;
	background: linear-gradient(90deg, rgba(0, 255, 102, 0.1), rgba(0, 255, 102, 0.42), rgba(0, 255, 102, 0.1));
	content: "";
}

.about-timeline article {
	position: relative;
	min-width: 0;
	padding: 36px 34px 38px;
	border-right: 1px solid rgba(255, 255, 255, 0.065);
}

.about-timeline article:last-child {
	border-right: 0;
}

.about-timeline__marker {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 43px;
	height: 43px;
	margin-bottom: 34px;
	color: #071009;
	background: var(--accent-green);
	border: 7px solid #101612;
	border-radius: 50%;
	box-shadow: 0 0 0 1px rgba(0, 255, 102, 0.2), 0 0 25px rgba(0, 255, 102, 0.13);
	font-size: 0.68rem;
	font-weight: 900;
}

.about-timeline small {
	display: block;
	margin-bottom: 9px;
	color: var(--accent-green);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.about-timeline h3 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 1.25rem;
}

.about-timeline p {
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.88rem;
	line-height: 1.72;
}

.about-page-redesign .about-mission {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
	align-items: stretch;
	overflow: hidden;
	background:
		radial-gradient(circle at 5% 5%, rgba(0, 255, 102, 0.08), transparent 34%),
		linear-gradient(145deg, rgba(20, 26, 22, 0.9), rgba(6, 9, 7, 0.86));
	border: 1px solid rgba(255, 255, 255, 0.095);
	border-radius: 24px;
	box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32);
}

.about-mission__copy {
	padding: 50px 52px;
}

.about-mission__copy h2,
.about-benefits__intro h2 {
	max-width: 720px;
	margin: 0 0 19px;
	color: #fff;
	font-size: clamp(1.85rem, 3vw, 2.55rem);
	letter-spacing: -0.035em;
}

.about-mission__copy p,
.about-benefits__intro p {
	max-width: 750px;
	margin: 0 0 16px;
	color: rgba(255, 255, 255, 0.63);
	line-height: 1.78;
}

.about-mission__copy p:last-child {
	margin-bottom: 0;
}

.about-accreditation {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	min-width: 0;
	padding: 44px 42px;
	overflow: hidden;
	background: linear-gradient(150deg, rgba(0, 255, 102, 0.115), rgba(0, 255, 102, 0.018));
	border-left: 1px solid rgba(0, 255, 102, 0.14);
}

.about-accreditation::after {
	position: absolute;
	right: -66px;
	bottom: -77px;
	width: 230px;
	height: 230px;
	border: 1px solid rgba(0, 255, 102, 0.1);
	border-radius: 50%;
	box-shadow: 0 0 0 30px rgba(0, 255, 102, 0.02), 0 0 0 60px rgba(0, 255, 102, 0.014);
	content: "";
}

.about-accreditation__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
	margin-bottom: 30px;
	color: var(--accent-green);
	background: rgba(0, 255, 102, 0.08);
	border: 1px solid rgba(0, 255, 102, 0.19);
	border-radius: 19px;
}

.about-accreditation__icon svg {
	width: 39px;
	height: 39px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.2;
}

.about-accreditation > span:not(.about-accreditation__icon),
.about-accreditation small {
	position: relative;
	z-index: 1;
	color: rgba(255, 255, 255, 0.48);
	font-size: 0.67rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.about-accreditation h3 {
	position: relative;
	z-index: 1;
	margin: 8px 0 16px;
	color: #fff;
	font-size: 1.55rem;
}

.about-accreditation strong {
	position: relative;
	z-index: 1;
	color: var(--accent-green);
	font-size: clamp(1.85rem, 3vw, 2.6rem);
	letter-spacing: -0.035em;
}

.about-accreditation p {
	position: relative;
	z-index: 1;
	margin: 7px 0 25px;
	color: rgba(255, 255, 255, 0.7);
}

.about-services__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	overflow: hidden;
	background: linear-gradient(145deg, rgba(18, 24, 20, 0.88), rgba(6, 9, 7, 0.84));
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 24px;
	box-shadow: 0 24px 68px rgba(0, 0, 0, 0.3);
}

.about-services__list article {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 24px;
	min-height: 205px;
	padding: 36px 38px;
	border-right: 1px solid rgba(255, 255, 255, 0.065);
	border-bottom: 1px solid rgba(255, 255, 255, 0.065);
	transition: background 0.32s ease;
}

.about-services__list article:nth-child(2n) {
	border-right: 0;
}

.about-services__list article:nth-last-child(-n + 2) {
	border-bottom: 0;
}

.about-services__list article:hover {
	background: linear-gradient(135deg, rgba(0, 255, 102, 0.055), rgba(255, 255, 255, 0.01));
}

.about-services__list article > span {
	color: rgba(0, 255, 102, 0.55);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.about-services__list h3 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 1.24rem;
}

.about-services__list p {
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.89rem;
	line-height: 1.72;
}

.about-page-redesign .about-principles {
	margin-bottom: 82px;
}

.about-section-heading {
	max-width: 720px;
	margin: 0 auto 34px;
	text-align: center;
}

.about-section-heading .about-kicker {
	justify-content: center;
}

.about-section-heading .section-title {
	margin-bottom: 12px;
}

.about-section-heading p {
	margin: 0;
	color: rgba(255, 255, 255, 0.53);
}

.about-page-redesign .principles-grid {
	position: relative;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	overflow: hidden;
	background: linear-gradient(145deg, rgba(19, 25, 21, 0.86), rgba(6, 9, 7, 0.82));
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 24px;
	box-shadow: 0 24px 68px rgba(0, 0, 0, 0.31);
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
}

.about-page-redesign .principles-grid::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-green), rgba(0, 255, 102, 0.22) 65%, transparent);
	content: "";
}

.about-principle {
	position: relative;
	min-height: 335px;
	padding: 32px 27px 36px;
	border-right: 1px solid rgba(255, 255, 255, 0.07);
	transition: background 0.35s ease;
}

.about-principle:last-child {
	border-right: 0;
}

.about-principle:hover {
	background: linear-gradient(145deg, rgba(0, 255, 102, 0.055), rgba(255, 255, 255, 0.012));
}

.about-principle__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 42px;
}

.about-principle__number {
	color: rgba(255, 255, 255, 0.2);
	font-size: 2.45rem;
	font-weight: 900;
	letter-spacing: -0.06em;
	line-height: 1;
}

.about-principle__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	color: var(--accent-green);
	background: rgba(0, 255, 102, 0.075);
	border: 1px solid rgba(0, 255, 102, 0.17);
	border-radius: 15px;
	transition: transform 0.35s ease, background 0.35s ease;
}

.about-principle:hover .about-principle__icon {
	background: rgba(0, 255, 102, 0.12);
	transform: translateY(-3px) rotate(-2deg);
}

.about-principle__icon svg {
	width: 31px;
	height: 31px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.about-principle h3 {
	margin: 0 0 13px;
	color: #fff;
	font-size: 1.18rem;
}

.about-principle p {
	margin: 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	line-height: 1.68;
}

.about-page-redesign .about-benefits {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	overflow: hidden;
	background:
		radial-gradient(circle at 0 100%, rgba(0, 255, 102, 0.08), transparent 32%),
		linear-gradient(145deg, rgba(19, 25, 21, 0.9), rgba(6, 9, 7, 0.84));
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 24px;
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.about-benefits__intro {
	padding: 48px 48px 50px;
}

.about-benefits__list {
	border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.about-benefits__list > div {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	align-items: center;
	gap: 20px;
	min-height: 107px;
	padding: 24px 36px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.065);
	transition: background 0.3s ease;
}

.about-benefits__list > div:last-child {
	border-bottom: 0;
}

.about-benefits__list > div:hover {
	background: rgba(0, 255, 102, 0.045);
}

.about-benefits__list span {
	color: var(--accent-green);
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.about-benefits__list p {
	margin: 0;
	color: rgba(255, 255, 255, 0.67);
	font-size: 0.91rem;
	line-height: 1.65;
}

.about-activities__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	overflow: hidden;
	background: linear-gradient(145deg, rgba(18, 24, 20, 0.88), rgba(6, 9, 7, 0.84));
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 24px;
	box-shadow: 0 24px 68px rgba(0, 0, 0, 0.3);
}

.about-activities__grid article {
	grid-column: span 2;
	min-width: 0;
	padding: 34px 34px 36px;
	border-right: 1px solid rgba(255, 255, 255, 0.065);
	border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.about-activities__grid article:nth-child(3),
.about-activities__grid article:last-child {
	border-right: 0;
}

.about-activities__grid article:nth-child(4),
.about-activities__grid article:nth-child(5) {
	grid-column: span 3;
	border-bottom: 0;
}

.about-activities__grid h3 {
	min-height: 46px;
	margin: 0 0 22px;
	color: #fff;
	font-size: 1.05rem;
	line-height: 1.4;
}

.about-activities__grid article > div {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.about-activities__grid span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 7px 11px;
	color: var(--accent-green);
	background: rgba(0, 255, 102, 0.055);
	border: 1px solid rgba(0, 255, 102, 0.13);
	border-radius: 9px;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.03em;
}

.about-activities__note {
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.43);
	font-size: 0.78rem;
}

.about-page-redesign .about-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 38px;
	padding: 38px 42px;
	text-align: left;
}

.about-page-redesign .about-cta::after {
	position: absolute;
	top: -90px;
	right: -65px;
	width: 240px;
	height: 240px;
	border: 1px solid rgba(0, 255, 102, 0.08);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.about-cta__copy,
.about-cta__actions {
	position: relative;
	z-index: 1;
}

.about-page-redesign .about-cta h2 {
	margin-bottom: 8px;
	font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.about-page-redesign .about-cta p {
	max-width: 590px;
	margin: 0;
}

.about-cta__actions {
	justify-content: flex-end;
	flex-wrap: nowrap;
}

.contact-page .contact-page__header {
	margin-bottom: 54px;
}

.contact-page .contact-page-overview,
.contact-page .contact-page-form {
	background: linear-gradient(135deg, rgba(17, 23, 19, 0.9), rgba(6, 9, 7, 0.84));
	-webkit-backdrop-filter: blur(16px) saturate(112%);
	backdrop-filter: blur(16px) saturate(112%);
}

.site-footer__github {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.site-footer__github svg {
	width: 14px;
	height: 14px;
	flex: 0 0 auto;
	transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__github:hover svg,
.site-footer__github:focus-visible svg {
	color: var(--accent-green);
	transform: translateY(-1px) scale(1.05);
}

@media (max-width: 1120px) and (min-width: 769px) {
	.reviews-grid {
		grid-auto-columns: calc((100% - 20px) / 2);
	}

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

	.site-header__inner {
		gap: 18px;
	}

	.main-navigation {
		gap: 16px;
	}

	.nav-menu {
		gap: 16px;
	}

	.nav-menu a {
		font-size: 0.81rem;
	}

	.header-cta {
		padding-left: 13px;
		font-size: 0.8rem;
	}
}

@media (max-width: 900px) {
	.reviews-form-feature {
		grid-template-columns: 1fr;
	}

	.reviews-form-feature__form {
		border-top: 1px solid rgba(255, 255, 255, 0.075);
		border-left: 0;
	}

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

	.about-preview,
	.about-overview {
		grid-template-columns: 1fr;
	}

	.contact-page-form {
		grid-template-columns: 1fr;
	}

	.contact-page-overview {
		grid-template-columns: 1fr;
	}

	.contact-page-overview__map,
	.contact-page-overview__map iframe {
		min-height: 430px;
	}

	.contact-page-overview__map {
		border-top: 1px solid rgba(255, 255, 255, 0.075);
		border-left: 0;
	}

	.contact-page-form__intro {
		padding-bottom: 42px;
	}

	.contact-page-form__card {
		border-top: 1px solid rgba(255, 255, 255, 0.075);
		border-left: 0;
	}

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

	.site-footer__brand {
		grid-column: 1 / -1;
	}

	.privacy-page__layout {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.privacy-page__aside {
		position: static;
	}

	.privacy-page__aside nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 4px 28px;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: var(--header-sticky-offset, 46px);
	}
}

@media (max-width: 768px) {
	:root {
		--header-nav-height: 66px;
		--header-contact-height: 36px;
		--header-height: calc(var(--header-nav-height) + var(--header-contact-height));
	}

	.section-transition {
		height: 64px;
		margin: -32px 0;
	}

	.section-transition--hero {
		height: 76px;
		margin: -38px 0;
	}

	.page-visual-header {
		margin-bottom: 38px;
		padding: 30px 24px;
		border-radius: 17px;
	}

	.page-visual-header__chips {
		gap: 7px;
		margin-top: 20px;
	}

	.page-visual-header__chips span {
		padding: 7px 9px;
		font-size: 0.7rem;
	}

	.reviews-form-feature {
		margin-top: 48px;
		border-radius: 17px;
	}

	.reviews-form-feature__intro,
	.reviews-page .comment-respond {
		padding: 30px 24px;
	}

	.archive-education-page .education-benefits,
	.about-page-main .about-overview__copy {
		padding: 24px;
		border-radius: 17px;
	}

	.site-header.is-scrolled .site-header__inner {
		min-height: var(--header-nav-height);
	}

	.container {
		width: min(100% - 32px, var(--content-width));
	}

	.site-header__contact-inner {
		justify-content: center;
	}

	.header-availability {
		display: none;
	}

	.header-contacts {
		width: 100%;
		justify-content: center;
	}

	.header-contacts a {
		min-height: 24px;
		padding-inline: 13px;
		font-size: 0.68rem;
	}

	.header-contact__full {
		display: none;
	}

	.header-contact__compact {
		display: inline;
	}

	.contact-page__header {
		margin-bottom: 34px;
	}

	.contact-page-form {
		margin-top: 48px;
		border-radius: 16px;
	}

	.contact-page-overview {
		border-radius: 16px;
	}

	.contact-page-overview__details {
		padding: 30px 24px;
	}

	.contact-page-overview .contact-details {
		grid-template-columns: 1fr;
	}

	.contact-page-overview .contact-details__item--wide {
		grid-column: auto;
	}

	.contact-page-overview__map,
	.contact-page-overview__map iframe {
		min-height: 360px;
	}

	.contact-page-form__intro,
	.contact-page-form__card {
		padding: 30px 24px;
	}

	.contact-page-form__card-heading {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 23px;
	}

	.contact-page-form__card-heading > span {
		text-align: left;
	}

	.contact-page-form__card .grinity-contact-form {
		grid-template-columns: 1fr;
	}

	.contact-page-form__card .grinity-contact-form__field {
		grid-column: 1;
	}

	.contact-page-form__quick-list {
		grid-template-columns: 1fr;
	}

	.contact-page-form__quick-list > div:last-child {
		grid-column: auto;
	}

	.site-footer {
		padding-top: 38px;
	}

	.site-footer__main {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-bottom: 30px;
	}

	.site-footer__brand {
		grid-column: auto;
	}

	.site-footer__legal {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.site-footer__credits {
		justify-content: flex-start;
	}

	.back-to-top {
		right: max(16px, env(safe-area-inset-right));
		bottom: max(16px, env(safe-area-inset-bottom));
		width: 44px;
		height: 44px;
		border-radius: 12px;
	}

	.privacy-page__header {
		padding: 32px 26px;
		border-radius: 16px;
	}

	.privacy-page__meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
	}

	.privacy-page__aside {
		padding: 21px;
	}

	.privacy-page__aside nav {
		grid-template-columns: 1fr;
	}

	.privacy-page__content section {
		padding-left: 36px;
	}

	.privacy-page__operator {
		grid-template-columns: 1fr;
	}

	.privacy-page__operator-wide {
		grid-column: auto;
	}

	.site-branding {
		padding-right: 0;
	}

	.site-branding::after {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.main-navigation {
		position: absolute;
		top: 100%;
		left: 50%;
		display: flex;
		width: min(100vw - 24px, 500px);
		max-height: calc(100svh - var(--header-height) - var(--wp-admin--admin-bar--height, 0px));
		margin: 0;
		overflow-y: auto;
		padding: 10px 18px 18px;
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		background: linear-gradient(165deg, rgba(16, 20, 17, 0.99), rgba(7, 9, 8, 0.99));
		border: 1px solid rgba(255, 255, 255, 0.075);
		border-top: 0;
		border-radius: 0 0 18px 18px;
		box-shadow: 0 24px 45px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.04);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translate(-50%, -10px);
		transform-origin: top center;
		transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
	}

	.main-navigation.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translate(-50%, 0);
	}

	.nav-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.nav-menu > li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.065);
	}

	.nav-menu a {
		min-height: 52px;
		padding: 12px 4px;
		gap: 12px;
		font-size: 0.98rem;
		font-weight: 650;
	}

	.nav-menu a::before {
		content: "";
		display: block;
		width: 6px;
		height: 6px;
		flex: 0 0 auto;
		background: rgba(255, 255, 255, 0.18);
		border: 0;
		border-radius: 50%;
		transition: background 0.2s ease, box-shadow 0.2s ease;
	}

	.nav-menu a::after {
		content: "→";
		position: static;
		width: auto;
		height: auto;
		margin-left: auto;
		color: #68716b;
		background: none;
		border-radius: 0;
		box-shadow: none;
		font-size: 1rem;
		transform: none;
		opacity: 0.78;
		transition: color 0.2s ease, transform 0.2s ease;
	}

	.nav-menu .current-menu-item:not(.menu-item-type-custom) > a::before,
	.nav-menu .current_page_item:not(.menu-item-type-custom) > a::before,
	.nav-menu .is-page-active > a::before,
	.nav-menu .is-section-active > a::before {
		background: var(--accent-green);
		box-shadow: 0 0 9px rgba(0, 255, 102, 0.55);
	}

	.nav-menu .current-menu-item:not(.menu-item-type-custom) > a::after,
	.nav-menu .current_page_item:not(.menu-item-type-custom) > a::after,
	.nav-menu .is-page-active > a::after,
	.nav-menu .is-section-active > a::after,
	.nav-menu a:hover::after,
	.nav-menu a:focus-visible::after {
		color: var(--accent-green);
		transform: translateX(3px);
	}

	.header-cta {
		width: 100%;
		min-height: 50px;
		padding-left: 18px;
		justify-content: space-between;
		border-radius: 10px;
		font-size: 0.92rem;
	}

	.site-branding .custom-logo,
	.site-logo-img {
		max-height: 40px;
	}

	.standard-page,
	.archive-page,
	.single-entry-page,
	.content-listing,
	.about-page-main {
		padding: 48px 0 64px;
	}

	.landing-section {
		padding: 56px 0;
	}

	.partners-section {
		padding: 52px 0 60px;
	}

	.partner-logo-card {
		flex-basis: 180px;
		height: 98px;
		padding: 13px 16px;
	}

	.hero-section {
		min-height: calc(100svh - var(--header-height));
		padding: 56px 0;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: stretch;
		width: min(100%, 420px);
		margin-inline: 0;
	}

	.hero-content {
		text-align: left;
	}

	.hero-bg-slide {
		background-position: 62% center;
	}

	.hero-btn {
		width: 100%;
		text-align: center;
	}

	.about-preview,
	.about-overview,
	.contacts-grid,
	.benefits-grid,
	.principles-grid,
	.cooperation-grid,
	.archive-grid {
		grid-template-columns: 1fr;
	}

	.archive-vacancy-page .archive-vacancy-carousel {
		display: flex;
		gap: 15px;
		margin-right: -20px;
		margin-left: -20px;
		overflow-x: auto;
		padding: 2px 20px 20px;
		scroll-padding-inline: 20px;
		scroll-snap-type: x mandatory;
		scrollbar-color: var(--accent-green) #121212;
		scrollbar-width: thin;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-x: contain;
	}

	.archive-vacancy-page .archive-vacancy-carousel::-webkit-scrollbar {
		height: 7px;
	}

	.archive-vacancy-page .archive-vacancy-carousel::-webkit-scrollbar-track {
		background: #121212;
		border-radius: 999px;
	}

	.archive-vacancy-page .archive-vacancy-carousel::-webkit-scrollbar-thumb {
		background: var(--accent-green);
		border-radius: 999px;
	}

	.archive-vacancy-page .archive-vacancy-carousel .listing-card {
		width: min(85vw, 360px);
		max-width: min(85vw, 360px);
		flex: 0 0 min(85vw, 360px);
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.reviews-grid {
		grid-auto-columns: 100%;
	}

	.review-card {
		padding: 24px 22px 21px;
	}

	.review-card__author::after {
		display: none;
	}

	.cards-carousel {
		gap: 15px;
	}

	.cards-carousel .listing-card {
		flex-basis: min(85vw, 340px);
	}

	.listing-card,
	.benefit-card,
	.principles-grid .surface-card,
	.contact-form-card,
	.contact-form-section,
	.single-entry-content,
	.content-entry,
	.content-entry--single,
	.stats-card,
	.about-admin-content {
		padding: 24px;
	}

	.listing-card--with-image {
		padding: 0;
	}

	.listing-card__body {
		padding: 24px;
	}

	#education .listing-card {
		padding: 24px;
	}

	.section-more {
		text-align: left;
	}

	.stats-grid {
		gap: 22px 16px;
	}

	.comment-form {
		grid-template-columns: 1fr;
	}

	.comment-respond,
	.cooperation-card,
	.cooperation-difference {
		padding: 24px;
	}

	.cooperation-card + .cooperation-card {
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		border-left: 0;
	}

	.cooperation-difference {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.cooperation-cta {
		align-items: flex-start;
		flex-direction: column;
		gap: 24px;
	}
}

@media (max-width: 980px) {
	.single-detail-hero__layout,
	.single-detail-layout {
		grid-template-columns: 1fr;
	}

	.single-detail-hero__image,
	.single-detail-hero__image img,
	.single-detail-hero__symbol {
		min-height: 300px;
	}

	.single-detail-sidebar {
		position: static;
		grid-template-columns: minmax(0, 1fr) minmax(230px, 0.55fr);
	}

	.single-detail-navigation {
		align-content: start;
	}
}

@media (max-width: 768px) {
	.single-detail-page {
		padding-top: 34px;
	}

	.single-detail-page .single-detail-hero {
		margin-bottom: 20px;
		padding: 24px;
	}

	.single-detail-hero__layout {
		gap: 22px;
	}

	.single-detail-hero__content {
		padding: 4px 0;
	}

	.single-detail-hero .page-title {
		font-size: clamp(2rem, 11vw, 2.75rem);
	}

	.single-detail-hero__image,
	.single-detail-hero__image img,
	.single-detail-hero__symbol {
		min-height: 220px;
	}

	.single-detail-content {
		padding: 30px 24px;
		border-radius: 17px;
	}

	.single-detail-content::before {
		left: 24px;
	}

	.single-detail-content li {
		padding-right: 12px;
		padding-left: 38px;
	}

	.single-detail-content li::before {
		left: 15px;
	}

	.single-detail-sidebar {
		grid-template-columns: 1fr;
	}

	.single-detail-cta {
		padding: 26px 24px;
		border-radius: 17px;
	}

	.single-detail-content .wp-block-buttons,
	.single-detail-content .wp-block-button,
	.single-detail-content .wp-block-button__link {
		width: 100%;
	}

	.single-detail-content .wp-block-button__link {
		text-align: center;
	}
}

@media (max-width: 768px) {
	.cookie-consent {
		right: 12px;
		bottom: 12px;
		left: 12px;
		grid-template-columns: auto minmax(0, 1fr);
		gap: 12px 14px;
		width: calc(100% - 24px);
		padding: 17px;
		border-radius: 16px;
	}

	.cookie-consent__icon {
		align-self: start;
		width: 42px;
		height: 42px;
		border-radius: 12px;
	}

	.cookie-consent__icon svg {
		width: 26px;
		height: 26px;
	}

	.cookie-consent__actions {
		grid-column: 1 / -1;
		grid-template-columns: 1fr 1fr;
		min-width: 0;
	}

	.cookie-embed__placeholder {
		min-height: 360px;
		padding: 30px 24px;
	}
}

@media (max-width: 430px) {
	.cookie-consent__actions {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 980px) {
	.about-hero__grid,
	.about-page-redesign .about-overview,
	.about-page-redesign .about-mission,
	.about-page-redesign .about-benefits,
	.about-page-redesign .about-cta {
		grid-template-columns: 1fr;
	}

	.about-hero__visual,
	.about-hero__visual img {
		min-height: 340px;
	}

	.about-page-redesign .stats-card {
		border-top: 1px solid rgba(255, 255, 255, 0.075);
		border-left: 0;
	}

	.about-timeline {
		grid-template-columns: 1fr;
	}

	.about-timeline::before {
		display: none;
	}

	.about-timeline article {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
		gap: 24px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.065);
	}

	.about-timeline article:last-child {
		border-bottom: 0;
	}

	.about-timeline__marker {
		margin-bottom: 0;
	}

	.about-accreditation {
		border-top: 1px solid rgba(0, 255, 102, 0.14);
		border-left: 0;
	}

	.about-benefits__list {
		border-top: 1px solid rgba(255, 255, 255, 0.07);
		border-left: 0;
	}

	.about-page-redesign .principles-grid {
		grid-template-columns: 1fr;
	}

	.about-principle {
		min-height: auto;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	}

	.about-principle:last-child {
		border-bottom: 0;
	}

	.about-page-redesign .about-cta {
		gap: 26px;
	}

	.about-cta__actions {
		justify-content: flex-start;
	}

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

	.about-activities__grid article,
	.about-activities__grid article:nth-child(4),
	.about-activities__grid article:nth-child(5) {
		grid-column: auto;
		border-right: 1px solid rgba(255, 255, 255, 0.065);
		border-bottom: 1px solid rgba(255, 255, 255, 0.065);
	}

	.about-activities__grid article:nth-child(2n),
	.about-activities__grid article:last-child {
		border-right: 0;
	}

	.about-activities__grid article:last-child {
		grid-column: 1 / -1;
		border-bottom: 0;
	}
}

@media (max-width: 768px) {
	.about-page-redesign .about-hero.page-visual-header {
		padding: 22px;
	}

	.about-hero__grid {
		gap: 22px;
	}

	.about-hero__content {
		padding: 8px 2px 4px;
	}

	.about-page-redesign .about-hero .page-title {
		font-size: clamp(2.2rem, 11vw, 3rem);
	}

	.about-page-redesign .about-hero .page-title span {
		font-size: clamp(1.75rem, 8.7vw, 2.35rem);
		white-space: normal;
	}

	.about-hero__visual,
	.about-hero__visual img {
		min-height: 280px;
	}

	.about-hero__visual figcaption {
		right: 13px;
		bottom: 13px;
		left: 13px;
		padding: 15px 16px;
	}

	.about-page-redesign .about-overview {
		margin-bottom: 60px;
		border-radius: 18px;
	}

	.about-page-redesign .about-history,
	.about-page-redesign .about-mission,
	.about-page-redesign .about-services,
	.about-page-redesign .about-principles,
	.about-page-redesign .about-benefits,
	.about-page-redesign .about-activities {
		margin-bottom: 60px;
	}

	.about-page-redesign .about-overview__copy,
	.about-page-redesign .stats-card {
		padding: 30px 24px;
	}

	.about-overview__body h2,
	.about-overview__body h3 {
		font-size: 1.75rem;
	}

	.about-page-redesign .stats-grid > div {
		min-height: 96px;
		padding: 15px;
	}

	.about-page-redesign .stats-grid__primary strong {
		font-size: 2.75rem;
	}

	.about-section-heading {
		margin-bottom: 25px;
		text-align: left;
	}

	.about-section-heading .about-kicker {
		justify-content: flex-start;
	}

	.about-timeline,
	.about-page-redesign .about-mission,
	.about-services__list,
	.about-page-redesign .about-benefits,
	.about-activities__grid {
		border-radius: 18px;
	}

	.about-timeline article {
		gap: 18px;
		padding: 28px 23px 30px;
	}

	.about-timeline__marker {
		width: 39px;
		height: 39px;
		border-width: 6px;
	}

	.about-mission__copy,
	.about-benefits__intro {
		padding: 32px 24px;
	}

	.about-accreditation {
		padding: 32px 24px;
	}

	.about-services__list {
		grid-template-columns: 1fr;
	}

	.about-services__list article {
		grid-template-columns: 32px minmax(0, 1fr);
		gap: 12px;
		min-height: 0;
		padding: 28px 23px 30px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.065);
	}

	.about-services__list article:nth-last-child(-n + 2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.065);
	}

	.about-services__list article:last-child {
		border-bottom: 0;
	}

	.about-page-redesign .principles-grid {
		border-radius: 18px;
	}

	.about-principle {
		padding: 27px 24px 30px;
	}

	.about-principle__top {
		margin-bottom: 28px;
	}

	.about-benefits__list > div {
		grid-template-columns: 34px minmax(0, 1fr);
		gap: 12px;
		min-height: 0;
		padding: 24px;
	}

	.about-activities__grid {
		grid-template-columns: 1fr;
	}

	.about-activities__grid article,
	.about-activities__grid article:nth-child(4),
	.about-activities__grid article:nth-child(5),
	.about-activities__grid article:last-child {
		grid-column: auto;
		padding: 28px 24px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.065);
	}

	.about-activities__grid article:last-child {
		border-bottom: 0;
	}

	.about-activities__grid h3 {
		min-height: 0;
	}

	.about-page-redesign .about-cta {
		padding: 30px 24px;
		border-radius: 18px;
	}

	.about-cta__actions {
		width: 100%;
	}
}

@media (max-width: 520px) {
	.about-page-redesign .stats-grid {
		grid-template-columns: 1fr;
	}

	.about-page-redesign .stats-grid .stats-grid__primary {
		grid-column: auto;
	}
}

/* Educational disclosure keeps the catalogue's existing dark/green language. */
.edu-disclosure .page-title { max-width: 100%; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.edu-disclosure .page-visual-header { margin-bottom: 28px; }
.edu-disclosure__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; margin-top: 18px; }
.edu-disclosure__actions:empty { display: none; }
.edu-disclosure__actions a { color: #a3f6c5; font-size: .9rem; text-underline-offset: 5px; }
.edu-disclosure__updated { color: #b0bcb5; font-size: .8rem; margin-top: 18px; }
.edu-disclosure__notice { padding: 20px 24px; margin-bottom: 28px; border: 1px solid #8f7a49; border-radius: 16px; background: #292619; color: #f4e5bc; line-height: 1.7; }
.edu-disclosure__nav { margin: 0 0 30px; padding: 24px; border-radius: 18px; background: #17241d; border: 1px solid #345342; }
.edu-disclosure__nav ol { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px 34px; padding-left: 24px; margin: 0; }
.edu-disclosure__nav a { display: inline-block; padding: 8px 0; color: #dcece2; line-height: 1.5; text-underline-offset: 4px; }
.edu-disclosure__sections { display: grid; gap: 24px; }
.edu-disclosure__section { min-width: 0; padding: clamp(22px,4vw,42px); scroll-margin-top: 155px; overflow-wrap: anywhere; }
.edu-disclosure__section h2 { color: #eff9f3; font-size: clamp(1.2rem,2vw,1.65rem); line-height: 1.4; margin: 0 0 22px; }
.edu-disclosure__section p, .edu-disclosure__section li, .edu-disclosure__section dd { color: #c9d5ce; line-height: 1.75; }
.edu-disclosure__section a { color: #a3f6c5; text-underline-offset: 4px; }
.edu-disclosure__section img { max-width: 100%; height: auto; }
.edu-disclosure__section table { display: block; max-width: 100%; overflow-x: auto; border-collapse: collapse; }
.edu-disclosure__section th, .edu-disclosure__section td { padding: 10px; border: 1px solid #50675a; }
.edu-disclosure__facts { display: grid; grid-template-columns: minmax(150px,1fr) minmax(0,2fr); gap: 14px 24px; padding: 24px 0; margin: 8px 0; border-block: 1px solid #3b4c42; }
.edu-disclosure__facts dt { color: #a4b8aa; }
.edu-disclosure__facts dd { margin: 0; }
.edu-disclosure__files { padding-left: 20px; }
.edu-disclosure__files li { padding: 6px 0; }
.edu-disclosure__programs { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-top: 24px; }
.edu-disclosure__programs article { padding: 24px; border: 1px solid #345342; border-radius: 16px; background: #15231a; }
.edu-disclosure__programs h3 { font-size: 1.1rem; line-height: 1.5; margin: 0 0 14px; }
.edu-disclosure__pending { padding-top: 14px; border-top: 1px dashed #685d3e; color: #e2cb8e !important; font-size: .87rem; }
.edu-disclosure__admin { padding: 16px; background: #14231a; border-left: 3px solid #5fbc84; font-size: .85rem; }
.edu-disclosure a:focus-visible, .header-education-link:focus-visible { outline: 3px solid #8ff6b7; outline-offset: 4px; }
.header-education-link { color: #a7c4b2; font-size: .72rem; line-height: 1.4; text-underline-offset: 3px; }
.header-education-link:hover { color: #fff; }
@media (min-width: 1121px) {
	.main-navigation:has(.header-education-link) { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 0 25px; }
	.main-navigation:has(.header-education-link) .nav-menu { grid-column: 1; grid-row: 1; }
	.main-navigation:has(.header-education-link) .header-cta { grid-column: 2; grid-row: 1 / 3; }
	.header-education-link { grid-column: 1; grid-row: 2; justify-self: end; }
}
@media (max-width: 1120px) {
	.header-education-link { display: block; margin: 10px 0; padding: 12px 4px; font-size: .85rem; }
}
@media (max-width: 640px) {
	.edu-disclosure__nav ol, .edu-disclosure__facts, .edu-disclosure__programs { grid-template-columns: minmax(0,1fr); }
	.edu-disclosure__facts { gap: 6px; }
	.edu-disclosure__facts dd { margin-bottom: 14px; }
	.edu-disclosure__nav { padding: 18px; }
	.edu-disclosure__nav ol { padding-left: 22px; }
	.edu-disclosure__actions { flex-direction: column; align-items: flex-start; }
	.edu-disclosure__section { scroll-margin-top: 135px; }
}
@media print {
	body:has(.edu-disclosure) .site-header, body:has(.edu-disclosure) .site-footer,
	body:has(.edu-disclosure) .cookie-consent, body:has(.edu-disclosure) .back-to-top,
	body:has(.edu-disclosure) #wpadminbar, .edu-disclosure__admin, .edu-disclosure__actions { display: none !important; }
	body:has(.edu-disclosure), .edu-disclosure, .edu-disclosure .surface-card, .edu-disclosure .page-visual-header { background: #fff !important; color: #111 !important; box-shadow: none !important; }
	.edu-disclosure::before, .edu-disclosure::after, .edu-disclosure .page-visual-header::before, .edu-disclosure .page-visual-header::after { display: none !important; }
	.edu-disclosure * { color: #111 !important; text-shadow: none !important; }
	.edu-disclosure__section { padding: 15px 0; border: 0; }
}

/* About page: educational licence and source documents. */
.about-license {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 82px;
	overflow: hidden;
	background: linear-gradient(145deg, #141c17, #090e0b);
	border: 1px solid rgba(255, 255, 255, 0.095);
	border-radius: 24px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.about-license__intro,
.about-license__details {
	min-width: 0;
	padding: clamp(28px, 3.6vw, 48px);
}

.about-license__intro {
	background: radial-gradient(ellipse at top left, rgba(0, 255, 102, 0.09), transparent 70%);
}

.about-license__details {
	border-left: 1px solid rgba(0, 255, 102, 0.13);
	background: rgba(0, 0, 0, 0.15);
}

.about-license__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	margin-bottom: 24px;
	color: var(--accent-green);
	background: rgba(0, 255, 102, 0.07);
	border: 1px solid rgba(0, 255, 102, 0.18);
	border-radius: 17px;
}

.about-license__icon svg {
	width: 38px;
	height: 38px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.about-license h2 {
	margin: 0 0 18px;
	color: #fff;
	font-size: clamp(1.7rem, 2.6vw, 2.25rem);
	line-height: 1.2;
	letter-spacing: -0.035em;
}

.about-license__intro > p {
	margin: 0 0 22px;
	color: #b7c2bb;
	font-size: 0.93rem;
	line-height: 1.75;
}

.about-license__areas {
	display: grid;
	gap: 12px;
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}

.about-license__areas li {
	display: flex;
	align-items: baseline;
	gap: 12px;
	color: #e0e9e3;
	font-size: 0.9rem;
}

.about-license__areas li::before {
	flex: 0 0 6px;
	width: 6px;
	height: 6px;
	background: var(--accent-green);
	border-radius: 50%;
	content: "";
}

.about-license__programs {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-height: 44px;
	color: var(--accent-green);
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
}

.about-license h3 {
	margin: 0 0 16px;
	color: #edf4ef;
	font-size: 1.15rem;
	line-height: 1.45;
}

.about-license__number {
	margin: 0 0 26px;
	color: var(--accent-green);
	font-size: clamp(1.12rem, 1.8vw, 1.45rem);
	font-weight: 750;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.about-license__facts {
	display: grid;
	gap: 16px;
	margin: 0 0 26px;
}

.about-license__facts dt {
	margin-bottom: 3px;
	color: #95a59b;
	font-size: 0.76rem;
}

.about-license__facts dd {
	margin: 0;
	color: #d8e2dc;
	font-size: 0.9rem;
}

.about-license__documents {
	display: grid;
	gap: 10px;
}

.about-license__documents a {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	min-height: 68px;
	padding: 13px 15px;
	color: #ecf2ee;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	font-size: 0.84rem;
	font-weight: 650;
	text-decoration: none;
}

.about-license__documents a:hover {
	background: rgba(0, 255, 102, 0.06);
	border-color: rgba(0, 255, 102, 0.35);
}

.about-license__filetype {
	color: var(--accent-green);
	font-size: 0.65rem;
	letter-spacing: 0.04em;
}

.about-license__documents small {
	display: block;
	margin-top: 4px;
	color: #a4b2a9;
	font-size: 0.7rem;
	font-weight: 400;
}

.about-license__programs:hover {
	text-decoration: underline;
	text-underline-offset: 5px;
}

.about-license a:focus-visible {
	outline: 2px solid var(--accent-green);
	outline-offset: 4px;
}

.about-license__note {
	margin: 16px 0 0;
	color: #95a59b;
	font-size: 0.72rem;
	line-height: 1.6;
}

@media (max-width: 980px) {
	.about-license {
		grid-template-columns: 1fr;
	}
	.about-license__details {
		border-top: 1px solid rgba(0, 255, 102, 0.13);
		border-left: 0;
	}
}

@media (max-width: 768px) {
	.about-license {
		margin-bottom: 60px;
		border-radius: 18px;
	}
	.about-license__intro,
	.about-license__details {
		padding: 30px 24px;
	}
}
