:root {
	--primary: #4bce81;
	--primary-hover: #096d34;
	--primary-soft: linear-gradient(70deg, #399895, #0da53b);
	--grad-logo: linear-gradient(120deg, #9bed00, #4bcd81 55%, #368e99);
	--blackmagic: linear-gradient(130deg, #686868, #222222);
	--grey: linear-gradient(130deg, #b4b4b4, #eeeeee);	
	--dark: #0e1720;
	--dark-2: #162436;
	--text: #242424;
	--text-light: #4c535c;
	--bg-light: #eef3f0;
	--bg-card: #f4f8f5;
	--white: #ffffff;
	--border: #dbe4de;
	--radius: 14px;
	--radius-lg: 24px;
	--shadow: 0 10px 30px rgba(14, 23, 32, .08);
	--shadow-lg: 0 20px 60px rgba(14, 23, 32, .14);
	--font: 'Red Hat Display', system-ui, sans-serif;
	--header-h: 92px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--font);
	font-size: 17px;
	color: var(--text);
	background: var(--white);
	line-height: 1.65;
	overflow-x: clip;
}

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

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

h1, h2, h3, h4, h5, h6 { font-family: var(--font); color: var(--dark); line-height: 1.2; }

strong{ font-weight: 600; }

.icon { vertical-align: middle; flex: none; }

.container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }

.visually-hidden {
	position: absolute !important; width: 1px !important; height: 1px !important;
	margin: -1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important;
	white-space: nowrap !important; border: 0 !important; padding: 0 !important;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 8px;
	font-family: var(--font);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.2;
	cursor: pointer;
	border: 0px;
	transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

header .btn, header .lang-current a{
	color: #ffffff;
}

.btn-primary,
.btn:not([class*="btn-"]) {
	background: var(--primary-soft);
	color: #ffffff;
}

.btn-primary:hover,
.btn:not([class*="btn-"]):hover {
	background: var(--primary-soft);
	color: var(--white);
}

.btn-outline {
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, .6);
	box-shadow: inset 0 20px 10px 9px rgb(61 61 61 / 73%), inset -6px -11px 13px 12px rgb(61 61 61 / 73%);
}
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 1000;
	padding: 26px 0;
	background: transparent;
	transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}

.site-header.scrolled,
.site-header.menu-open {
	background: #ffffffde;
	backdrop-filter: blur(5px);
	padding: 12px 0;
	box-shadow: 0 2px 14px rgba(0, 0, 0, .07);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.site-logo { display: flex; align-items: center; z-index: 1001; position: relative; }

.site-logo img { display: block; height: 44px; width: auto; }

.site-logo .logo-light { display: block; }
.site-logo .logo-dark { display: none; }

.site-header.scrolled .logo-light,
.site-header.menu-open .logo-light { display: none; }

.site-header.scrolled .logo-dark,
.site-header.menu-open .logo-dark { display: block; }

.nav-wrapper { display: flex; align-items: center; gap: 34px; }

.site-nav > ul { display: flex; gap: 8px; list-style: none; }

.site-nav li { position: relative; }

.site-nav a {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 9px 14px;
	font-weight: 600;
	font-size: 16.5px;
	border-radius: 6px;
	color: var(--white);
	position: relative;
	transition: color .25s ease;
}

.site-header.scrolled .site-nav > ul > li > a,
.site-header.menu-open .site-nav > ul > li > a { color: var(--dark); }

.site-nav > ul > li > a::after {
	content: '';
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 2px;
	height: 2px;
	background: var(--primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s ease;
}

.site-nav > ul > li > a:hover::after,
.site-nav > ul > li > a.active::after { transform: scaleX(1); }

.site-nav a:hover, .site-nav a.active { color: var(--primary) !important; }

header.scrolled .site-nav a:hover, header.scrolled .site-nav a.active {
    color: #09761e !important;
}
header.scrolled .site-nav > ul > li > a::after {
    background: #0b9727 !important;
}
.site-nav .arrow { transition: transform .3s ease; opacity: .7; }

.site-nav li:hover > a .arrow { transform: rotate(180deg); }

.submenu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 270px;
	background: var(--white);
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
	padding: 10px;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px);
	transition: opacity .25s ease, transform .25s ease, visibility .25s;
	z-index: 1000;
}

.site-nav li:hover > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }

