/*
 * Approved IGMS design system.
 *
 * This visual layer intentionally loads after main.css, which provides the
 * shared structural and responsive foundation.
 */

:root {
	--brand-green: #078447;
	--brand-green-deep: #045a34;
	--brand-green-ink: #063b27;

	/* Brand green as small text. --brand-green fails WCAG AA on dark cards. */
	--brand-green-text: #078447;
	--brand-yellow: #ffcb3d;
	--page-bg: #ffffff;
	--surface: #f5f7f4;
	--surface-strong: #e9eee9;
	--card-bg: #ffffff;
	--text: #122019;
	--muted: #5c6962;
	--border: #dfe6e1;
	--shadow: 0 18px 50px rgb(16 44 29 / 9%);
	--shadow-hover: 0 24px 64px rgb(8 53 31 / 16%);
	--container: 1280px;
	--wide: 1400px;
	--radius: 24px;
}

html[data-theme="dark"] {
	--brand-green-text: #64dda2;
	--page-bg: #0d1511;
	--surface: #121d17;
	--surface-strong: #1b2921;
	--card-bg: #17231c;
	--text: #f3f7f4;
	--muted: #b6c3bb;
	--border: #2b3b31;
	--shadow: 0 20px 60px rgb(0 0 0 / 27%);
	--shadow-hover: 0 28px 75px rgb(0 0 0 / 42%);
}

body {
	background: var(--page-bg);
	letter-spacing: -.012em;
}

.section-inner {
	width: min(calc(100% - 64px), var(--container));
}

.home-section {
	padding: 104px 0;
}

.section-title {
	max-width: 850px;
	color: var(--text);
	font-size: clamp(1.8rem, 2.6vw, 2.65rem);
	font-weight: 600;
	letter-spacing: -.045em;
	line-height: 1.08;
	text-wrap: balance;
}

.section-title--left {
	margin-inline: 0;
}

.title-rule {
	width: 78px;
	height: 5px;
	margin: 20px auto 54px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--brand-green) 0 58%, var(--brand-yellow) 58%);
}

.title-rule--left {
	margin-left: 0;
}

.section-intro {
	max-width: 900px;
	margin: -28px auto 52px;
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.8;
}

.button {
	min-height: 50px;
	padding: 13px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--brand-yellow);
	color: var(--brand-green-ink);
	font-weight: 700;
	box-shadow: 0 12px 30px rgb(255 203 61 / 24%);
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 16px 38px rgb(255 203 61 / 33%);
}

/* Header */
.site-header__inner {
	width: min(calc(100% - 64px), var(--container));
	min-height: 108px;
	align-items: center;
	padding-top: 8px;
}

.site-header__brand {
	padding: 8px;
	border-radius: 16px;
	transition: transform 180ms ease;
}

.site-header__brand:hover {
	transform: translateY(-2px);
}

.site-header__logo {
	width: 94px;
	height: 62px;
	transform: none;
	filter: drop-shadow(0 4px 16px rgb(0 0 0 / 26%));
}

.site-header__actions {
	gap: 3px;
	padding: 7px 8px 7px 9px;
	border: 1px solid rgb(255 255 255 / 24%);
	border-radius: 999px;
	background: rgb(7 25 17 / 54%);
	box-shadow: 0 12px 35px rgb(0 0 0 / 18%);
	backdrop-filter: blur(14px);
}

.menu-toggle,
.theme-toggle {
	filter: none;
}

.menu-toggle {
	gap: 8px;
	align-items: center;
	padding: 7px 10px 7px 12px;
	font-size: .88rem;
	letter-spacing: .04em;
	line-height: 1;
}

.menu-toggle > span {
	display: inline-flex;
	align-items: center;
	line-height: 1;
	white-space: nowrap;
}

.menu-toggle .igms-icon {
	width: 21px;
	height: 21px;
	flex: 0 0 auto;
	transform: translateY(-1px);
}

.theme-toggle {
	width: 38px;
	height: 38px;
	border-color: rgb(255 255 255 / 26%);
	background: rgb(255 255 255 / 8%);
}

.theme-toggle:hover,
.menu-toggle:hover {
	background: rgb(255 255 255 / 10%);
}

/* Menu */
.menu-overlay {
	background-color: var(--brand-green-ink);
}

.menu-overlay__shade {
	background:
		linear-gradient(115deg, rgb(4 32 21 / 96%) 0%, rgb(4 50 30 / 89%) 48%, rgb(0 0 0 / 67%) 100%);
}

.menu-overlay__inner {
	width: min(calc(100% - 96px), var(--container));
	grid-template-rows: minmax(0, 1fr) auto;
	padding: 40px 0 48px;
}