.submenu-list { list-style: none; }

.submenu-list li { width: 100%; }

.submenu-list a {
	color: var(--text) !important;
	font-weight: 600;
	padding: 11px 16px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.submenu-list a:hover { background: var(--primary-soft); color: var(--dark) !important; }

.submenu-ico { display: inline-flex; color: var(--primary-hover); flex: none; }

.submenu-go { display: inline-flex; margin-left: auto; opacity: .45; flex: none; }

.site-nav li.has-mega { position: static; }

.submenu--mega {
	left: 50%;
	transform: translate(-50%, 14px);
	width: min(1140px, calc(100vw - 40px));
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 28px;
	padding: 18px;
}

.site-nav li:hover > .submenu--mega { transform: translate(-50%, 0); }

.submenu--mega::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: 28px;
}

.submenu--mega .submenu-list {
	align-self: start;
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
	max-height: calc(100vh - var(--header-h) - 76px);
	overflow-y: auto;
}

.submenu--mega .submenu-list li + li { border-top: 1px solid var(--border); }

.submenu--mega .submenu-list a {
	border-radius: 0;
	padding: 11px 16px;
	font-size: 15.5px;
}

.submenu--mega .submenu-list a:hover,
.submenu--mega .submenu-list li.is-active a {
	background: var(--blackmagic);
	color: #ffffff !important;
}

.submenu--mega .submenu-list a:hover .submenu-ico,
.submenu--mega .submenu-list a:hover .submenu-go,
.submenu--mega .submenu-list li.is-active a .submenu-ico,
.submenu--mega .submenu-list li.is-active a .submenu-go {
	color: #ffffff;
	opacity: 1;
}

.submenu-preview {
	display: flex;
	gap: 28px;
	min-width: 0;
	opacity: 0;
	transition: opacity .25s ease;
}

.submenu-preview.is-ready { opacity: 1; }

.submenu-preview-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	padding: 10px 0 4px;
}

.submenu-preview-title {
	color: var(--primary-hover);
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 12px;
}

.submenu-preview-lead {
	color: #000000;
	font-size: 15.5px;
	line-height: 1.6;
	margin-bottom: 22px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
}

.submenu-preview-lead p { margin-bottom: 10px; }
.submenu-preview-lead p:last-child { margin-bottom: 0; }

.submenu-cta {
	margin-top: auto;
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 28px;
	border-radius: 10px;
	background: var(--primary-soft);
	color: #ffffff !important;
	font-weight: 600;
	font-size: 15px;
	transition: background .25s ease, color .25s ease;
}

a.submenu-cta:hover { color: #ffffff !important; }

.submenu-preview-media {
	flex: none;
	width: 300px;
	border-radius: 14px;
	overflow: hidden;
	background: var(--bg-light);
	display: none;
}

.submenu-preview-media.has-img { display: block; }

.submenu-preview-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.08);
}

.submenu-preview-media img.is-zooming { animation: submenu-media-zoom .7s ease forwards; }

@keyframes submenu-media-zoom {
	from { transform: scale(1.08); }
	to { transform: scale(1.18); }
}

html.no-anim .submenu-preview-media img { animation: none !important; }


.lang-switcher {     
	display: flex;
    gap: 4px;
    list-style: none;
    margin-left: 8px;
    height: 100%;
    align-items: center;
 }

.lang-switcher a {
	padding: 5px 8px 4px 8px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .04em;
	border-radius: 6px;
	color: var(--white);
	opacity: .75;
}

.site-header.scrolled .lang-switcher a,
.site-header.menu-open .lang-switcher a { color: var(--dark); }