.menu-overlay__nav {
	justify-items: center;
	padding: 104px 0 34px;
}

.menu-overlay__list,
.menu-overlay__list ul {
	text-align: center;
}

.menu-overlay__list a {
	padding: 4px 12px;
	font-size: clamp(1.45rem, 2.2vw, 2.35rem);
	font-weight: 600;
	letter-spacing: -.04em;
	line-height: 1.12;
}

.menu-overlay__list a:hover,
.menu-overlay__list a:focus-visible,
.menu-overlay__list .current-menu-item > a,
.menu-overlay__list .current_page_item > a {
	transform: scale(1.025);
}

.menu-overlay__contacts {
	padding: 24px;
	border: 1px solid rgb(255 255 255 / 13%);
	border-radius: 22px;
	background: rgb(255 255 255 / 7%);
	backdrop-filter: blur(12px);
}

.menu-overlay .contact-item,
.footer-cta .contact-item {
	transition: transform 180ms ease;
}

.menu-overlay .contact-item:hover,
.footer-cta .contact-item:hover {
	transform: translateY(-3px);
}

.contact-item__icon {
	width: 50px;
	height: 50px;
	margin-bottom: 12px;
	background: var(--brand-yellow);
	color: var(--brand-green-ink);
}

/* Hero */
.hero {
	height: clamp(680px, 80vh, 820px);
	min-height: 680px;
	background: #07130d;
}

.hero__track {
	transition-duration: 850ms;
}

.hero__slide {
	width: 100%;
	min-width: 100%;
	flex: 0 0 100%;
	place-items: center;
}

.hero__media img,
.hero__media video {
	object-position: center;
}

.hero__overlay {
	background:
		linear-gradient(90deg, rgb(4 16 10 / 86%) 0%, rgb(4 16 10 / 67%) 43%, rgb(4 16 10 / 24%) 76%, rgb(4 16 10 / 18%) 100%),
		linear-gradient(0deg, rgb(2 11 7 / 60%) 0%, transparent 40%, rgb(2 11 7 / 16%) 100%);
}

.hero__content {
	display: flex;
	width: min(calc(100% - 64px), var(--container));
	max-width: none;
	align-items: flex-start;
	flex-direction: column;
	padding-top: 76px;
	text-align: left;
	transform: none;
}

.hero__content h1,
.hero__content h2 {
	max-width: 800px;
	color: #ffffff;
	font-size: clamp(2.5rem, 4.4vw, 4.4rem);
	font-weight: 650;
	letter-spacing: -.055em;
	line-height: .98;
	text-align: left;
	text-transform: none;
	text-wrap: balance;
	hyphens: none;
	overflow-wrap: normal;
	word-break: normal;
}

.hero__content h1 {
	font-size: clamp(2.4rem, 3.9vw, 3.9rem);
}

.hero__content h2.hero__title--long {
	font-size: clamp(2.25rem, 3.3vw, 3.3rem);
	text-wrap: nowrap;
}

.hero__subtitle {
	max-width: 850px;
	margin: 17px 0 0;
	color: var(--brand-yellow);
	font-size: clamp(1.15rem, 1.85vw, 1.7rem);
	font-weight: 600;
	letter-spacing: -.025em;
	line-height: 1.25;
	text-align: left;
	text-transform: none;
	text-wrap: balance;
}

.hero__text {
	max-width: 700px;
	margin: 21px 0 32px;
	color: rgb(255 255 255 / 88%);
	font-size: 1.05rem;
	line-height: 1.7;
	text-align: left;
}

.hero__location-link {
	color: inherit;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: var(--brand-yellow);
	text-decoration-thickness: 2px;
	text-underline-offset: .18em;
}

.hero__location-link:hover,
.hero__location-link:focus-visible {
	color: var(--brand-yellow);
}

.hero__content .button {
	min-height: 52px;
	padding: 14px 24px;
	border-radius: 999px;
	font-size: .92rem;
}

.hero__subtitle + .button,
.hero__content h2 + .hero__subtitle + .button {
	margin-top: 30px;
}

.carousel-dots {
	right: max(32px, calc((100vw - var(--container)) / 2));
	bottom: 92px;
	left: auto;
	justify-content: flex-end;
	gap: 9px;
}

.carousel-dots button {
	width: 34px;
	height: 5px;
	border-radius: 999px;
	background: rgb(255 255 255 / 48%);
	transition: width 180ms ease, background 180ms ease;
}

.carousel-dots button.is-active {
	width: 54px;
	background: var(--brand-yellow);
}

/* Benefits */
.benefits {
	z-index: 10;
	height: auto;
	margin-top: -58px;
	padding: 0 0 96px;
	overflow: visible;
	background: transparent;
}