.site-header.scrolled .lang-switcher .lang-current a,
.site-header.menu-open .lang-switcher .lang-current a { color: #ffffff; }

.lang-switcher a:hover { opacity: 1; color: var(--primary); }

.lang-switcher .lang-current a {
	opacity: 1;
	background: var(--primary-soft);
	color: #ffffff;
}

ul.lang-switcher li.lang-current a:hover {
	color: #f9fcfb !important;
}


.hamburger {
	display: none;
	background: none;
	border: 0;
	cursor: pointer;
	color: var(--white);
	z-index: 9001;
	padding: 6px;
}

.site-header.scrolled .hamburger,
.site-header.menu-open .hamburger { color: var(--dark); }

.hamburger .icon-close { display: none; }

.menu-open .hamburger .icon-close { display: block; }
.menu-open .hamburger .icon-bars { display: none; }

.hero {
	position: relative;
	min-height: min(86vh, 920px);
	display: flex;
	align-items: center;
	color: var(--white);
	background-color: var(--dark-2);
	background-size: cover;
	background-position: center;
	padding: calc(var(--header-h) + 40px) 0 110px;
}

@media (min-width: 1101px) {
	.hero:not(.hero--page) { background-attachment: fixed; }
}

.hero:not(.hero--page) {
	position: sticky;
	top: 0;
	z-index: 0;
}

.below-hero {
	position: relative;
	z-index: 1;
	background: var(--white);
	display: flow-root;
}

.home .site-footer { position: relative; z-index: 1; }

.hero::before, .page-view .hero::before{
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1; 
	background: linear-gradient(179deg, rgba(8, 14, 20, .82) 0%, rgb(8 14 20 / 0%) 55%, rgba(8, 14, 20, 0) 100%);
}
.page-view .hero::before{
	background: linear-gradient(179deg, rgb(8 14 20 / 78%) 0%, rgba(8, 14, 20, 0.829) 55%, rgb(0 0 0) 100%);
}
.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.hero .container { position: relative; z-index: 2; width: 100%; }

.hero-content { max-width: 720px; }
.page-view .hero{ min-height: 70px; }
.page-view .hero-content { text-align: center; width: 100%; max-width: 100%;}

.hero h1 {
	color: var(--white);
	font-size: clamp(25px, 4.2vw, 51px);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .01em;
	margin-bottom: 22px;
}

.hero h1 em { font-style: normal; color: var(--primary); }

.hero .hero-lead { font-size: clamp(17px, 2vw, 22px); opacity: .92; margin-bottom: 34px; max-width: 640px; }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero--page { min-height: min(46vh, 520px); padding: calc(var(--header-h) + 50px) 0 50px; }

.hero--page h1 { font-size: clamp(30px, 4vw, 46px); text-transform: none; }

.hero .hero-slogan {
	color: var(--white);
	font-size: clamp(19px, 2.4vw, 28px);
	font-weight: 600;
	line-height: 1.2;
	max-width: 640px;
	margin-top: 2px;
}
.page-view .hero .hero-slogan { margin-inline: auto; }
.hero .grad {
	background: var(--grad-logo);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}


.benefits-wrapper { position: relative; margin-top: -64px; z-index: 10; }

.benefits-grid {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	padding: 30px 40px;
}

.benefit-item { display: flex; align-items: center; gap: 16px; }

.benefit-icon {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: var(--primary-soft);
    color: #fcfcfc;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}

.benefit-text h3 { font-size: 20px; font-weight: 600; letter-spacing: .02em; margin-bottom: 2px; }

.benefit-text p { font-size: 15px; color: #0e5b2e; }

.section { padding: 84px 0; }

.section-head { max-width: 780px; margin: 0 auto 52px; text-align: center; }

.section-head .kicker {
	color: var(--primary-hover);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: 13px;
	display: block;
	margin-bottom: 10px;
}

.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 600; margin-bottom: 16px; }

.section-head .intro { color: var(--text-light); font-size: 17px; }

.section-head .intro p { margin-bottom: 10px; }

.offer-wide { width: 100%; max-width: 1300px; margin: 0 auto; padding-inline: 16px; }
@media (min-width: 1600px) { .offer-wide { max-width: 1500px; } }

.px-offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: left; }

.px-ocard {
	position: relative; display: flex;
	background: var(--white);
	border-radius: 18px;
	box-shadow: 0 16px 40px rgba(14, 23, 32, .09);
	overflow: hidden;
	min-height: 310px;
	isolation: isolate;
}
.px-ocard:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }
.px-ocard:hover { box-shadow: 0 26px 60px rgba(14, 23, 32, .16); }