.benefits__viewport {
	width: min(calc(100% - 64px), var(--container));
	height: auto;
	margin-inline: auto;
	overflow: visible;
}

.benefits__track {
	display: grid;
	width: 100%;
	height: auto;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	transform: none;
}

.benefit-card {
	display: grid;
	width: auto;
	min-height: 142px;
	grid-template-columns: 58px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: 22px;
	background: color-mix(in srgb, var(--card-bg) 94%, transparent);
	box-shadow: var(--shadow);
	backdrop-filter: blur(14px);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover {
	transform: translateY(-4px);
	border-color: color-mix(in srgb, var(--brand-green) 30%, var(--border));
	box-shadow: var(--shadow-hover);
}

.benefit-card__icon {
	position: static;
	width: 58px;
	height: 58px;
	border-radius: 17px;
	background: var(--brand-yellow);
	color: var(--brand-green-ink);
}

.benefit-card__icon img,
.benefit-card__icon .igms-icon {
	width: 36px;
	height: 36px;
}

.benefit-card__icon img {
	filter: brightness(0) saturate(100%) invert(17%) sepia(40%) saturate(1074%) hue-rotate(105deg) brightness(91%) contrast(98%);
}

.benefit-card h2 {
	margin-bottom: 7px;
	font-size: 1.05rem;
	font-weight: 650;
	letter-spacing: -.025em;
}

.benefit-card p {
	color: var(--muted);
	font-size: .84rem;
	line-height: 1.45;
}

/* Services */
.services {
	padding: 12px 0 112px;
}

.services__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.service-card {
	min-height: 430px;
	border: 1px solid var(--border);
	border-radius: 24px;
	background: var(--card-bg);
	color: var(--text);
	box-shadow: var(--shadow);
	transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.service-card:hover,
.service-card:focus-visible {
	transform: translateY(-8px);
	border-color: color-mix(in srgb, var(--brand-green) 35%, var(--border));
	box-shadow: var(--shadow-hover);
}

.service-card__image {
	height: auto;
	aspect-ratio: 4 / 3;
	background: var(--surface-strong);
}

.service-card__image::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--brand-green) 0 70%, var(--brand-yellow) 70%);
	content: "";
}

.service-card__body {
	align-items: flex-start;
	padding: 25px 24px 24px;
	text-align: left;
}

.service-card h3 {
	margin-bottom: 13px;
	color: var(--text);
	font-size: 1.07rem;
	font-weight: 650;
	line-height: 1.32;
}

.service-card p {
	margin-bottom: 24px;
	color: var(--muted);
	font-size: .83rem;
	line-height: 1.58;
}

.service-card__link {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	color: var(--brand-green-text);
	font-size: .8rem;
	font-weight: 700;
}

.service-card__link span {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border-radius: 50%;
	background: var(--surface);
}

.service-card__link span::before {
	width: 7px;
	height: 7px;
	border-top: 2px solid currentcolor;
	border-right: 2px solid currentcolor;
	content: "";
}

/* Process */
.process {
	min-height: 620px;
	background-position: center;
}

.process__shade {
	background:
		linear-gradient(110deg, rgb(3 31 19 / 94%), rgb(3 31 19 / 72%)),
		linear-gradient(rgb(0 0 0 / 35%), rgb(0 0 0 / 35%));
}

.process__inner {
	padding: 100px 0 108px;
}

.process h2 {
	font-size: clamp(1.8rem, 2.6vw, 2.65rem);
	font-weight: 600;
	letter-spacing: -.045em;
	line-height: 1.1;
}

.process .title-rule {
	margin-bottom: 50px;
}

.process__steps {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 0;
}

.process__steps::before {
	display: none;
}

.process-step {
	min-height: 275px;
	padding: 26px 22px 24px;
	border: 1px solid rgb(255 255 255 / 13%);
	border-radius: 22px;
	background: rgb(255 255 255 / 8%);
	text-align: left;
	backdrop-filter: blur(10px);
}

.process-step__marker {
	width: 58px;
	height: 58px;
	border: 0;
	border-radius: 16px;
	background: var(--brand-yellow);
	color: var(--brand-green-ink);
}

.process-step__marker b {
	right: -8px;
	top: -8px;
	min-width: 25px;
	height: 25px;
	background: #ffffff;
	color: var(--brand-green-ink);
	font-size: .69rem;
	text-align: center;
}

.process-step h3 {
	margin: 24px 0 10px;
	font-size: 1.05rem;
	font-weight: 600;
}

.process-step p {
	color: rgb(255 255 255 / 73%);
	font-size: .8rem;
	line-height: 1.6;
}

/* Split sections */
.split-section {
	padding: 112px 0;
}