html.js .px-ocard.reveal { transition: opacity .8s cubic-bezier(.22, .61, .36, 1), transform .8s cubic-bezier(.22, .61, .36, 1), box-shadow .35s ease; }


.px-ocard-media {
	position: absolute; top: 0; right: 0; bottom: 0;
	width: 54%; z-index: 1; overflow: hidden;
}
.px-ocard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.px-ocard:hover .px-ocard-media img { transform: scale(1.06); }


.px-ocard-cut {
	position: absolute; inset: 0; z-index: 2;
	background: var(--white);
	clip-path: url(#pxCut);
	transition: transform .4s ease;
}
.px-ocard:hover .px-ocard-cut { transform: translateX(-20px); }
.px-ocard:hover .px-ocard-seam { transform: translateX(-20px); }

.px-ocard-seam {
	position: absolute; inset: 0;
	width: 100%; height: 100%; z-index: 3; pointer-events: none;
	overflow: visible;
	transition: transform .4s ease;
}
.px-ocard-seam path { stroke: url(#pxLineGrad); }

.px-ocard-body {
    position: relative;
    z-index: 4;
    width: 54%;
    padding: 22px 18px 18px 28px;
    display: flex;
    flex-direction: column;
}
.px-num { color: #2f9e50; font-weight: 600; font-size: 26px; line-height: 1; margin-bottom: 4px; }
.px-ocard-body h3 { color: var(--dark); font-size: 21px; font-weight: 700; line-height: 1.18; margin-bottom: 4px; }
.px-ocard-body p { color: #5b6470; font-size: 15px; line-height: 1.6; margin-bottom: 12px; }

.px-more { margin-top: auto; display: flex; align-items: center; gap: 16px; }
.px-more-ico {
	flex: none; width: 54px; height: 54px; border-radius: 50%;
	background: #ffffff; color: #11420e;
	display: flex; align-items: center; justify-content: center;
	box-shadow: -2px 4px 16px 5px rgb(51 163 90 / 21%);
}
.px-more-link { display: inline-flex; align-items: center; gap: 8px; color: #2f9e50; font-weight: 600; font-size: 15px; }
.px-more-link svg { transition: transform .3s ease; }
.px-ocard:hover .px-more-link svg { transform: translateX(4px); }
.px-ico { display: block; }

@media (max-width: 1120px) { .px-offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .px-offer-grid { grid-template-columns: 1fr; gap: 22px; } .px-ocard { min-height: 240px; } }
@media (max-width: 500px) {
	.offer-wide {
		padding-inline: 0px; 
	}
	.px-ocard-body {
		width: 54%;
		padding: 22px 12px 18px 12px;
	}
	.px-ocard {
		border-radius: 0px; 
	}
}

@media (prefers-reduced-motion: reduce) {
	.px-ocard-media img, .px-ocard-cut, .px-ocard-seam { transition: none !important; }
	.px-ocard:hover .px-ocard-cut { transform: none; }
	.px-ocard:hover .px-ocard-seam { transform: none; }
}

.stats-section {
	position: relative;
	color: var(--white);
	padding: 90px 0;
	text-align: center;
	background: var(--dark-2);
	background-size: cover;
	background-position: center;
}

.stats-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(70deg, rgb(14 23 32), rgb(14 23 32 / 49%));
}

.stats-section .container { position: relative; z-index: 2; }

.stats-section h2 { color: var(--white); font-size: clamp(26px, 3vw, 36px); font-weight: 600; margin-bottom: 8px; }

.stats-section .subtitle { color: rgba(255, 255, 255, .65); margin-bottom: 54px; }

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

.stat-item h3 { color: var(--white); font-size: clamp(38px, 4vw, 52px); font-weight: 600; margin-bottom: 4px; }

.stat-item h3 .accent { color: var(--primary); }

.stat-item .stat-icon { color: var(--primary); margin-bottom: 10px; }

.stat-item p { color: rgba(255, 255, 255, .8); font-size: 15.5px; }

.about-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 64px;
	align-items: center;
}

.about-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }

.about-content h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 600; margin-bottom: 20px; }

.about-content h3 { font-size: 21px; font-weight: 600; margin: 26px 0 12px; }

.about-content p { margin-bottom: 18px; }

.about-content ul, .about-content ol { margin: 14px 0 18px; padding-left: 24px; }

.about-content li { margin-bottom: 8px; }

.about-content .btn { margin-top: 6px; }


.about-content li::marker, .entry li::marker { color: var(--primary); }

.entry { padding: 70px 10px 90px 10px; }

.entry #main { margin: 0; }

.entry h2 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 600; margin: 0 0 18px; }

.entry h3 { font-size: 21px; font-weight: 600; margin: 0 0 10px; }

.entry p { margin-bottom: 16px; }

.entry ul, .entry ol { margin: 0 0 18px 22px; }

.entry li { margin-bottom: 6px; }

.entry a:not(.btn) { color: var(--primary-hover); font-weight: 600; }

.entry a:not(.btn):hover { text-decoration: underline; }

.entry img.em-rounded, .entry img.em-circle {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	display: block;
}


.em-cols { display: flex; flex-direction: column; gap: 28px; }
.em-cols.em-middle { align-items: center; }
.em-cols.em-spread { justify-content: space-between; }
.em-full { width: 100%; }
.em-fluid { max-width: 100%; height: auto; }
.em-mt-0 { margin-top: 0 !important; }
.em-my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.em-mt-30 { margin-top: 30px; }
.em-section { margin-top: 34px; margin-bottom: 34px; }
.em-py-30 { padding-top: 30px; padding-bottom: 30px; }
.em-pl-60 { padding-left: 34px; }
.em-lead { font-size: 19px; font-weight: 600; }

.entry .entry-intro-lead { font-size: 17.5px; }
.entry .entry-intro-lead > p:first-child { font-size: 19px; }
.entry .entry-intro img { width: 100%; }

.em-grid { display: grid; gap: 22px; }
.em-grid-1 { grid-template-columns: 1fr; }
.em-grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 861px) {
	.em-cols.em-row { flex-direction: row; gap: 56px; }
	.em-cols.em-row-reverse { flex-direction: row-reverse; gap: 56px; }
	.em-col-5 { width: 41.666%; flex: none; }
	.em-col-6 { width: 50%; flex: none; }
	.em-col-4 { width: 33.333%; flex: none; }
	.em-col-8 { width: 66.666%; flex: none; }
	.em-grid-md-2 { grid-template-columns: repeat(2, 1fr); }
	.em-grid-md-3 { grid-template-columns: repeat(3, 1fr); }
	.em-section { margin-top: 64px; margin-bottom: 64px; }
}

@media (min-width: 1101px) {
	.em-grid-lg-3 { grid-template-columns: repeat(3, 1fr); }
}


.em-advantage {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 26px 26px 20px;
	transition: transform .3s ease, box-shadow .3s ease;
}
.em-advantage h3 { color: var(--dark); }

.em-advantage p { color: var(--text-light); font-size: 15px; margin-bottom: 4px; }


.regional-links ul {
	list-style: none;
	margin: 0 0 20px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 8px 20px;
}

.regional-links li { margin: 0; }

.regional-links a { display: inline-flex; padding: 4px 0; }


.gallery-section { padding: 20px 0 80px; }

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 16px;
}

.gallery a { display: block; border-radius: var(--radius); overflow: hidden; position: relative; }

.gallery img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform .35s ease; }

.gallery a:hover img { transform: scale(1.05); }

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 3000;
	background: rgba(8, 12, 16, .93);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s;
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox img {
	max-width: min(92vw, 1400px);
	max-height: 88vh;
	border-radius: 10px;
	box-shadow: 0 30px 90px rgba(0, 0, 0, .5);
}

.lightbox button {
	position: absolute;
	background: rgba(255, 255, 255, .12);
	border: 0;
	color: var(--white);
	width: 52px;
	height: 52px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .25s ease;
}