.why-section {
	background: var(--surface);
}

.about-section {
	padding: 112px 0 124px;
}

.split-section__grid,
.split-section__grid--reverse {
	grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
	gap: clamp(48px, 7vw, 94px);
}

.split-section__grid--reverse {
	grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
}

.split-section__media {
	position: relative;
}

.split-section__media::before {
	position: absolute;
	right: -14px;
	bottom: -14px;
	z-index: 0;
	width: 55%;
	height: 55%;
	border-radius: 24px;
	background: var(--brand-yellow);
	content: "";
}

.about-section .split-section__media::before {
	right: auto;
	left: -14px;
	background: var(--brand-green);
}

.split-section__media img {
	position: relative;
	z-index: 1;
	width: 100%;
	max-height: none;
	aspect-ratio: 4 / 4.2;
	border-radius: 28px;
	box-shadow: var(--shadow);
	object-fit: cover;
}

.reason-list {
	gap: 14px;
}

.reason-item {
	grid-template-columns: 52px minmax(0, 1fr);
	align-items: start;
	gap: 17px;
	padding: 18px;
	border: 1px solid var(--border);
	border-radius: 18px;
	background: var(--card-bg);
}

.reason-item__icon {
	display: grid;
	width: 52px;
	height: 52px;
	padding: 0;
	place-items: center;
	border-radius: 15px;
	background: var(--brand-green-deep);
	box-shadow: 0 8px 20px rgb(4 90 52 / 18%);
}

.reason-item__icon img {
	width: 30px;
	height: 30px;
}

.reason-item h3 {
	margin-bottom: 5px;
	font-size: 1rem;
	font-weight: 650;
}

.reason-item p,
.rich-text {
	color: var(--muted);
	font-size: .91rem;
	line-height: 1.7;
}

.rich-text {
	font-size: 1rem;
}

/* Team, partners and jobs */
.team-section {
	padding: 108px 0 0;
	background: linear-gradient(180deg, var(--surface) 0%, var(--page-bg) 38%);
}

.team-rail {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 92px;
}

.team-card {
	border: 1px solid var(--border);
	border-radius: 24px;
	background: var(--card-bg);
	color: var(--text);
	box-shadow: var(--shadow);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.team-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-hover);
}

.team-card > img {
	height: auto;
	aspect-ratio: 4 / 4.35;
	object-fit: cover;
	object-position: top center;
}

.team-card > div {
	position: relative;
	padding: 20px 18px 22px;
	text-align: left;
}

.team-card > div::before {
	display: block;
	width: 38px;
	height: 4px;
	margin-bottom: 13px;
	border-radius: 999px;
	background: var(--brand-yellow);
	content: "";
}

.team-card h3 {
	font-size: .98rem;
	font-weight: 650;
}

.team-card p {
	margin-top: 6px;
	color: var(--muted);
	font-size: .72rem;
	letter-spacing: .045em;
	text-transform: uppercase;
}

.partners {
	width: min(calc(100% - 64px), var(--container));
	margin: 0 auto 94px;
	padding: 46px 0 52px;
	border-radius: 30px;
	background: linear-gradient(135deg, #ffd251, var(--brand-yellow));
	box-shadow: 0 20px 55px rgb(255 203 61 / 22%);
}

.partners .section-inner {
	width: 100%;
	padding-inline: 48px;
}

.partners .section-title {
	color: var(--brand-green-ink);
	font-size: clamp(1.55rem, 2.1vw, 2.05rem);
}

.partners .title-rule {
	margin-bottom: 32px;
	background: var(--brand-green);
}

.partners__logos {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
}

.partners__logos a {
	height: 82px;
	min-width: 0;
	padding: 12px 8px;
	border-radius: 14px;
	transition: transform 180ms ease, background 180ms ease;
}

.partners__logos img {
	width: 100%;
	height: 56px;
	max-width: 178px;
	max-height: 56px;
	object-fit: contain;
	object-position: center;
}

.partners__logos a:hover {
	transform: translateY(-3px);
	background: rgb(255 255 255 / 22%);
}

.jobs {
	padding: 0 0 110px;
}

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

.jobs__grid .job-card:only-child {
	width: min(100%, 640px);
	grid-column: 1 / -1;
	justify-self: center;
}

.job-card {
	width: 100%;
	min-height: 190px;
	align-items: center;
	padding: 30px;
	text-align: center;
	border: 1px solid rgb(255 255 255 / 10%);
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgb(255 255 255 / 7%), transparent),
		var(--brand-green-deep);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.job-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}

.job-card span {
	color: rgb(255 255 255 / 70%);
	font-size: .8rem;
}

.job-card strong {
	margin: 10px 0 24px;
	font-size: 1.25rem;
}

.job-card small {
	width: auto;
	margin-top: auto;
	padding: 7px 13px;
	border-radius: 999px;
	background: var(--brand-yellow);
	color: var(--brand-green-ink);
	font-weight: 700;
}

/* Job details dialog */
.job-dialog {
	width: min(calc(100% - 40px), 760px);
	max-width: none;
	max-height: min(86vh, 900px);
	padding: 0;
	border: 1px solid var(--border);
	border-radius: 26px;
	overflow: visible;
	background: var(--card-bg);
	color: var(--text);
	box-shadow: 0 30px 100px rgb(0 0 0 / 45%);
}

.job-dialog::backdrop {
	background: rgb(2 12 7 / 82%);
	backdrop-filter: blur(8px);
}

.job-dialog__inner {
	max-height: min(86vh, 900px);
	padding: clamp(28px, 4vw, 46px);
	overflow-y: auto;
	overscroll-behavior: contain;
	border-radius: 25px;
}

.job-dialog__close {
	position: absolute;
	top: -18px;
	right: -18px;
	z-index: 2;
	display: grid;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	place-items: center;
	background: var(--brand-yellow);
	color: var(--brand-green-ink);
	cursor: pointer;
}

.job-dialog__header {
	margin-bottom: 26px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--border);
}

.job-dialog__kicker {
	margin: 0 0 8px;
	color: var(--brand-green-text);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.job-dialog__header h3 {
	margin: 0;
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	letter-spacing: -.03em;
	line-height: 1.15;
}

.job-dialog__support {
	margin: 12px 0 0;
	color: var(--muted);
}

.job-dialog__block {
	margin-bottom: 24px;
}

.job-dialog__block h4 {
	margin: 0 0 8px;
	font-size: 1.05rem;
	font-weight: 650;
	letter-spacing: -.025em;
}

.job-dialog__rich {
	color: var(--muted);
	line-height: 1.75;
}

.job-dialog__rich > :last-child {
	margin-bottom: 0;
}

.job-dialog__rich ul {
	margin: 0;
	padding-left: 20px;
}

.job-dialog__rich li {
	margin-bottom: 6px;
}

.job-dialog__rich a {
	color: var(--brand-green-text);
	font-weight: 600;
	text-underline-offset: 3px;
}

.job-dialog__contact {
	display: grid;
	padding-top: 22px;
	border-top: 1px solid var(--border);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.job-dialog__contact address {
	font-style: normal;
}

@media (max-width: 700px) {
	.job-dialog {
		width: calc(100% - 24px);
		border-radius: 20px;
	}

	.job-dialog__close {
		top: -14px;
		right: -6px;
		width: 42px;
		height: 42px;
	}

	.job-dialog__contact {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

/* Gallery */
.gallery-section {
	padding: 105px 0 116px;
	background: var(--surface);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: 185px;
	gap: 14px;
	columns: auto;
}

.gallery-grid a {
	position: relative;
	margin: 0;
	border-radius: 18px;
	background: var(--surface-strong);
	box-shadow: 0 8px 30px rgb(11 42 26 / 8%);
}

.gallery-grid a[hidden] {
	display: none;
}

.gallery-grid a:nth-child(1),
.gallery-grid a:nth-child(8) {
	grid-column: span 2;
	grid-row: span 2;
}

.gallery-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease, filter 500ms ease;
}

.gallery-grid a::after {
	position: absolute;
	right: 14px;
	bottom: 14px;
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 50%;
	background: rgb(255 255 255 / 90%);
	color: var(--brand-green-ink);
	font-size: 1.1rem;
	content: "+";
	opacity: 0;
	transform: translateY(5px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-grid a:hover::after,
.gallery-grid a:focus-visible::after {
	opacity: 1;
	transform: none;
}

.gallery-grid a:hover img,
.gallery-grid a:focus-visible img {
	filter: saturate(1.05);
	transform: scale(1.045);
}

.gallery-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 38px;
}

.gallery-more[hidden] {
	display: none;
}

.gallery-lightbox {
	background: rgb(3 10 6 / 96%);
}

.gallery-lightbox img {
	border-radius: 12px;
}

/* Footer */
.footer-cta {
	min-height: 570px;
}

.footer-cta__shade {
	background:
		linear-gradient(110deg, rgb(3 32 18 / 91%), rgb(3 32 18 / 65%)),
		rgb(0 0 0 / 30%);
}

.footer-cta__inner {
	width: min(calc(100% - 64px), var(--container));
	min-height: 570px;
	padding: 84px 0 72px;
}

.footer-cta h2 {
	max-width: 900px;
	color: #ffffff;
	font-size: clamp(2rem, 3.6vw, 3.6rem);
	font-weight: 600;
	letter-spacing: -.055em;
	line-height: 1.02;
	text-wrap: balance;
}

.footer-cta__inner > p {
	max-width: 760px;
	margin: 22px auto 42px;
	color: rgb(255 255 255 / 76%);
	font-size: 1.02rem;
	line-height: 1.65;
}

.footer-cta__contacts {
	gap: 16px;
	margin-bottom: 38px;
}

.footer-cta .contact-item {
	padding: 22px 18px;
	border: 1px solid rgb(255 255 255 / 13%);
	border-radius: 20px;
	background: rgb(255 255 255 / 7%);
	backdrop-filter: blur(10px);
}

.footer-bottom {
	background: var(--brand-green-ink);
}

.footer-bottom__inner {
	width: min(calc(100% - 64px), var(--container));
	min-height: 170px;
	padding: 34px 0;
}

.footer-bottom__brand {
	display: block;
	max-width: 100%;
	flex: 0 0 auto;
}

.footer-bottom__logo {
	width: 240px;
	height: 64px;
	max-height: none;
	object-fit: contain;
	object-position: left center;
}

.footer-bottom__meta {
	color: rgb(255 255 255 / 72%);
}

.footer-legal {
	color: var(--brand-yellow);
	font-weight: 600;
}

.floating-actions {
	right: 24px;
	bottom: 24px;
}

.floating-toggle {
	width: 58px;
	height: 58px;
	background: var(--brand-green);
	box-shadow: 0 12px 28px rgb(3 54 30 / 28%);
}

.gas-notice {
	border: 1px solid rgb(255 255 255 / 12%);
	border-radius: 22px;
}

.gas-notice__text p {
	margin-bottom: 10px;
}

.gas-notice__text p:last-child {
	margin-bottom: 16px;
}

/* Centred promotion popup */
.promo-popup {
	position: fixed;
	width: min(calc(100% - 32px), 640px);
	max-width: none;
	padding: 0;
	border: 1px solid rgb(255 255 255 / 14%);
	border-radius: 26px;
	overflow: hidden;
	background: #101815 var(--promo-background) center / cover no-repeat;
	color: #ffffff;
	box-shadow: 0 30px 100px rgb(0 0 0 / 55%);
}

.promo-popup::backdrop {
	background: rgb(2 12 7 / 84%);
	backdrop-filter: blur(8px);
}

.promo-popup::before {
	position: absolute;
	inset: 0;
	background: rgb(6 18 12 / 74%);
	content: "";
}

.promo-popup__content {
	position: relative;
	z-index: 1;
	padding: clamp(38px, 5vw, 58px) clamp(26px, 4vw, 52px);
	text-align: center;
}

.promo-popup h2 {
	margin: 0 0 16px;
	color: var(--brand-yellow);
	font-size: clamp(1.55rem, 3vw, 2.15rem);
	font-weight: 700;
	letter-spacing: -.03em;
	line-height: 1.15;
	text-wrap: balance;
}

.promo-popup__text {
	max-width: 46ch;
	margin: 0 auto 26px;
	color: rgb(255 255 255 / 88%);
	font-size: 1rem;
	line-height: 1.7;
}

.promo-popup__text p {
	margin-bottom: 10px;
}

.promo-popup__text p:last-child {
	margin-bottom: 0;
}

.promo-popup__close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	display: grid;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	place-items: center;
	background: var(--brand-yellow);
	color: var(--brand-green-ink);
	cursor: pointer;
	transition: transform 180ms ease;
}

.promo-popup__close:hover {
	transform: scale(1.06);
}

@media (max-width: 700px) {
	.promo-popup {
		border-radius: 20px;
	}

	.promo-popup__close {
		top: 10px;
		right: 10px;
		width: 40px;
		height: 40px;
	}

	/* Keep the centred heading clear of the close button. */
	.promo-popup__content {
		padding-top: 66px;
	}
}

@media (max-width: 1180px) {
	.services__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

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

	.process-step {
		min-height: 235px;
	}

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

	.gallery-grid a:nth-child(8) {
		grid-column: span 1;
		grid-row: span 1;
	}
}

@media (max-width: 900px) {
	.section-inner,
	.site-header__inner,
	.hero__content,
	.benefits__viewport,
	.footer-cta__inner,
	.footer-bottom__inner {
		width: min(calc(100% - 48px), var(--container));
	}

	.home-section {
		padding: 84px 0;
	}

	.hero {
		height: 700px;
		min-height: 700px;
	}

	.hero__content {
		padding-top: 86px;
	}

	.carousel-dots {
		right: 24px;
		bottom: 82px;
	}

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

	.service-card {
		min-height: 0;
	}

	.split-section__grid,
	.split-section__grid--reverse {
		grid-template-columns: 1fr;
		gap: 58px;
	}

	.split-section__content {
		order: 1;
	}

	.split-section__media,
	.split-section__grid--reverse .split-section__media {
		order: 2;
		max-width: 700px;
	}

	.split-section__media img {
		aspect-ratio: 16 / 10;
	}

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

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

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

	.gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 190px;
	}
}

@media (max-width: 767px) {
	.section-inner,
	.site-header__inner,
	.hero__content,
	.benefits__viewport,
	.footer-cta__inner,
	.footer-bottom__inner {
		width: calc(100% - 36px);
	}

	.home-section {
		padding: 72px 0;
	}

	.section-title {
		font-size: clamp(1.65rem, 7.4vw, 2.15rem);
	}

	.title-rule {
		margin-top: 16px;
		margin-bottom: 40px;
	}

	.section-intro {
		margin-top: -18px;
		margin-bottom: 38px;
		font-size: .95rem;
		line-height: 1.65;
	}

	.site-header__inner {
		min-height: 88px;
		padding-top: 4px;
	}

	.site-header__logo {
		width: 74px;
		height: 50px;
	}

	.site-header__actions {
		padding: 5px;
	}

	.menu-toggle {
		gap: 5px;
		padding: 5px 7px;
		font-size: .72rem;
	}

	.menu-toggle > span {
		position: static;
		width: auto;
		height: auto;
		overflow: visible;
		clip: auto;
	}

	.menu-overlay__inner {
		width: calc(100% - 36px);
	}

	.menu-overlay__nav {
		justify-items: center;
		padding: 96px 0 22px;
	}

	.menu-overlay__list,
	.menu-overlay__list ul {
		text-align: center;
	}

	.menu-overlay__list a:hover,
	.menu-overlay__list a:focus-visible,
	.menu-overlay__list .current-menu-item > a,
	.menu-overlay__list .current_page_item > a {
		transform: none;
	}

	.menu-overlay__list a {
		padding: 3px 8px;
		font-size: clamp(1.15rem, 5.4vw, 1.38rem);
		line-height: 1.1;
	}

	.menu-overlay__contacts {
		gap: 8px;
		padding: 12px;
	}

	.menu-overlay .contact-item {
		display: grid;
		grid-template-columns: 42px minmax(0, 1fr);
		grid-template-rows: auto auto;
		align-items: center;
		gap: 0 12px;
		padding: 5px;
		font-size: .8rem;
		text-align: left;
	}

	.menu-overlay .contact-item__icon {
		width: 42px;
		height: 42px;
		grid-column: 1;
		grid-row: 1 / 3;
		margin: 0;
	}

	.menu-overlay .contact-item strong,
	.menu-overlay .contact-item > span:last-child {
		grid-column: 2;
	}

	.menu-overlay .contact-item strong {
		margin: 0;
		font-size: .82rem;
	}

	.hero {
		height: 720px;
		min-height: 720px;
	}

	.hero__media img,
	.hero__media video {
		object-position: 57% center;
	}

	.hero__overlay {
		background:
			linear-gradient(0deg, rgb(3 15 9 / 92%) 0%, rgb(3 15 9 / 70%) 57%, rgb(3 15 9 / 38%) 100%);
	}

	.hero__content {
		justify-content: flex-end;
		padding: 120px 0 96px;
	}

	.hero__content h1,
	.hero__content h2 {
		max-width: 100%;
		font-size: clamp(2rem, 9.6vw, 2.7rem);
		line-height: 1.02;
	}

	.hero__content h2.hero__title--long {
		font-size: clamp(1.4rem, 6.2vw, 1.95rem);
		line-height: 1.05;
	}

	.hero__content h1 {
		font-size: clamp(1.95rem, 8.4vw, 2.45rem);
	}

	.hero__subtitle {
		font-size: clamp(1.05rem, 5.4vw, 1.38rem);
		line-height: 1.28;
	}

	.hero__text {
		display: -webkit-box;
		margin: 18px 0 24px;
		overflow: hidden;
		font-size: .92rem;
		line-height: 1.55;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 4;
	}

	.hero__content .button {
		min-height: 48px;
		padding: 12px 20px;
	}

	.carousel-dots {
		right: 18px;
		bottom: 32px;
		left: 18px;
		justify-content: flex-start;
	}

	.carousel-dots button {
		width: 24px;
	}

	.carousel-dots button.is-active {
		width: 42px;
	}

	.benefits {
		margin-top: -18px;
		padding-bottom: 74px;
	}

	.benefits__track {
		grid-template-columns: 1fr;
		gap: 12px;
		align-items: stretch;
		justify-items: stretch;
		padding: 0;
	}

	.benefit-card {
		width: 100%;
		max-width: none;
		min-height: 0;
		grid-template-columns: 52px minmax(0, 1fr);
		gap: 15px;
		padding: 19px;
		border-radius: 18px;
	}

	.benefit-card__icon {
		width: 52px;
		height: 52px;
		border-radius: 15px;
	}

	.benefit-card__icon img,
	.benefit-card__icon .igms-icon {
		width: 32px;
		height: 32px;
	}

	.services {
		padding: 2px 0 82px;
	}

	.services__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.service-card {
		border-radius: 20px;
	}

	.service-card__image {
		aspect-ratio: 16 / 10;
	}

	.service-card__body {
		padding: 22px;
	}

	.process {
		min-height: 0;
	}

	.process__inner {
		padding: 76px 0 82px;
	}

	.process h2 {
		font-size: clamp(1.65rem, 7.4vw, 2.15rem);
	}

	.process__steps {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.process-step {
		min-height: 0;
		padding: 22px;
	}

	.process-step h3 {
		margin-top: 20px;
	}

	.split-section,
	.about-section {
		padding: 78px 0 84px;
	}

	.split-section__grid,
	.split-section__grid--reverse {
		gap: 42px;
	}

	.split-section__media img {
		aspect-ratio: 4 / 3.5;
		border-radius: 22px;
	}

	.split-section__media::before {
		right: -8px;
		bottom: -8px;
		border-radius: 18px;
	}

	.about-section .split-section__media::before {
		left: -8px;
	}

	.reason-item {
		grid-template-columns: 46px minmax(0, 1fr);
		gap: 14px;
		padding: 16px;
	}

	.reason-item__icon {
		width: 46px;
		height: 46px;
	}

	.team-section {
		padding-top: 78px;
	}

	.team-rail {
		display: grid;
		grid-template-columns: 1fr;
		gap: 16px;
		margin: 0 0 68px;
		padding: 0;
		overflow: visible;
	}

	.team-card {
		display: grid;
		grid-template-columns: 42% 58%;
		min-width: 0;
		border-radius: 20px;
	}

	.team-card > img {
		width: 100%;
		height: 230px;
		min-height: 0;
		aspect-ratio: auto;
	}

	.team-card > div {
		display: flex;
		justify-content: center;
		flex-direction: column;
		padding: 20px;
	}

	.partners {
		width: calc(100% - 24px);
		margin-bottom: 70px;
		padding: 42px 0;
		border-radius: 24px;
	}

	.partners .section-inner {
		padding-inline: 18px;
	}

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

	.partners__logos a {
		height: 72px;
		padding: 10px 6px;
	}

	.partners__logos img {
		height: 50px;
		max-width: 160px;
		max-height: 50px;
	}

	.jobs {
		padding-bottom: 84px;
	}

	.job-card {
		min-height: 175px;
		padding: 24px;
	}

	.gallery-section {
		padding: 78px 0 88px;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 145px;
		gap: 8px;
	}

	.gallery-grid a {
		border-radius: 12px;
	}

	.gallery-grid a:nth-child(1) {
		grid-column: span 2;
		grid-row: span 2;
	}

	.gallery-grid a:nth-child(8) {
		grid-column: span 1;
		grid-row: span 1;
	}

	.gallery-grid a::after {
		display: none;
	}

	.gallery-more-wrap {
		margin-top: 28px;
	}

	.footer-cta,
	.footer-cta__inner {
		min-height: 0;
	}

	.footer-cta__inner {
		padding: 78px 0 68px;
	}

	.footer-cta h2 {
		font-size: clamp(1.85rem, 8.8vw, 2.7rem);
	}

	.footer-cta__contacts {
		gap: 12px;
	}

	.footer-cta .contact-item {
		padding: 18px;
	}

	.footer-bottom__inner {
		min-height: 220px;
	}

	.footer-bottom__logo {
		width: min(230px, 100%);
		height: 60px;
		object-position: center;
	}
}

@media (max-width: 380px) {
	.hero__content h1,
	.hero__content h2 {
		font-size: 2.15rem;
	}

	.hero__content h2.hero__title--long {
		font-size: clamp(1.3rem, 6vw, 1.55rem);
	}

	.hero__subtitle {
		font-size: 1rem;
	}

	.hero__text {
		-webkit-line-clamp: 3;
	}

	.team-card {
		grid-template-columns: 1fr;
	}

	.team-card > img {
		height: 330px;
		min-height: 0;
	}

	.gallery-grid {
		grid-auto-rows: 128px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.service-card,
	.team-card,
	.benefit-card,
	.gallery-grid img,
	.button {
		transition: none;
	}
}