.lightbox button:hover { background: var(--primary); color: var(--dark); }

.lightbox .lb-close { top: 22px; right: 22px; }
.lightbox .lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
    box-shadow: 4px 3px 17px 5px rgb(14 23 32 / 4%);
    position: relative; 
}

.news-card h3 a::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}

.news-card h3 a:focus-visible::after {
	outline: 2px solid var(--primary-hover);
	outline-offset: -3px;
	border-radius: var(--radius);
}


.news-card-image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-light); }

.news-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }

.news-card:hover .news-card-image img { transform: scale(1.05); }

.news-card-body {
	padding: 24px 24px 26px;
	display: flex;
	flex-direction: column;
	flex: 1;
	border: 1px solid var(--border);
	border-top: 0;
	border-radius: 0 0 var(--radius) var(--radius);
}

.news-card .news-date {
	color: var(--primary-hover);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-bottom: 8px;
}

.news-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }

.news-card p { font-size: 15px; color: var(--text-light); margin-bottom: 16px; }

.pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	list-style: none;
	margin: 54px 0 0;
	flex-wrap: wrap;
}

.pagination a, .pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 10px;
	border-radius: 10px;
	border: 1px solid var(--border);
	font-weight: 600;
	color: var(--text);
	transition: all .25s ease;
}

.pagination a:hover { border-color: var(--primary); color: var(--primary-hover); }

.pagination .active a, .pagination .active span {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--dark);
}

.hidden { display: none !important; }

.contact-panel {
	background: var(--bg-card);
	border-left: 3px solid var(--primary);
	border-radius: 0 var(--radius) var(--radius) 0;
}

.entry div[style*="border-left"] {
	background: var(--bg-card);
	border-radius: 0 var(--radius) var(--radius) 0;
	padding-right: 26px;
}

.site-footer { background: var(--dark); color: var(--white); padding: 84px 0 30px; }

.site-footer h2, .site-footer h3, .site-footer h4 { color: var(--white); }

.footer-content { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; margin-bottom: 60px; align-items: center; }

.footer-left h2 { font-size: clamp(24px, 2.6vw, 33px); font-weight: 600; margin-bottom: 30px; max-width: 460px; }

.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.info-block h4 {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255, 255, 255, .55);
	margin-bottom: 14px;
}

.info-block p, .info-block a {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	color: rgba(255, 255, 255, .88);
	margin-bottom: 10px;
}

.info-block a:hover { color: var(--primary); }

.info-block .icon { color: var(--primary); margin-top: 3px; }

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding-top: 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	font-size: 13.5px;
	color: rgba(255, 255, 255, .55);
}

.footer-links { display: flex; flex-wrap: wrap; gap: 6px 20px; }

.footer-links a:hover { color: #ffffff; }

.footer-logo { display: flex; align-items: center; }

.footer-logo img { height: 34px; width: auto; display: block; }

.cookie-bar {
	position: fixed;
	inset: auto 16px 16px 16px;
	z-index: 2500;
	background: var(--dark-2);
	color: rgba(255, 255, 255, .88);
	border-radius: var(--radius);
	box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
	padding: 20px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	font-size: 14px;
	transform: translateY(calc(100% + 32px));
	transition: transform .4s ease;
}

.cookie-bar.show { transform: translateY(0); }

.cookie-bar em { color: var(--primary); font-style: normal; font-weight: 600; }

.cookie-bar a { color: var(--primary); font-weight: 600; }

.cookie-bar-buttons { display: flex; gap: 10px; flex: none; flex-wrap: wrap; }

.cookie-bar .btn { padding: 10px 18px; font-size: 14px; }

.cookie-bar .btn-ghost {
	background: rgba(255, 255, 255, .1);
	color: var(--white);
}

.cookie-bar .btn-ghost:hover { background: rgba(255, 255, 255, .22); }

.cookie-modal {
	position: fixed;
	inset: 0;
	z-index: 2600;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(8, 12, 16, .7);
	padding: 20px;
}

.cookie-modal.open { display: flex; }

.cookie-modal-box {
	background: var(--white);
	border-radius: var(--radius);
	max-width: 640px;
	width: 100%;
	padding: 32px;
	position: relative;
	max-height: 86vh;
	overflow: auto;
}

.cookie-modal-box h4 { font-size: 18px; margin: 18px 0 8px; }

.cookie-modal-box h4:first-of-type { margin-top: 0; }

.cookie-modal-box p { font-size: 14.5px; color: var(--text-light); margin-bottom: 8px; }

.cookie-row { display: flex; gap: 18px; align-items: flex-start; justify-content: space-between; }

.cookie-row label { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; flex: none; }

.cookie-row input { accent-color: var(--primary); width: 18px; height: 18px; }

.cookie-modal-box .btn { margin-top: 18px; }

.cookie-modal-close { position: absolute; top: 14px; right: 14px; background: none; border: 0; cursor: pointer; color: var(--text-light); }


.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.review {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin: 0;
	padding: 34px 30px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.review::before {
	content: '\201D';
	position: absolute;
	top: 12px;
	right: 26px;
	font-size: 86px;
	line-height: 1;
	color: var(--primary);
	opacity: .22;
	pointer-events: none;
}

.review blockquote {
	position: relative;
	z-index: 1;
	margin: 0;
	flex-grow: 1;
	font-size: 15.5px;
	line-height: 1.75;
	font-style: italic;
	color: var(--text-light);
}

.review figcaption {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
}

.review-avatar {
	width: 46px;
	height: 46px;
	flex: none;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--primary-soft);
	color: var(--white);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: .04em;
}

.review-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.review-meta strong { font-size: 14.5px; font-weight: 600; color: var(--dark); }

.review-meta span { font-size: 12.5px; color: var(--text-light); }

.reviews-info { max-width: 760px; margin: 42px auto 0; text-align: center; font-size: 13px; line-height: 1.6; color: var(--text-light); }

html.js .reveal,
html.js .reveal-left,
html.js .reveal-right {
	opacity: 0;
	transition: opacity .8s cubic-bezier(.22, .61, .36, 1), transform .8s cubic-bezier(.22, .61, .36, 1);
	will-change: opacity, transform;
}

html.js .reveal { transform: translateY(36px); }
html.js .reveal-left { transform: translateX(-44px); }
html.js .reveal-right { transform: translateX(44px); }

html.js .in-view { opacity: 1 !important; transform: none !important; will-change: auto; }

html.js .reveal-slow { transition-duration: .8s; }
html.js .reveal-slower { transition-duration: 1s; }
html.js .delay-200 { transition-delay: .2s; }
html.js .delay-300 { transition-delay: .3s; }
html.js .delay-400 { transition-delay: .4s; }
html.js .delay-500 { transition-delay: .5s; }
html.js .delay-600 { transition-delay: .6s; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	html.js .reveal, html.js .reveal-left, html.js .reveal-right { opacity: 1; transform: none; transition: none; }
}

html.no-anim .reveal,
html.no-anim .reveal-left,
html.no-anim .reveal-right { opacity: 1 !important; transform: none !important; transition: none !important; }


.wp-block-heading { margin-bottom: 14px; }

.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }

@media (max-width: 1100px) {
	.hamburger { display: block; }

	.nav-wrapper {
		position: fixed;
		top: 0;
		right: -110%;
		width: 100%;
		height: 100vh;
		height: 100dvh;
		background: var(--white);
		flex-direction: column;
		align-items: flex-start;
		padding: 96px 24px 32px;
		box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
		transition: right .35s ease;
		overflow-y: auto;
		gap: 22px;
		z-index: 9000;
	}

	.nav-wrapper.active { right: 0; }

	.site-nav { width: 100%; }

	.site-nav > ul { flex-direction: column; gap: 4px; width: 100%; }
	header nav.site-nav a:hover, header nav.site-nav a.active {
		color: #0b6410 !important;
	}
	.site-nav a { 		
		border-bottom: 1px solid #dddddd;
		border-radius: 0px;
		padding: 4px 7px;
		margin-top: 3px;
		width: 100%; 
		justify-content: space-between; 
		font-size: 17px; 
	}

	.site-nav > ul > li > a::after { display: none; }

	.lang-switcher{
		border-bottom: 1px solid #dddddd;
		border-radius: 0px;
		padding: 4px;
	}

	.submenu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: var(--bg-light);
		border-radius: 10px;
		display: none;
		padding: 6px;
		margin-top: 4px;
	}

	.submenu.open { display: block; }

	.site-nav li:hover > .submenu { transform: none; }

	.submenu-list a { justify-content: flex-start; }

	.submenu--mega {
		display: none;
		left: auto;
		width: 100%;
		transform: none;
		padding: 6px;
	}

	.submenu--mega.open { display: block; }

	.submenu--mega::before { display: none; }

	.submenu--mega .submenu-list {
		border: 0;
		border-radius: 0;
		max-height: none;
		overflow: visible;
	}

	.submenu--mega .submenu-list li + li { border-top: 0; }

	.submenu--mega .submenu-list a {
		border-radius: 8px;
		box-shadow: none;
		font-size: 16px;
	}

	.submenu--mega .submenu-list a:hover,
	.submenu--mega .submenu-list li.is-active a {
		background: none;
		box-shadow: none;
		color: var(--text) !important;
	}

	.submenu--mega .submenu-list a:hover .submenu-ico,
	.submenu--mega .submenu-list li.is-active a .submenu-ico {
		color: var(--primary-hover);
	}

	.submenu--mega .submenu-list a:hover .submenu-go,
	.submenu--mega .submenu-list li.is-active a .submenu-go {
		color: inherit;
		opacity: .45;
	}

	.submenu-preview { display: none; }

	.site-nav .arrow.rotated { transform: rotate(180deg); }
	.site-nav li:hover > a .arrow:not(.rotated) { transform: none; }

	.lang-switcher { margin: 6px 0 0; }

	.lang-switcher a { color: var(--dark); }

	.header-actions { width: 100%; }

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

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

	.about-grid { grid-template-columns: 1fr; gap: 40px; }

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

	.lang-switcher a {
		border: 0px !important;
	}

	.lang-switcher .lang-current a {
		background: transparent !important;
		color: var(--primary-hover) !important;
	}
}

@media (max-width: 860px) {
	.benefits-grid { grid-template-columns: 1fr; padding: 24px; gap: 20px; }

	.stats-grid { grid-template-columns: repeat(4, 1fr); gap: 36px; }

	.footer-content { grid-template-columns: 1fr; gap: 44px; }

	.section { padding: 64px 0; }

	.entry { padding: 52px 10px 70px; }
}

@media (max-width: 640px) {

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

	.reviews-grid { grid-template-columns: 1fr; }

	.hero { min-height: min(72vh, 720px); padding-bottom: 96px; }

	.hero-btns .btn { justify-content: center; }

	.cookie-bar { flex-direction: column; align-items: stretch; text-align: left; }

	.em-pl-60 { padding-left: 20px; }

	.hero-content h1, .hero-content p{
		text-align: center;
	}
	.hero-btns{ 
		align-items: center;
    	justify-content: center;
 	}
	.footer-left{
		text-align: center;
	}
}

@media (max-width: 500px) {
	.news-grid { grid-template-columns: 1fr; }
	.contact-info-grid {
		grid-template-columns: 1fr;
	}
	.contact-info-grid .info-block{
		display: flex;
		flex-direction: column;
        align-items: center;
	}
	.footer-left{
		display: flex;
		flex-direction: column;
        align-items: center;
	}
	.footer-left h2{
		text-align: center;
	}
	.hero-btns{ 
		align-items: center;
    	justify-content: center;
 	}
	.news-grid {
        margin-right: -30px;
        margin-left: -30px;
    }
}