	/* ==========================================================================
	SAFA Trust — Global Styles (Mobile First)
	========================================================================== */

	/* --------------------------------------------------------------------------
	CSS Variables (Brand Colors)
	-------------------------------------------------------------------------- */
	:root {
		--color-primary-azure: #003349;
		--color-primary-green: #00816D;
		--color-white: #ffffff;
		--color-secondary-dark: #090909;
		--color-secondary-gray: #d1d1d1;
		--color-text-main: #505050;
		--color-bg-light: #E8E8E8;
		--color-bg-green-light: #DCEDEB;
		--header-height: 3.9375rem;
		--header-fade-height: 3.125rem;
		--hero-fade-height: 5rem;
		/* green-bg-4.webp intrinsic size — tile height must match for repeat seam fades */
		--page-bg-tile-height: calc(100vw * 941 / 1672);
		/* Слегка приглушает точечный паттерн на фонах */
		--pattern-bg-lighten: rgba(255, 255, 255, 0.42);
	}

	/* --------------------------------------------------------------------------
	Reset
	-------------------------------------------------------------------------- */
	*,
	*::before,
	*::after {
		box-sizing: border-box;
		margin: 0;
		padding: 0;
	}

	html {
		overflow-x: clip;
		scroll-behavior: smooth;
	}

	@media (prefers-reduced-motion: reduce) {
		html {
			scroll-behavior: auto;
		}

		.solutions-item,
		.solutions__items,
		.solutions-item__body,
		.calc-card__current-value,
		.calc-results__value span,
		.calc-results-summary__item strong,
		.calc-card__percent-badge {
			transition: none;
		}

		.solutions-item.active .solutions-item__body {
			animation: none;
		}

		.mobile-menu__backdrop,
		.mobile-menu__panel,
		.mobile-menu__panel-inner,
		.application-modal__backdrop,
		.application-modal__dialog {
			transition: none;
		}
	}

	/* --------------------------------------------------------------------------
	Base Typography
	-------------------------------------------------------------------------- */
	body {
		font-family: 'Inter', sans-serif;
		font-size: 0.875rem;
		font-weight: 400;
		color: var(--color-text-main);
		background-color: var(--color-white);
		background-image:
			linear-gradient(179.14deg, #FFFFFF 0.74%, rgba(255, 255, 255, 0) 7.96%),
			linear-gradient(180.1deg, rgba(255, 255, 255, 0) 39.29%, #FFFFFF 99.91%),
			linear-gradient(0deg, var(--pattern-bg-lighten), var(--pattern-bg-lighten)),
			url('../images/green-bg-4.webp');
		background-repeat: repeat-y;
		background-position: center top;
		background-size: 100% var(--page-bg-tile-height);
		line-height: 1.3;
		overflow-x: clip;
		width: 100%;
		max-width: 100%;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-weight: 700;
	}

h1 {
	font-size: 3.625rem;
	font-weight: 700;
	color: var(--color-primary-azure);
	line-height: 1.1;
	margin-bottom: 0.5em;
}

	h2 {
		font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.25rem);
		font-weight: 700;
		color: var(--color-primary-azure);
		line-height: 1;
		text-align: center;
		margin-bottom: 1em;
	}

	h3 {
		font-size: clamp(1.625rem, 1.45rem + 0.75vw, 1.875rem);
		font-weight: 700;
		color: var(--color-primary-green);
		line-height: 1.2;
		text-align: center;
		margin-bottom: 1em;
	}

	h4 {
		font-size: 1.375rem;
		font-weight: 700;
		color: var(--color-primary-azure);
		line-height: 1.2;
		margin-bottom: 0.5em;
	}

	h5 {
		font-size: 1.125rem;
		font-weight: 700;
		color: var(--color-primary-azure);
		line-height: 1.2;
		margin-bottom: 0.5em;
	}

	/* --------------------------------------------------------------------------
	Text Utilities
	-------------------------------------------------------------------------- */
	.text-small {
		font-size: 0.75rem;
		opacity: 0.7;
	}

	.text-link {
		color: var(--color-primary-green);
		text-decoration: underline;
	}

	.text-micro {
		font-size: 0.625rem;
		opacity: 0.7;
	}

	.text-italic {
		font-style: italic;
	}

	.font-bold {
		font-weight: 700;
	}

	.font-semibold {
		font-weight: 600;
	}

	/* --------------------------------------------------------------------------
	Layout
	-------------------------------------------------------------------------- */
	.container {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 20px;
	}

	.main-content {
		width: 100%;
		max-width: 100%;
		overflow-x: clip;
	}

	#solutions,
	#terms,
	#calculator,
	#process,
	#team,
	#contacts {
		scroll-margin-top: calc(var(--header-height) + 8px);
	}

	/* --------------------------------------------------------------------------
	Section backgrounds (stacked images, independent of content height)
	-------------------------------------------------------------------------- */
	.section-bg {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		max-width: 100%;
		overflow: hidden;
		pointer-events: none;
	}

	.section-bg__img {
		display: block;
		width: auto;
		max-width: 100%;
		height: auto;
	}

	@media (min-width: 1024px) {
		.section-bg {
			inset: 0;
			width: 100%;
			height: 100%;
		}

		.section-bg__img {
			width: 100%;
			height: 100%;
			max-width: none;
			object-fit: cover;
			object-position: center top;
		}
	}

	/* --------------------------------------------------------------------------
	Page background chunks (mobile, after hero)
	-------------------------------------------------------------------------- */
	.page-sections {
		position: relative;
		z-index: 2;
		width: 100%;
		max-width: 100%;
	}

	.page-sections__pre-calc,
	.page-sections__post-calc,
	.page-sections__pre-cta {
		position: relative;
		width: 100%;
		max-width: 100%;
	}

	.page-sections__pre-calc-inner,
	.page-sections__post-calc-inner,
	.page-sections__pre-cta-inner {
		position: relative;
		z-index: 1;
	}

	.page-bg {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 0;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		overflow: hidden;
		pointer-events: none;
	}

	.page-bg::after {
		content: '';
		position: absolute;
		inset: 0;
		z-index: 1;
		background: var(--pattern-bg-lighten);
		pointer-events: none;
	}

	.page-bg__chunk {
		width: 100%;
		flex-shrink: 0;
		overflow: hidden;
	}

	.page-bg__chunk--1,
	.page-bg__chunk--2,
	.page-bg__chunk--3,
	.page-bg__chunk--4,
	.page-bg__chunk--5,
	.page-bg__chunk--6,
	.page-bg__chunk--7 {
		background-repeat: no-repeat;
		background-position: center top;
		background-size: cover;
	}

	.page-bg__chunk--1,
	.page-bg__chunk--2 {
		height: 804px;
		flex-shrink: 0;
	}

	.page-bg__chunk--3 {
		height: 838px;
		flex-shrink: 0;
	}

	.page-bg__chunk--4,
	.page-bg__chunk--6,
	.page-bg__chunk--7 {
		flex: 1 1 auto;
		min-height: 0;
	}

	.page-bg__chunk--5 {
		height: 708px;
		flex-shrink: 0;
	}

	.page-bg__img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center top;
	}

	.page-sections__inner {
		position: relative;
		z-index: 1;
	}

	@media (min-width: 1024px) {
		.page-bg {
			display: none;
		}
	}

	/* --------------------------------------------------------------------------
	Buttons
	-------------------------------------------------------------------------- */
	.btn-primary,
	.btn-outline {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 16px 24px;
		border-radius: 12px;
		font-weight: 700;
		font-size: 1.125rem;
		line-height: 1.375rem;
		cursor: pointer;
		text-decoration: none;
		border: none;
		transition: all 0.3s ease;
		gap: 10px;
	}

	.btn__icon {
		display: block;
		flex-shrink: 0;
		width: 20px;
		height: 20px;
	}

	.btn-primary {
		background: var(--color-primary-green);
		color: var(--color-white);
	}

	.btn-outline {
		background: rgba(255, 255, 255, 0.6);
		border: 1px solid var(--color-primary-azure);
		color: var(--color-primary-azure);
		backdrop-filter: blur(4px);
	}

	/* --------------------------------------------------------------------------
	Header (Mobile First)
	-------------------------------------------------------------------------- */
	.site-header-wrap {
		position: relative;
		z-index: 100;
		height: var(--header-height);
	}

	.site-header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		max-width: 100%;
		height: var(--header-height);
		z-index: 100;
		background: var(--color-white);
	}

	.site-header__gradient {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		height: var(--header-fade-height);
		z-index: 1;
		background: linear-gradient(
			180deg,
			var(--color-white) 0%,
			rgba(255, 255, 255, 0.6) 50%,
			rgba(255, 255, 255, 0) 100%
		);
		pointer-events: none;
	}

	.site-header__inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 100%;
		min-width: 0;
		padding: 0 20px;
	}

	.site-header__logo {
		--logo-width: 80px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: var(--logo-width);
		flex-shrink: 0;
		text-decoration: none;
	}

	.site-header__logo img {
		display: block;
		width: 100%;
		height: auto;
	}

	.site-header__tagline {
		display: block;
		width: 100%;
		font-size: 0.475rem;
		font-weight: 500;
		color: var(--color-text-main);
		text-align: justify;
		text-align-last: justify;
		line-height: 1.15;
		white-space: nowrap;
	}

	.site-header__tagline::after {
		content: '';
		display: inline-block;
		width: 100%;
	}

	.site-header__nav {
		display: none;
	}

	.site-header__nav-list {
		display: flex;
		align-items: center;
		list-style: none;
	}

	.site-header__nav-link {
		color: var(--color-primary-azure);
		font-size: 1rem;
		font-weight: 500;
		text-decoration: none;
		transition: opacity 0.3s ease;
	}

	.site-header__nav-link:hover {
		opacity: 0.8;
	}

	.site-header__actions {
		display: flex;
		align-items: center;
		gap: 16px;
	}

	.site-header__phone-block {
		display: none;
		text-decoration: none;
		color: inherit;
	}

	.site-header__phone-info {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.site-header__phone-circle {
		display: flex;
		flex-shrink: 0;
		align-items: center;
		justify-content: center;
	}

	.site-header__phone-circle-icon {
		display: block;
		width: 100%;
		height: 100%;
	}

	.site-header__actions .btn-primary {
		padding: 8px 14px;
		min-height: 35px;
		border-radius: 8px;
		font-size: 0.875rem;
		line-height: 1.2;
		white-space: nowrap;
	}

	.site-header__phone,
	.burger-menu {
		display: flex;
		flex-shrink: 0;
		color: var(--color-primary-azure);
	}

	.site-header__phone {
		text-decoration: none;
	}

	.burger-menu {
		width: 36px;
		height: 36px;
		align-items: center;
		justify-content: center;
		padding: 0;
		background: transparent;
		border: none;
		cursor: pointer;
	}

	.site-header__phone-icon,
	.burger-menu__icon {
		display: block;
		width: 100%;
		height: 100%;
	}

	.burger-menu__icon--close {
		display: none;
		width: 20px;
		height: 20px;
	}

	.burger-menu[aria-expanded='true'] .burger-menu__icon--open {
		display: none;
	}

	.burger-menu[aria-expanded='true'] .burger-menu__icon--close {
		display: block;
	}

	.site-header__phone {
		width: 28px;
		height: 28px;
	}

	.mobile-menu {
		position: fixed;
		inset: 0;
		z-index: 200;
		visibility: hidden;
		pointer-events: none;
	}

	.mobile-menu.is-open {
		visibility: visible;
		pointer-events: auto;
	}

	.mobile-menu__backdrop {
		position: absolute;
		inset: 0;
		background: rgba(9, 9, 9, 0.45);
		opacity: 0;
		transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.mobile-menu.is-open .mobile-menu__backdrop {
		opacity: 1;
	}

	.mobile-menu.is-closing .mobile-menu__backdrop {
		opacity: 0;
	}

	.mobile-menu__panel {
		position: absolute;
		top: 0;
		right: 0;
		display: flex;
		flex-direction: column;
		width: min(100%, 320px);
		height: 100%;
		max-height: 100dvh;
		padding: calc(var(--header-height) + 12px) 20px 24px;
		box-sizing: border-box;
		background: var(--color-white);
		box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
		transform: translate3d(100%, 0, 0);
		transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
		overflow: hidden;
		contain: layout paint;
	}

	.mobile-menu.is-open .mobile-menu__panel {
		transform: translate3d(0, 0, 0);
	}

	.mobile-menu.is-closing .mobile-menu__panel {
		transform: translate3d(100%, 0, 0);
	}

	.mobile-menu__panel-inner {
		display: flex;
		flex: 1;
		flex-direction: column;
		min-height: 0;
		overflow-y: auto;
		opacity: 1;
		transition: opacity 0.2s ease;
	}

	.mobile-menu.is-closing .mobile-menu__panel-inner {
		opacity: 0;
		transition-duration: 0.12s;
	}

	.mobile-menu__head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 24px;
	}

	.mobile-menu__title {
		margin: 0;
		font-size: 1.125rem;
		font-weight: 700;
		color: var(--color-primary-azure);
	}

	.mobile-menu__close {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		padding: 0;
		border: 1px solid var(--color-secondary-gray);
		border-radius: 8px;
		background: var(--color-white);
		color: var(--color-primary-azure);
		cursor: pointer;
	}

	.mobile-menu__close-icon {
		display: block;
		width: 16px;
		height: 16px;
	}

	.mobile-menu__list {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.mobile-menu__item + .mobile-menu__item {
		border-top: 1px solid var(--color-secondary-gray);
	}

	.mobile-menu__link {
		display: block;
		padding: 16px 0;
		font-size: 1rem;
		font-weight: 600;
		line-height: 1.3;
		color: var(--color-primary-azure);
		text-decoration: none;
	}

	.mobile-menu__link:hover {
		color: var(--color-primary-green);
	}

	.mobile-menu__footer {
		margin-top: auto;
		padding-top: 24px;
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.mobile-menu__cta {
		width: 100%;
		transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	}

	.mobile-menu__phone {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 4px;
		padding: 12px;
		border-radius: 12px;
		background: var(--color-bg-green-light);
		text-decoration: none;
	}

	.mobile-menu__phone-number {
		font-size: 1.125rem;
		font-weight: 700;
		color: var(--color-primary-azure);
	}

	.mobile-menu__phone-schedule {
		font-size: 0.75rem;
		color: var(--color-text-main);
		opacity: 0.7;
	}

	body.mobile-menu-open,
	body.application-modal-open {
		overflow: hidden;
	}

	@media (min-width: 1024px) {
		.mobile-menu {
			display: none;
		}
	}

	/* --------------------------------------------------------------------------
	Hero (Mobile First)
	-------------------------------------------------------------------------- */
.hero {
	position: relative;
	z-index: 1;
	overflow-x: clip;
	overflow-y: visible;
	width: 100%;
	max-width: 100%;
	padding-top: 7.5rem;
	padding-bottom: 3.75rem;
	min-height: 800px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background-color: var(--color-bg-green-light);
	background-image: url('../images/hero-mob-bg.webp');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: calc(var(--hero-fade-height) * 2);
	z-index: 1;
	transform: translateY(50%);
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.6) 35%,
		var(--color-white) 50%,
		rgba(255, 255, 255, 0.6) 65%,
		rgba(255, 255, 255, 0) 100%
	);
	pointer-events: none;
}

.hero > .container {
	position: relative;
	z-index: 2;
}

.hero__title {
	margin-top: 0;
	margin-bottom: 0.5rem;
}

.hero__title-dot {
	color: var(--color-primary-green);
}

.hero__subtitle {
	margin-top: 0;
	margin-bottom: 2.5rem;
	font-size: 1.625rem;
	line-height: 1.2;
}

.hero__cards {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
	width: 100%;
	margin: 0 auto 2.5rem;
	list-style: none;
}

.hero__card {
	display: flex;
	align-items: center;
	width: 10.875rem;
	height: 4rem;
	flex-shrink: 0;
	background: var(--color-white);
	border: 1px solid var(--color-secondary-gray);
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 12px;
	padding: 0.625rem;
	gap: 0.625rem;
	text-align: left;
}

.hero__card-icon {
	display: block;
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
}

.hero__card-text {
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.1;
	color: var(--color-primary-azure);
}

.hero__card-text-first {
	display: block;
}

	.hero__actions {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 16px;
		width: 100%;
		max-width: 360px;
		margin-inline: auto;
	}

	.hero__actions .btn-primary,
	.hero__actions .btn-outline {
		width: 100%;
	}

	.hero__btn-text--desktop {
		display: none;
	}

@media (min-width: 768px) {
	h1 {
		font-size: clamp(58px, 5vw, 86px);
	}

	.hero {
		min-height: 720px;
		height: auto;
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.hero__title {
		margin-bottom: 0.5rem;
	}

	.hero__cards {
		flex-direction: row;
		flex-wrap: nowrap;
		gap: clamp(10px, 2vw, 24px);
	}

	.hero__card {
		flex: 0 0 clamp(174px, 18vw, 243px);
		width: clamp(174px, 18vw, 243px);
		height: clamp(64px, 6vw, 96px);
		gap: clamp(10px, 1vw, 16px);
		padding: clamp(10px, 1vw, 16px);
	}

	.hero__card-icon {
		width: clamp(40px, 4vw, 56px);
		height: clamp(40px, 4vw, 56px);
	}

	.hero__card-text {
		font-size: clamp(14px, 1.2vw, 18px);
	}

	.hero__actions {
		flex-direction: row;
		justify-content: center;
		width: auto;
		max-width: none;
		gap: clamp(16px, 2vw, 20px);
	}

	.hero__actions .btn-primary,
	.hero__actions .btn-outline {
		width: auto;
	}

	.hero__actions .btn-primary {
		min-width: clamp(170px, 15vw, 201px);
	}

	.hero__actions .btn-outline {
		min-width: clamp(220px, 20vw, 268px);
	}

	.hero__btn-text--mobile {
		display: none;
	}

	.hero__btn-text--desktop {
		display: inline;
	}
}

@media (min-width: 768px) {
	.site-header__gradient {
		display: none;
	}
}

@media (min-width: 1024px) {
	.hero {
		z-index: 3;
	}

	.hero::after {
		height: calc(var(--hero-fade-height) * 2.4);
	}

	.site-header-wrap {
		height: 7.5rem;
	}

	.site-header {
		height: 7.5rem;
	}

	.hero {
		background-image: url('../images/hero-desktop-bg.webp');
		background-size: cover;
		background-position: center bottom;
		background-repeat: no-repeat;
	}

	.site-header__inner {
		padding-inline: clamp(20px, 2vw, 40px);
	}

	.site-header__logo {
		--logo-width: 150px;
	}

	.site-header__tagline {
		font-size: 0.87rem;
		font-weight: 500;
	}

	.site-header__nav {
		display: block;
		flex: 1;
	}

	.site-header__nav-list {
		justify-content: center;
		gap: clamp(16px, 2vw, 30px);
	}

	.site-header__nav-link {
		font-size: 1rem;
		font-weight: 500;
		white-space: nowrap;
	}

	.burger-menu,
	.site-header__phone {
		display: none;
	}

	.site-header__actions {
		gap: clamp(16px, 2vw, 24px);
		flex-shrink: 0;
	}

	.site-header__actions .btn-primary {
		width: clamp(160px, 15vw, 201px);
		height: clamp(40px, 4vw, 50px);
		min-height: unset;
		padding: 0 1.5rem;
		border-radius: 0.75rem;
		font-size: clamp(14px, 1.2vw, 18px);
		line-height: 1.2;
	}

	.site-header__phone-block {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		flex-shrink: 0;
	}

	.site-header__phone-circle {
		width: 2.25rem;
		height: 2.25rem;
		border-radius: 50%;
		overflow: hidden;
	}

	.site-header__phone-number {
		color: var(--color-primary-azure);
		white-space: nowrap;
	}

	.site-header__phone-schedule {
		color: var(--color-text-main);
		opacity: 0.7;
		white-space: nowrap;
	}
}

/* --------------------------------------------------------------------------
Footer Typography (Figma)
-------------------------------------------------------------------------- */
.site-footer__logo-subtitle,
.site-header__phone-schedule,
.site-footer__phone-schedule,
.site-footer__address-text,
.site-footer__hours-text,
.site-footer__legal-text {
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1;
}

.site-header__phone-number,
.site-footer__phone-number,
.site-footer__hours-title,
.site-footer__legal-title {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1;
}

.site-footer__email-link,
.footer-nav-link {
	font-family: 'Inter', sans-serif;
	font-size: 1.125rem;
	font-weight: 400;
	font-variation-settings: 'wght' 400;
	font-synthesis: none;
	line-height: 1;
}

/* --------------------------------------------------------------------------
Footer (Mobile First)
-------------------------------------------------------------------------- */
.site-footer {
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
	background: var(--color-primary-azure);
	border-radius: 32px 32px 0 0;
	padding: 40px 0;
	color: var(--color-white);
	font-family: 'Inter', sans-serif;
}

.site-footer__container {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.site-footer__logo {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 24px;
	text-decoration: none;
}

.site-footer__logo-img {
	display: block;
	max-width: 100px;
	width: 100%;
	height: auto;
}

.site-footer__logo-subtitle {
	margin-top: 0.375rem;
	color: var(--color-white);
}

.site-footer__title {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--color-primary-green);
	line-height: 1.2;
	text-align: left;
}

.site-footer__nav-list {
	list-style: none;
}

.site-footer__nav-item:last-child .footer-nav-link {
	margin-bottom: 0;
}

.site-footer__info-box {
	max-width: 17.75rem;
	width: 100%;
}

.site-footer__info-box .footer-item {
	margin-bottom: 0;
}

.site-footer__info-box .site-footer__divider {
	margin: 20px 0;
}

.site-footer__divider {
	border: none;
	height: 2px;
	background: rgba(255, 255, 255, 0.3);
	margin: 10px 0;
}

.footer-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 20px;
	text-align: left;
	text-decoration: none;
	color: inherit;
}

.footer-item:last-child {
	margin-bottom: 0;
}

.footer-icon-circle {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--color-primary-green);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: visible;
	color: var(--color-white);
}

.footer-item__icon,
.footer-nav-link__icon {
	display: block;
	flex-shrink: 0;
}

.footer-item__icon {
	width: 20px;
	height: 20px;
}

.footer-icon-circle svg path {
	fill: currentColor;
}

.footer-icon-circle svg path[stroke] {
	fill: none;
	stroke: currentColor;
}

.footer-item__content {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.site-footer__phone-number,
.site-footer__hours-title,
.site-footer__legal-title {
	color: var(--color-white);
}

.site-footer__phone-schedule,
.site-footer__address-text,
.site-footer__hours-text,
.site-footer__legal-text {
	color: rgba(255, 255, 255, 0.6);
}

.site-footer__address-text {
	margin: 0;
}

.site-footer__email-link {
	color: var(--color-white);
}

.footer-nav-link {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-white);
	text-decoration: none;
	margin-bottom: 12px;
}

.footer-nav-link__icon {
	width: 24px;
	height: 24px;
}

@media (min-width: 1024px) {
	.site-footer__container {
		flex-direction: row;
		align-items: stretch;
		gap: 40px;
	}

	.site-footer__col-brand,
	.site-footer__col-nav,
	.site-footer__col-info {
		flex: 1;
		min-width: 0;
	}

	.site-footer__container > .site-footer__divider {
		width: 2px;
		height: auto;
		margin: 0;
		flex-shrink: 0;
		align-self: stretch;
	}

	.site-footer__logo {
		margin-bottom: 32px;
	}

	.site-footer__logo-img {
		max-width: 120px;
	}
}

/* --------------------------------------------------------------------------
Comparison (Mobile First)
-------------------------------------------------------------------------- */
.comparison {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
	padding: 60px 0;
	background-color: transparent;
}

.comparison::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(179.14deg, #FFFFFF 0.74%, rgba(255, 255, 255, 0) 7.96%),
		linear-gradient(180.1deg, rgba(255, 255, 255, 0) 39.29%, #FFFFFF 99.91%);
}

.comparison .section-bg {
	z-index: 0;
}

.comparison .section-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: var(--pattern-bg-lighten);
	pointer-events: none;
}

@media (max-width: 1023px) {
	.comparison .section-bg {
		display: none;
	}
}

@media (min-width: 1024px) {
	.comparison {
		background-color: transparent;
	}
}

.comparison__container {
	position: relative;
	z-index: 2;
}

.comparison__title {
	margin-top: 0;
	margin-bottom: 0.5em;
	font-size: clamp(28px, 3vw + 1rem, 48px);
	text-align: center;
	color: var(--color-primary-azure);
}

.comparison__title-br {
	display: none;
}

.comparison__subtitle {
	max-width: 22.5rem;
	margin: 0 auto 2.5rem;
	font-size: 0.75rem;
	color: var(--color-text-main);
	opacity: 0.7;
	text-align: center;
	line-height: 1.3;
}

.comparison__cards {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.comparison-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	padding: 24px 20px;
	border-radius: 24px;
}

.comparison-card--standard {
	background: var(--color-bg-light);
	border: 1px solid var(--color-secondary-gray);
}

.comparison-card--safa {
	background: #fefdfd;
	border: 1px solid var(--color-primary-green);
	box-shadow: 0 4px 10px rgba(0, 129, 110, 0.25);
}

.comparison-card__title {
	margin: 0;
	font-size: 1.375rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: left;
}

.comparison-card--standard .comparison-card__title {
	color: var(--color-text-main);
}

.comparison-card--safa .comparison-card__title {
	color: var(--color-primary-azure);
}

.comparison-card--safa .comparison-card__title span {
	color: var(--color-primary-green);
}

.comparison-card__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
}

.comparison-card__item {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 4.25rem;
	padding: 16px;
	border-radius: 12px;
	background: var(--color-white);
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: left;
}

.comparison-card--standard .comparison-card__item {
	border: 1px solid var(--color-secondary-gray);
	color: var(--color-text-main);
}

.comparison-card--safa .comparison-card__item {
	border: 1px solid var(--color-primary-green);
	color: var(--color-primary-azure);
}

.comparison-card__icon-circle {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: var(--color-white);
}

.comparison-card--standard .comparison-card__icon-circle {
	background: #d9d9d9;
}

.comparison-card--safa .comparison-card__icon-circle {
	background: var(--color-primary-green);
}

.comparison-card__icon {
	display: block;
	width: 16px;
	height: 16px;
}

.comparison__divider {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	width: 100%;
	flex-shrink: 0;
	align-self: center;
}

.comparison__divider-line {
	height: 2px;
	flex: 1;
	min-width: 16px;
	background: var(--color-secondary-gray);
}

.comparison__divider-dot {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #d9d9d9;
}

@media (min-width: 768px) {
	.comparison__title {
		font-size: clamp(28px, 3vw + 1rem, 48px);
	}

	.comparison__title-br {
		display: block;
	}

	.comparison__subtitle {
		font-size: clamp(0.75rem, 0.5vw + 0.6rem, 1.125rem);
		max-width: clamp(22.5rem, 50vw, 38.75rem);
	}

	.comparison__cards {
		flex-direction: row;
		align-items: stretch;
		justify-content: center;
		gap: 24px;
	}

	.comparison-card {
		width: clamp(340px, 40vw, 560px);
		flex-grow: 0;
		flex-shrink: 1;
		flex-basis: clamp(340px, 40vw, 560px);
	}

	.comparison-card__title {
		font-size: clamp(1.375rem, 0.5vw + 1.2rem, 1.75rem);
	}

	.comparison-card__item {
		width: 100%;
		max-width: 516px;
		min-height: clamp(68px, 6vw, 76px);
	}

	.comparison-card__text {
		font-size: clamp(0.875rem, 0.5vw + 0.75rem, 1.125rem);
		font-weight: 600;
	}

	.comparison__divider {
		flex-direction: column;
		width: auto;
		height: 192px;
		align-self: center;
		flex-shrink: 0;
	}

	.comparison__divider-line {
		width: 2px;
		height: auto;
		flex: 1;
		min-width: 0;
		min-height: 16px;
	}
}

/* --------------------------------------------------------------------------
Solutions (Mobile First)
-------------------------------------------------------------------------- */
.solutions {
	position: relative;
	z-index: 0;
	padding: 0;
	background-color: transparent;
}

.solutions__container {
	border-radius: 24px;
	overflow: hidden;
	background-image: linear-gradient(0deg, var(--pattern-bg-lighten), var(--pattern-bg-lighten));
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 32px 20px;
}

.solutions__container.lazy-bg-loaded {
	background-image:
		linear-gradient(0deg, var(--pattern-bg-lighten), var(--pattern-bg-lighten)),
		var(--lazy-bg-url);
}

.solutions__title {
	margin-top: 0;
	margin-bottom: 1.5rem;
	text-align: center;
	color: var(--color-primary-azure);
}

.solutions__items {
	position: relative;
	z-index: 0;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	transition: min-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solutions-item {
	position: relative;
	display: grid;
	grid-template-rows: auto 0fr;
	overflow: hidden;
	border: 1px solid var(--color-primary-green);
	border-radius: 12px;
	background: var(--color-bg-green-light);
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	transition:
		grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.3s ease,
		border-color 0.3s ease;
}

.solutions-item.active {
	grid-template-rows: auto 1fr;
}

.solutions-item.active .solutions-item__arrow-circle {
	display: none;
}

.solutions-item + .solutions-item {
	margin-top: -16px;
}

.solutions-item__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 86px;
	padding: 0 24px;
	cursor: pointer;
}

.solutions-item__info {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.solutions-item__icon {
	display: block;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
}

.solutions-item__name {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-primary-azure);
}

.solutions-item__text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.solutions-item__desc {
	display: none;
}

.solutions-item__arrow-circle {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
}

.solutions-item__arrow {
	display: block;
	width: 40px;
	height: 40px;
}

.solutions-item__body {
	min-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.solutions-item.active .solutions-item__body {
	opacity: 1;
}

.solutions-content {
	display: flex;
	flex-direction: column;
	padding: 12px 24px 32px;
	text-align: left;
}

.solutions-content > p:not(.solutions-content__note) {
	margin: 0 0 16px;
	font-size: 12px;
	line-height: 1.3;
	color: var(--color-primary-azure);
	opacity: 0.7;
}

.solutions-content > p:not(.solutions-content__note) strong {
	font-weight: 700;
}

.solutions-content__subhead {
	margin: 0 0 6px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-primary-azure);
}

.solutions-features {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 8px;
	margin: 8px 0 16px;
}

.solutions-feature {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	min-width: 0;
	text-align: center;
}

.solutions-feature__circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 8px;
}

.solutions-feature__icon {
	display: block;
	width: 40px;
	height: 40px;
}

.solutions-feature__text {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-primary-azure);
	opacity: 0.7;
}

.solutions-content__note {
	margin: 16px 0 0;
	font-size: 0.875rem;
	font-weight: 700;
	font-style: italic;
	color: var(--color-primary-green);
	text-align: center;
}

.solutions-content__actions {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
}

.solutions-content__actions .btn-primary,
.solutions-content__actions .btn-outline {
	flex: 1;
	min-width: 0;
	width: auto;
	height: 50px;
	padding: 12px 10px;
	font-size: 14px;
	line-height: 1.2;
	white-space: nowrap;
}

.solutions-content__actions .btn-primary .btn__icon {
	width: 32px;
	height: 32px;
}

	.solutions-content__actions .btn-primary .btn__icon path {
		fill: var(--color-white);
	}

/* --------------------------------------------------------------------------
Calculator
-------------------------------------------------------------------------- */
.calculator {
	padding: 60px 0;
	background-color: var(--color-primary-azure);
	background-image: linear-gradient(#00000033, #00000033);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow-x: clip;
}

.calculator.lazy-bg-loaded {
	background-image:
		linear-gradient(#00000033, #00000033),
		var(--lazy-bg-url);
}

.calculator__title {
	margin-bottom: 40px;
	color: var(--color-white);
	text-align: center;
}

.calc-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.calc-card {
	box-sizing: border-box;
	padding: 24px 20px;
	border-radius: 24px;
}

.calc-card--inputs {
	background: var(--color-white);
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

.calc-tabs__label {
	margin: 0 0 16px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-primary-azure);
}

.calc-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 6px;
	margin-bottom: 24px;
}

.calc-tab {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	height: 26px;
	padding: 4px 6px;
	border: 1px solid var(--color-secondary-gray);
	border-radius: 6px;
	background: var(--color-white);
	font-family: inherit;
	white-space: nowrap;
	cursor: pointer;
	transition:
		background-color 0.3s ease,
		border-color 0.3s ease,
		color 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.2s ease;
}

.calc-tab__text {
	font-size: 10px;
	font-weight: 600;
	line-height: 12px;
	color: var(--color-primary-azure);
	white-space: nowrap;
}

.calc-tab__icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
}

.calc-tab__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.calc-tab__icon circle {
	display: none;
}

.calc-tab__icon path {
	fill: var(--color-primary-azure);
}

.calc-tab.active {
	border-color: var(--color-primary-green);
}

.calc-tab.active .calc-tab__icon path {
	fill: var(--color-primary-green);
}

.calc-card__slider-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6px;
}

.calc-card__label {
	font-size: 14px;
	font-weight: 700;
	color: var(--color-primary-azure);
}

.calc-card__current-value {
	font-size: 14px;
	font-weight: 400;
	color: var(--color-primary-azure);
	white-space: nowrap;
}

.calc-card__slider-bounds {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 4px;
	margin-bottom: 16px;
}

.calc-card__slider-bounds span {
	font-size: 14px;
	font-weight: 400;
	color: var(--color-text-main);
	opacity: 0.7;
}

.calc-card__deposit-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.calc-card__deposit-row.is-hidden {
	display: none;
}

.calc-card__deposit-row.is-fixed .calc-card__deposit-controls {
	display: none;
}

.calc-card__collateral-note {
	margin: 0 0 16px;
	font-size: 14px;
	font-style: italic;
	line-height: 1.4;
	color: var(--color-text-main);
	opacity: 0.7;
}

.calc-results-summary__item.is-hidden {
	display: none;
}

.calc-card__deposit-main {
	flex: 1;
	min-width: 0;
}

.calc-card__deposit-main .calc-card__slider-header {
	margin-bottom: 6px;
	gap: 4px;
	min-width: 0;
}

.calc-card__deposit-main .calc-card__label {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 12px;
	line-height: 1;
	white-space: nowrap;
}

.calc-card__deposit-main .calc-card__current-value {
	flex-shrink: 0;
	font-size: 12px;
	line-height: 1;
}

.calc-card__deposit-main .calc-card__slider-bounds {
	margin-bottom: 0;
}

.calc-card__deposit-summary {
	min-width: 0;
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	color: var(--color-text-main);
	opacity: 0.7;
	white-space: nowrap;
}

.calc-card__percent-badge {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	align-self: center;
	min-width: 46px;
	height: 61px;
	padding: 0 10px;
	border: 1px solid var(--color-secondary-gray);
	border-radius: 12px;
	background: var(--color-white);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: var(--color-primary-azure);
}

.calc-card__current-value,
.calc-results__value span,
.calc-results-summary__item strong,
.calc-card__percent-badge {
	transition: opacity 0.25s ease;
}

.calc-card__current-value.is-fading,
.calc-results__value span.is-fading,
.calc-results-summary__item strong.is-fading,
.calc-card__percent-badge.is-fading {
	opacity: 0.45;
}

.calc-range {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 4px;
	border-radius: 2px;
	background: var(--color-secondary-gray);
	outline: none;
}

.calc-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border: 1px solid var(--color-primary-azure);
	border-radius: 50%;
	background: var(--color-white);
	cursor: pointer;
}

.calc-range::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border: 1px solid var(--color-primary-azure);
	border-radius: 50%;
	background: var(--color-white);
	cursor: pointer;
}

.calc-range::-moz-range-track {
	height: 4px;
	border-radius: 2px;
	background: transparent;
}

.calc-card__disclaimer {
	margin: 12px 0 0;
	font-size: 12px;
	font-style: italic;
	line-height: 1.4;
	color: var(--color-text-main);
	opacity: 0.7;
}

.calc-card--results {
	display: flex;
	flex-direction: column;
	background: linear-gradient(145.89deg, #00816e 0%, #005e50 50%, #01574a 100%);
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
	color: var(--color-white);
}

.calc-results__label {
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
}

.calc-results__value {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-white);
}

.calc-results__value .text-small {
	font-size: 14px;
	font-weight: 400;
	color: var(--color-white);
}

.calc-results__divider {
	width: 100%;
	height: 1px;
	margin: 12px 0;
	border: 0;
	background: rgba(255, 255, 255, 0.35);
}

.calc-results-summary {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 16px;
}

.calc-results-summary__item--term {
	flex: 1 1 0;
	min-width: 0;
	max-width: 50%;
	text-align: left;
}

.calc-results-summary__item--deposit {
	flex: 1 1 0;
	min-width: 0;
	max-width: 50%;
	text-align: left;
}

.calc-results-summary__label {
	display: block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.8);
}

.calc-results-summary__item strong {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	font-weight: 700;
	color: var(--color-white);
	line-height: 1.3;
	word-break: break-word;
}

.calc-results__actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
	margin-top: auto;
}

.calc-card--results .calc-results__actions .btn-primary,
.calc-card--results .calc-results__actions .btn-outline {
	width: 100%;
	min-height: 39px;
	height: auto;
	padding: 8px 16px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	white-space: normal;
	text-align: center;
}

.calc-card--results .calc-results__actions .btn-primary {
	background: var(--color-white);
	color: var(--color-primary-green);
}

.calc-card--results .calc-results__actions .btn-outline {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.8);
	color: var(--color-white);
	backdrop-filter: none;
}

.calc-results-secure {
	display: flex;
	justify-content: center;
	margin: 8px 0 0;
}

.calc-results-secure__inner {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	font-size: 10px;
	font-weight: 400;
	line-height: 12px;
	color: rgba(255, 255, 255, 0.7);
}

.calc-results-secure__row {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.calc-results-secure__row--sub {
	padding-left: 0;
}

.calc-results-secure__icon {
	display: block;
	flex-shrink: 0;
	width: 12px;
	height: 12px;
	color: var(--color-white);
}

.calc-results-secure__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

/* --------------------------------------------------------------------------
Terms
-------------------------------------------------------------------------- */
.terms {
	padding: 60px 0;
	background-color: var(--color-white);
}

@media (max-width: 1023px) {
	.terms {
		background-color: transparent;
		background-image: none;
	}
}

@media (min-width: 1024px) {
	.terms.lazy-bg-loaded {
		background-image:
			linear-gradient(0deg, var(--pattern-bg-lighten), var(--pattern-bg-lighten)),
			var(--lazy-bg-url);
		background-repeat: no-repeat;
		background-position: center top;
		background-size: cover;
	}
}

.terms__title {
	margin-bottom: 40px;
	text-align: center;
	color: var(--color-primary-azure);
}

.terms__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.terms-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 32px 20px;
	border: 1px solid rgba(0, 51, 73, 0.1);
	border-radius: 24px;
	background: var(--color-white);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
	text-align: center;
}

.terms-card__value {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	margin: 0 0 12px;
	font-size: 58px;
	font-weight: 700;
	line-height: 1;
	color: var(--color-primary-green);
}

.terms-card__title {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 700;
	color: var(--color-primary-azure);
}

.terms-card .text-small {
	margin: 0;
	font-size: 14px;
	color: var(--color-text-main);
	opacity: 0.85;
}

.terms-card .text-link {
	display: block;
	margin-bottom: 4px;
	color: var(--color-primary-green);
	text-decoration: underline;
}

.terms__note {
	margin: 40px 0 0;
	font-size: 14px;
	font-style: italic;
	text-align: center;
	opacity: 0.7;
}

/* --------------------------------------------------------------------------
CTA
-------------------------------------------------------------------------- */
.cta {
	padding: 60px 0;
	background-color: var(--color-white);
}

.cta__bg {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	width: 100%;
	min-height: 591px;
	margin: 0 auto;
	padding: clamp(56px, 8vw, 72px) clamp(16px, 4vw, 24px) clamp(24px, 5vw, 40px);
	overflow: hidden;
	border-radius: 32px;
	background-color: var(--color-white);
	background-image: linear-gradient(0deg, var(--pattern-bg-lighten), var(--pattern-bg-lighten));
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.cta__bg.lazy-bg-loaded {
	background-image:
		linear-gradient(0deg, var(--pattern-bg-lighten), var(--pattern-bg-lighten)),
		var(--lazy-bg-url);
}

.cta__intro {
	display: grid;
	grid-template-columns: minmax(0, max-content);
	justify-content: center;
	width: 100%;
	max-width: 100%;
	margin: 0 auto 40px;
	text-align: center;
}

.cta__title,
.cta__subtitle,
.cta__desc {
	text-align: center;
}

.cta__title {
	justify-self: center;
	width: max-content;
	max-width: 100%;
	margin-bottom: 0.5em;
	font-size: 1.625rem;
	color: var(--color-primary-azure);
}

.cta__subtitle {
	width: 0;
	min-width: 100%;
	max-width: 100%;
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--color-primary-azure);
	opacity: 0.8;
}

.cta__desc {
	width: 0;
	min-width: 100%;
	max-width: 100%;
	margin: 0;
	font-size: 12px;
	color: var(--color-text-main);
	opacity: 0.7;
}

.cta__card {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 32px 20px;
	border-radius: 24px;
	background: var(--color-white);
	box-shadow: 4px 8px 8px rgba(0, 0, 0, 0.25);
}

.cta__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	width: 100%;
}

.cta__actions .btn-primary,
.cta__actions .btn-outline {
	width: auto;
}

.cta__actions .btn__icon {
	width: 32px;
	height: 32px;
}

.cta__phone-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
}

.cta__phone-wrap hr {
	flex: 1;
	margin: 0;
	border: none;
	border-top: 1px solid var(--color-secondary-gray);
}

.cta__phone {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}

.cta__phone-icon {
	display: block;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
}

.cta__phone .site-header__phone-number {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-primary-azure);
}

.cta__features {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: center;
	width: max-content;
	max-width: 100%;
	gap: 16px;
	margin: -8px auto 0;
	padding: 0;
	list-style: none;
}

.cta__feature {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	font-size: 18px;
	line-height: 18px;
	color: var(--color-text-main);
	opacity: 0.7;
}

.cta__feature-icon {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border: 1px solid var(--color-primary-green);
	border-radius: 50%;
	color: var(--color-primary-green);
}

.cta__feature-icon-svg {
	display: block;
	width: 12px;
	height: 12px;
}

/* --------------------------------------------------------------------------
Process
-------------------------------------------------------------------------- */
.process {
	padding: 60px 0;
	background: var(--color-white);
}

@media (max-width: 1023px) {
	.process {
		background-color: transparent;
		background-image: none;
	}
}

@media (min-width: 1024px) {
	.process.lazy-bg-loaded {
		background-color: var(--color-white);
		background-image:
			linear-gradient(0deg, var(--pattern-bg-lighten), var(--pattern-bg-lighten)),
			var(--lazy-bg-url);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}
}

.process__title {
	margin-bottom: 8px;
	color: var(--color-primary-azure);
	text-align: center;
}

.process__subtitle {
	max-width: 286px;
	margin: 0 auto 40px;
	font-size: 12px;
	line-height: 1.3;
	color: var(--color-text-main);
	text-align: center;
	opacity: 0.7;
}

.process__grid {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.process-card {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: 100%;
	max-width: 360px;
	padding: 32px 20px;
	box-sizing: border-box;
	overflow: visible;
	text-align: center;
	background: var(--color-white);
	border-radius: 24px;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

.process-card:nth-child(1) {
	z-index: 5;
}

.process-card:nth-child(2) {
	z-index: 4;
}

.process-card:nth-child(3) {
	z-index: 3;
}

.process-card:nth-child(4) {
	z-index: 2;
}

.process-card:nth-child(5) {
	z-index: 1;
}

.process-card__title {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	color: var(--color-primary-azure);
}

.process-card__number {
	margin: 0;
	font-size: 58px;
	font-weight: 700;
	line-height: 1;
	color: var(--color-primary-green);
}

.process-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(0, 129, 110, 0.2);
	color: var(--color-primary-green);
}

.process-card__icon svg {
	display: block;
	width: auto;
	height: auto;
	max-width: 48px;
	max-height: 48px;
}

.process-card__icon svg path {
	fill: currentColor;
}

.process-card__divider {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--color-secondary-gray);
}

.process-card__desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.3;
	color: var(--color-text-main);
	opacity: 0.7;
}

.process-card__link {
	color: var(--color-primary-green);
	text-decoration: underline;
}

.process-card__arrow {
	position: absolute;
	z-index: 2;
	left: 50%;
	bottom: -16px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	pointer-events: none;
	transform: translateX(-50%) rotate(90deg);
}

.process-card:last-child .process-card__arrow {
	display: none;
}

.process__arrow-icon {
	display: block;
	width: 42px;
	height: 15px;
	flex-shrink: 0;
	color: var(--color-primary-green);
}

.process__arrow-icon path {
	fill: currentColor;
}

/* --------------------------------------------------------------------------
Stats & Team shared background
-------------------------------------------------------------------------- */
.stats-team {
	background-color: var(--color-white);
	background-image: linear-gradient(294.08deg, rgba(255, 255, 255, 0.9) 29.87%, rgba(255, 255, 255, 0.45) 93%);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.stats-team.lazy-bg-loaded {
	background-image:
		linear-gradient(294.08deg, rgba(255, 255, 255, 0.9) 29.87%, rgba(255, 255, 255, 0.45) 93%),
		var(--lazy-bg-url);
}

/* --------------------------------------------------------------------------
Stats
-------------------------------------------------------------------------- */
.stats {
	position: relative;
	padding: 60px 0 0;
	background: none;
}

.stats__container {
	position: relative;
	z-index: 1;
}

.stats__title {
	margin-bottom: 40px;
	color: var(--color-primary-azure);
	text-align: center;
}

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

.stats-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px;
	text-align: left;
	background: var(--color-white);
	border-radius: 24px;
	box-shadow: 4px 8px 8px rgba(0, 0, 0, 0.25);
}

.stats-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border: 1px solid var(--color-primary-green);
	border-radius: 50%;
	color: var(--color-primary-green);
}

.stats-card__icon svg {
	display: block;
	width: 48px;
	height: 48px;
}

.stats-card__icon svg path {
	fill: currentColor;
}

.stats-card__text {
	display: flex;
	flex-direction: column;
	min-width: 0;
	line-height: 1.2;
}

.stats-card__number {
	font-size: 32px;
	font-weight: 700;
	color: var(--color-primary-green);
}

.stats-card__title {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-primary-azure);
}

.stats-card__title--green {
	color: var(--color-primary-green);
}

.stats-card__desc {
	margin-top: 4px;
	font-size: 13px;
	color: var(--color-text-main);
	opacity: 0.7;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.stats-card__title,
	.stats-card__title--green,
	.stats-card__desc {
		white-space: normal;
	}

	.stats-card__title--green {
		font-size: 16px;
		line-height: 1.2;
	}

	.stats-card__desc {
		font-size: 12px;
		line-height: 1.3;
	}
}

/* --------------------------------------------------------------------------
Team
-------------------------------------------------------------------------- */
.team-block {
	padding: 40px 0 60px;
	background: none;
}

.team-block__wrapper {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.team-block__title,
.team-block__right-title {
	color: var(--color-primary-azure);
	text-align: center;
}

.team-block__title {
	margin-bottom: 24px;
}

.team-block__right {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.team-block__about {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	margin-bottom: 24px;
}

.team-block__right-title {
	width: fit-content;
	max-width: 100%;
	margin-bottom: 24px;
	color: var(--color-primary-green);
}

.team-block__about-text {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	max-width: var(--team-about-title-width, 100%);
	min-width: 0;
	text-align: center;
}

.team-block__about-text p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-text-main);
	opacity: 0.7;
}

.team-slide {
	display: flex;
	flex-direction: column;
	width: 224px;
	height: 330px;
	overflow: hidden;
	background: var(--color-white);
	border-radius: 24px;
	box-shadow: 4px 8px 8px rgba(0, 0, 0, 0.15);
}

.team-slide__photo {
	width: 100%;
	height: 233px;
	object-fit: cover;
}

.team-slide__info {
	padding: 16px;
	text-align: left;
}

.team-slide__name {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-primary-azure);
}

.team-slide__role {
	font-size: 14px;
	color: var(--color-text-main);
	opacity: 0.7;
}

.team-pagination {
	position: static;
	margin-top: 24px;
	display: flex;
	justify-content: center;
	gap: 6px;
}

.team-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: var(--color-primary-green);
	opacity: 0.4;
	margin: 0 !important;
}

.team-pagination .swiper-pagination-bullet-active {
	opacity: 1;
}

.team-block__docs {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.btn-doc {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto 12px;
	padding: 16px 24px;
	background: var(--color-white);
	border: 1px solid var(--color-primary-azure);
	border-radius: 12px;
	color: var(--color-primary-azure);
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
}

.btn-doc:last-child {
	margin-bottom: 0;
}

.btn-doc svg {
	display: block;
	flex-shrink: 0;
	width: 32px;
	height: auto;
}

/* --------------------------------------------------------------------------
Contacts
-------------------------------------------------------------------------- */
.contacts {
	padding: 60px 0;
}

.contacts__title {
	margin-bottom: 40px;
}

.contacts__wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
}

.contacts-info,
.contacts-map {
	background: var(--color-white);
	border-radius: 24px;
	box-shadow: 4px 8px 8px rgba(0, 0, 0, 0.25);
}

.contacts-info {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 32px 20px;
}

.contacts-info__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding-bottom: 24px;
	border-bottom: 2px solid var(--color-secondary-gray);
}

.contacts-info__item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.contacts-info__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border: 1px solid var(--color-primary-green);
	border-radius: 50%;
	color: var(--color-primary-green);
}

.contacts-info__icon-svg {
	display: block;
	width: 32px;
	height: 32px;
}

.contacts-info__icon-svg--envelope {
	width: 44px;
	height: 44px;
}

.contacts-info__icon svg path {
	fill: currentColor;
}

.contacts-info__icon svg path[stroke] {
	fill: none;
	stroke: currentColor;
}

.contacts-info__text {
	display: flex;
	flex-direction: column;
}

.contacts-info__title {
	margin-bottom: 4px;
}

.contacts-info__desc {
	color: var(--color-text-main);
	opacity: 0.7;
	font-size: 14px;
	text-decoration: none;
}

.contacts-map {
	height: 360px;
	padding: 12px;
	box-sizing: border-box;
	min-width: 0;
	overflow: hidden;
}

.contacts-map__canvas {
	width: 100%;
	max-width: 100%;
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
	background: #d9d9d9;
}

.gallery-contacts__bg {
	display: none;
}

/* --------------------------------------------------------------------------
Gallery
-------------------------------------------------------------------------- */
.gallery {
	padding: 60px 0;
	background-color: var(--color-white);
}

@media (max-width: 1023px) {
	.gallery-contacts__bg {
		display: none;
	}

	.gallery {
		background-color: transparent;
	}
}

.gallery__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.gallery__title {
	margin-bottom: 0;
	text-align: left;
}

.gallery__nav {
	display: flex;
	gap: 16px;
	position: static;
}

.gallery-prev,
.gallery-next {
	position: static;
	top: auto;
	left: auto;
	right: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 0;
	background: transparent;
	border: none;
	cursor: pointer;
}

.gallery-prev::after,
.gallery-next::after {
	display: none;
}

.gallery-prev.swiper-button-disabled,
.gallery-next.swiper-button-disabled {
	opacity: 0.7;
	cursor: not-allowed;
	pointer-events: none;
}

.gallery__arrow {
	display: block;
	width: 40px;
	height: auto;
	color: var(--color-primary-azure);
}

.gallery__arrow path {
	fill: currentColor;
}

.gallery__arrow--prev {
	transform: rotate(180deg);
	opacity: 0.7;
}

.gallery-slide {
	width: 285px !important;
	height: 285px !important;
}

.gallery-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

.gallery-pagination {
	position: static;
	margin-top: 24px;
	display: flex;
	justify-content: center;
	gap: 6px;
}

.gallery-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: var(--color-primary-green);
	opacity: 0.4;
	margin: 0 !important;
}

.gallery-pagination .swiper-pagination-bullet-active {
	opacity: 1;
}

@media (min-width: 768px) {
	.solutions__container {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: stretch;
		box-sizing: border-box;
		max-width: 1250px;
		min-height: 641px;
		padding: clamp(32px, 4vw, 48px) clamp(24px, 3.5vw, 40px);
		background-size: 100% 100%;
	}

	.solutions__title {
		font-size: clamp(28px, 3vw + 1rem, 48px);
		margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
	}

	.solutions__items {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		width: 100%;
		min-height: 383px;
		padding-bottom: 0;
	}

	.solutions-item {
		position: static !important;
		width: 40%;
		height: auto;
		min-height: 92px;
		overflow: visible;
		margin-bottom: 0;
		border: none;
		border-radius: 0;
		background: none;
		box-shadow: none;
	}

	.solutions-item + .solutions-item {
		margin-top: -12px;
	}

	.solutions-item {
		display: block;
		grid-template-rows: none;
		transition: none;
	}

	.solutions-item__header {
		position: relative;
		z-index: 1;
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		height: auto;
		min-height: 92px;
		margin-bottom: 20px;
		padding: clamp(12px, 2vw, 16px) clamp(16px, 2.5vw, 24px);
		border-radius: 12px;
		background: var(--color-white);
		border: 1px solid var(--color-secondary-gray);
		box-shadow: none;
		opacity: 0.8;
		cursor: pointer;
		transition:
			opacity 0.35s ease,
			border-color 0.35s ease,
			box-shadow 0.35s ease;
	}

	.solutions-item.active .solutions-item__header {
		border: 1px solid var(--color-primary-green);
		opacity: 1;
	}

	.solutions-item__info {
		align-items: center;
	}

	.solutions-item__name {
		font-size: 18px;
		font-weight: 600;
	}

	.solutions-item__desc {
		display: block;
		font-size: 14px;
		font-weight: 400;
		line-height: 1.3;
		color: var(--color-primary-azure);
		opacity: 0.7;
	}

	.solutions-item__arrow-circle {
		display: none;
	}

	.solutions-item:not(.active) .solutions-item__body {
		display: none;
	}

	.solutions-item__body {
		max-height: none;
		opacity: 0;
	}

	.solutions-item.active .solutions-item__body {
		position: absolute;
		top: 0;
		right: 0;
		width: 55% !important;
		height: auto;
		min-height: 100%;
		max-height: none !important;
		opacity: 1;
		overflow: auto;
		z-index: 0;
		background: var(--color-white);
		border: none !important;
		border-radius: 24px;
		box-shadow: 4px 8px 8px rgba(0, 0, 0, 0.25);
		animation: solutions-panel-in 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	}

	@keyframes solutions-panel-in {
		from {
			opacity: 0;
			transform: translateX(12px);
		}

		to {
			opacity: 1;
			transform: translateX(0);
		}
	}

	.solutions-content {
		align-items: center;
		padding: 32px 40px;
		text-align: center;
	}

	.solutions-content > p:not(.solutions-content__note) {
		font-size: 14px;
		line-height: 1.32;
		text-align: center;
	}

	.solutions-content__subhead {
		font-size: 18px;
		text-align: center;
	}

	.solutions-content__actions {
		justify-content: center;
		gap: 20px;
		width: auto;
	}

	.solutions-content__actions .btn-primary,
	.solutions-content__actions .btn-outline {
		flex: 0 0 auto;
		width: auto;
		height: 60px;
		padding: 16px 24px;
		font-size: 18px;
	}

	.solutions-content__actions .btn-primary {
		width: clamp(180px, 16vw, 211px);
	}

	.solutions-content__actions .btn-outline {
		width: clamp(180px, 16vw, 204px);
	}

	.terms__grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: stretch;
		gap: 20px;
	}

	.terms-card {
		flex: 0 0 calc(33.333% - 14px);
		min-height: 242px;
		padding: 40px 24px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		text-align: center;
	}

	.terms-card:nth-child(4),
	.terms-card:nth-child(5) {
		flex: 0 0 calc(50% - 10px);
		max-width: 400px;
		min-height: 268px;
	}

	.terms-card__value {
		min-height: clamp(48px, 5vw, 70px);
		font-size: clamp(48px, 5vw, 70px);
	}

	.terms-card__title {
		margin: 0 0 12px;
		font-size: clamp(18px, 2vw, 26px);
	}

	.terms-card .text-small,
	.terms-card .text-link {
		font-size: clamp(14px, 1.5vw, 18px);
	}

	.terms__note {
		margin-top: 60px;
		font-size: clamp(14px, 1.5vw, 18px);
	}

	.cta__bg {
		min-height: 591px;
		padding: clamp(64px, 5vw, 80px) clamp(24px, 3.5vw, 40px) clamp(32px, 4vw, 48px);
		border-radius: 32px;
	}

	.cta__title {
		font-size: clamp(26px, 2.5vw + 1rem, 48px);
	}

	.cta__subtitle {
		font-size: clamp(14px, 1.5vw + 0.5rem, 28px);
	}

	.cta__desc {
		font-size: 18px;
	}

	.cta__card {
		max-width: 797px;
		margin: 0 auto;
		padding: 32px;
	}

	.cta__actions {
		flex-direction: row;
		justify-content: center;
		gap: 20px;
	}

	.cta__actions .btn-primary,
	.cta__actions .btn-outline {
		width: auto;
		min-width: 211px;
		height: 68px;
	}

	.cta__actions .btn-outline {
		min-width: 259px;
	}

	.cta__phone-icon {
		box-sizing: content-box;
		width: 40px;
		height: 40px;
		padding: 8px;
	}

	.cta__phone .site-header__phone-number {
		font-size: 24px;
	}

	.cta__phone-wrap hr {
		flex: 1;
		max-width: 201px;
	}

	.cta__features {
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		align-self: center;
		gap: 0;
		width: 100%;
		max-width: 100%;
		margin-top: -12px;
	}

	.cta__feature {
		flex-shrink: 0;
		font-size: 18px;
		line-height: 18px;
		white-space: nowrap;
	}

	.cta__feature:not(:last-child)::after {
		content: '';
		display: block;
		flex-shrink: 0;
		width: 1px;
		height: 24px;
		background: var(--color-secondary-gray);
		margin-left: 12px;
		margin-right: 12px;
	}

	.contacts__title {
		font-size: clamp(28px, 3vw + 1rem, 48px);
	}

	.gallery-contacts {
		position: relative;
		overflow: hidden;
		isolation: isolate;
	}

	.gallery-contacts__bg {
		display: block;
		position: absolute;
		inset: 0;
		z-index: 0;
		pointer-events: none;
		overflow: hidden;
	}

	.gallery-contacts__bg::before {
		content: '';
		position: absolute;
		inset: 0;
		z-index: 1;
		background: var(--pattern-bg-lighten);
		pointer-events: none;
	}

	.gallery-contacts__bg::after {
		content: '';
		position: absolute;
		inset: 0;
		z-index: 2;
		background: linear-gradient(180deg, rgba(255, 255, 255, 0) 82.91%, #FFFFFF 100%);
		pointer-events: none;
	}

	.gallery-contacts__bg-inner {
		position: absolute;
		inset: 0;
		overflow: hidden;
	}

	.gallery-contacts__bg-img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center top;
	}

	.gallery-contacts .gallery,
	.gallery-contacts .contacts {
		position: relative;
		z-index: 1;
	}

	.gallery-contacts .gallery {
		background-color: transparent;
	}

	.contacts__wrapper {
		flex-direction: row;
		justify-content: space-between;
		align-items: stretch;
		gap: clamp(20px, 3vw, 60px);
		min-width: 0;
	}

	.contacts-info {
		flex: 0 0 clamp(350px, 38.125vw, 488px);
		width: clamp(350px, 38.125vw, 488px);
		max-width: 488px;
		min-height: clamp(400px, 40.3125vw, 516px);
		height: auto;
		box-sizing: border-box;
		gap: 0;
		padding: 32px 32px;
	}

	.contacts-info__item {
		flex-shrink: 0;
		padding-bottom: 18px;
		margin-bottom: 18px;
	}

	.contacts-info__item:last-child {
		padding-bottom: 0;
		margin-bottom: 0;
		border: none;
	}

	.contacts-info__text {
		flex: 1;
		min-width: 0;
	}

	.contacts-info__title {
		font-size: 18px;
		margin-bottom: 4px;
	}

	.contacts-info__desc {
		font-size: 18px;
		line-height: 1.25;
	}

	.contacts-map {
		flex: 1 1 0;
		width: 0;
		max-width: 692px;
		height: auto;
		align-self: stretch;
		display: flex;
		flex-direction: column;
		min-width: 0;
		overflow: hidden;
		box-sizing: border-box;
	}

	.contacts-map__canvas {
		flex: 1;
		min-width: 0;
		max-width: 100%;
		width: 100%;
		height: 100%;
	}

	.gallery__header {
		justify-content: space-between;
		margin-bottom: 40px;
	}

	.gallery__title {
		font-size: clamp(28px, 3vw + 1rem, 48px);
		text-align: left;
	}

	.gallery-slide {
		width: 275px !important;
		height: 275px !important;
	}

	.calculator__title {
		font-size: clamp(28px, 3vw + 1rem, 48px);
	}

	.calc-wrapper {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: stretch;
		gap: clamp(20px, 3vw, 40px);
		width: 100%;
		max-width: 1220px;
		margin-inline: auto;
	}

	.calc-card--inputs,
	.calc-card--results {
		height: 593px !important;
		box-sizing: border-box;
	}

	.calc-card--inputs {
		flex: 692 1 0;
		max-width: 692px;
		min-width: 0;
		padding: 40px;
	}

	.calc-card--inputs .calc-tabs {
		display: flex;
		flex-wrap: nowrap;
		width: 100%;
		min-width: 0;
		gap: clamp(6px, 1vw, 10px);
	}

	.calc-card--inputs .calc-tab {
		box-sizing: border-box;
		flex-shrink: 1;
		min-width: 0;
		justify-content: center;
		height: clamp(26px, 5vw, 68px);
		padding: clamp(4px, 1.5vw, 16px) clamp(6px, 1.5vw, 24px);
		gap: clamp(4px, 1vw, 10px);
		border-radius: clamp(6px, 1vw, 12px);
	}

	.calc-card--inputs .calc-tabs .calc-tab:nth-child(1) {
		flex: 206 1 0;
		max-width: 206px;
	}

	.calc-card--inputs .calc-tabs .calc-tab:nth-child(2) {
		flex: 233 1 0;
		max-width: 233px;
	}

	.calc-card--inputs .calc-tabs .calc-tab:nth-child(3) {
		flex: 185 1 0;
		max-width: 185px;
	}

	.calc-card--inputs .calc-tab__text {
		font-size: clamp(10px, 1vw + 6px, 18px);
		line-height: clamp(12px, 1.5vw, 22px);
	}

	.calc-card--inputs .calc-tab__icon {
		flex-shrink: 0;
		width: clamp(18px, 1vw + 10px, 24px);
		height: clamp(18px, 1vw + 10px, 24px);
	}

	.calc-card--inputs .calc-card__slider-header {
		gap: clamp(8px, 1.5vw, 16px);
		min-width: 0;
	}

	.calc-card--inputs .calc-card__label {
		flex: 1 1 auto;
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.calc-card--inputs .calc-card__current-value {
		flex: 0 0 auto;
		max-width: 50%;
		white-space: nowrap;
	}

	.calc-card--results {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		flex: 488 1 0;
		max-width: 488px;
		min-width: 0;
		padding: 40px;
	}

	.calc-card--results .calc-results__divider {
		margin: 8px 0;
		flex-shrink: 0;
	}

	.calc-card--results .calc-results-summary {
		width: 100%;
		min-width: 0;
		margin-top: 4px;
		margin-bottom: clamp(24px, 4vw, 40px);
	}

	.calc-card--results .calc-results-summary__item--term,
	.calc-card--results .calc-results-summary__item--deposit {
		min-width: 0;
	}

	.calc-card--results .calc-results-summary__label,
	.calc-card--results .calc-results-summary__item strong {
		white-space: normal;
	}

	.calc-card--inputs .calc-tabs__label,
	.calc-card--inputs .calc-card__label,
	.calc-card--inputs .calc-card__current-value {
		font-size: clamp(14px, 1.2vw + 0.5rem, 22px) !important;
		font-weight: 700 !important;
		color: var(--color-primary-azure);
	}

	.calc-card--inputs .calc-card__slider-bounds span {
		font-size: clamp(12px, 1vw + 0.5rem, 18px) !important;
		font-weight: 400 !important;
		color: var(--color-text-main);
		opacity: 0.7;
	}

	.calc-card--inputs .calc-card__percent-badge {
		font-size: 22px !important;
		font-weight: 400 !important;
	}

	.calc-card--inputs .calc-card__disclaimer {
		font-size: 14px !important;
		font-style: italic !important;
	}

	.calc-card--results .calc-results__label,
	.calc-card--results .calc-results-summary__label {
		font-size: 18px !important;
		font-weight: 400 !important;
	}

	.calc-card--results .calc-results__value:not(.calc-results__value--total) {
		font-size: 70px !important;
		font-weight: 700 !important;
	}

	.calc-card--results .calc-results__value .text-small {
		font-size: 18px !important;
		font-weight: 400 !important;
	}

	.calc-card--results .calc-results__value--total {
		font-size: 32px !important;
		font-weight: 700 !important;
	}

	.calc-card--results .calc-results-summary__item strong {
		font-size: 16px !important;
		font-weight: 700 !important;
	}

	.calc-card__percent-badge {
		width: 74px;
		min-width: 74px;
		height: 83px;
		padding: 0 12px;
	}

	.calc-card--results .calc-results__actions {
		margin-top: auto;
		gap: 10px;
	}

	.calc-card--results .calc-results__actions .btn-primary,
	.calc-card--results .calc-results__actions .btn-outline {
		min-height: 54px;
		padding: 12px 24px;
		font-size: 18px !important;
		font-weight: 700 !important;
	}

	.calc-results-secure {
		margin-top: 8px;
		flex-shrink: 0;
	}

	.calc-results-secure__inner {
		font-size: 12px;
	}

	.process__title {
		font-size: clamp(28px, 3vw + 1rem, 48px);
	}

	.process__subtitle {
		max-width: 572px;
		font-size: clamp(12px, 1.5vw, 18px);
	}

	.process__grid {
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: stretch;
		width: 100%;
		min-width: 0;
		gap: clamp(12px, 1.5vw, 20px);
		--process-card-gap: clamp(12px, 1.5vw, 20px);
	}

	.process-card {
		flex: 1 1 0;
		min-width: 0;
		width: auto;
		max-width: 224px;
		align-self: stretch;
		height: auto;
		padding: clamp(24px, 2.5vw, 32px) clamp(12px, 1.5vw, 16px);
		gap: 12px;
		align-items: flex-start;
		text-align: left;
	}

	.process-card__number {
		font-size: clamp(58px, 5vw + 1rem, 70px);
	}

	.process-card__title {
		display: block;
		width: 100%;
		min-height: 44px;
		font-size: clamp(16px, 1.5vw, 18px);
		line-height: 1.2;
		text-align: left;
	}

	.process-card__divider {
		flex-shrink: 0;
	}

	.process-card__desc {
		flex: 1 1 auto;
		width: 100%;
		min-height: 51px;
		font-size: 14px;
		line-height: 1.3;
		text-align: left;
	}

	.process-card__arrow {
		top: 50%;
		bottom: auto;
		left: calc(100% + var(--process-card-gap) / 2);
		transform: translate(-50%, -50%);
	}

	.process__arrow-icon {
		width: 42px;
		height: 15px;
	}

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

	.stats-card {
		width: 100%;
		max-width: none;
		min-height: 0;
		height: auto;
		justify-self: stretch;
	}

	.team-block__wrapper {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 32px;
	}

	.team-block__left {
		display: block;
		width: 100%;
		max-width: none;
		min-width: 0;
	}

	.team-block__title {
		font-size: 28px;
		text-align: left;
		margin-bottom: 24px;
	}

	.team-block__right {
		width: 100%;
		max-width: 560px;
		margin: 0 auto;
		align-items: flex-start;
		text-align: left;
	}

	.team-block__about {
		align-items: flex-start;
		width: 100%;
		max-width: 100%;
		margin-bottom: 0;
	}

	.team-block__right-title {
		font-size: 28px;
		text-align: left;
		margin-bottom: 20px;
	}

	.team-block__about-text {
		gap: 12px;
		max-width: 100%;
		text-align: left;
	}

	.team-block__about-text p {
		font-size: 16px;
		line-height: 22px;
		opacity: 0.7;
	}

	.team-pagination {
		display: none;
	}

	.team-slider {
		width: 100%;
		min-width: 0;
	}

	.team-slider .swiper-wrapper {
		display: flex;
		flex-direction: row;
		gap: 16px;
		transform: none !important;
	}

	.team-slide {
		flex: 1 1 0;
		min-width: 0;
		width: auto;
		max-width: 224px;
		height: auto;
	}

	.team-slide__photo {
		height: auto;
		aspect-ratio: 224 / 233;
	}

	.team-block__docs {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 12px;
		width: 100%;
		margin-top: 0;
	}

	.btn-doc {
		box-sizing: border-box;
		width: fit-content;
		max-width: 100%;
		height: auto;
		min-height: 56px;
		margin: 0;
		padding: 14px 20px;
		font-size: 16px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.gallery-contacts__bg {
		display: none;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.calc-card--inputs .calc-card__deposit-main .calc-card__slider-header {
		flex-wrap: wrap;
		row-gap: 4px;
	}

	.calc-card--inputs .calc-card__deposit-main .calc-card__label {
		flex: 1 1 100%;
		max-width: 100%;
	}

	.calc-card--inputs .calc-card__deposit-main .calc-card__current-value {
		flex: 1 1 100%;
		max-width: 100%;
		text-align: right;
	}

	.calc-card--inputs .calc-tabs {
		gap: clamp(4px, 0.5vw, 8px);
		justify-content: flex-start;
	}

	.calc-card--inputs .calc-tabs .calc-tab,
	.calc-card--inputs .calc-tabs .calc-tab:nth-child(1),
	.calc-card--inputs .calc-tabs .calc-tab:nth-child(2),
	.calc-card--inputs .calc-tabs .calc-tab:nth-child(3) {
		flex: 0 0 auto;
		width: fit-content;
		max-width: none;
		min-width: 0;
		flex-shrink: 0;
		height: clamp(26px, 3.5vw, 52px);
		padding: clamp(3px, 0.6vw, 8px) clamp(4px, 0.8vw, 10px);
		gap: clamp(2px, 0.4vw, 6px);
	}

	.calc-card--inputs .calc-tab__text {
		font-size: clamp(8px, 0.65vw + 4px, 13px);
		line-height: 1.15;
	}

	.calc-card--inputs .calc-tab__icon {
		width: clamp(14px, 1.2vw, 18px);
		height: clamp(14px, 1.2vw, 18px);
	}

	.calc-card--results .calc-results__label,
	.calc-card--results .calc-results-summary__label {
		font-size: clamp(14px, 1.5vw, 18px) !important;
	}

	.calc-card--results .calc-results__value:not(.calc-results__value--total) {
		font-size: clamp(40px, 6vw, 70px) !important;
	}

	.calc-card--results .calc-results__value--total {
		font-size: clamp(24px, 3vw, 32px) !important;
	}

	.calc-card--results .calc-results-summary__item strong {
		font-size: clamp(13px, 1.4vw, 16px) !important;
	}

	.calc-card--results .calc-results-summary {
		flex-direction: column;
		gap: 12px;
		margin-bottom: 28px;
	}

	.calc-card--results .calc-results-summary__item--term,
	.calc-card--results .calc-results-summary__item--deposit {
		max-width: 100%;
	}
}

@media (min-width: 1100px) {
	.stats__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: clamp(16px, 2vw, 24px);
	}

	.stats-card {
		box-sizing: border-box;
		width: 100%;
		max-width: 285px;
		min-height: 171px;
		height: auto;
		justify-self: center;
	}
}

@media (min-width: 992px) {
	.team-block__wrapper {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
		grid-template-areas:
			'team-title .'
			'team-photos team-about'
			'team-docs team-docs';
		align-items: center;
		gap: clamp(24px, 3vw, 40px);
	}

	.team-block__left {
		display: contents;
	}

	.team-block__title {
		grid-area: team-title;
		align-self: start;
		font-size: 28px;
		text-align: left;
		margin-bottom: 0;
	}

	.team-slider {
		grid-area: team-photos;
		align-self: start;
		width: 100%;
		min-width: 0;
	}

	.team-block__right {
		grid-area: team-about;
		align-self: center;
		max-width: none;
		margin: 0;
		min-width: 0;
		align-items: flex-start;
		text-align: left;
	}

	.team-block__about {
		align-items: flex-start;
		width: 100%;
		max-width: 100%;
		margin-bottom: 0;
	}

	.team-block__right-title {
		font-size: 28px;
		text-align: left;
		margin-bottom: 24px;
	}

	.team-block__about-text {
		gap: 14px;
		max-width: 100%;
		text-align: left;
	}

	.team-block__about-text p {
		font-size: 18px;
		line-height: 24px;
		opacity: 0.7;
	}

	.team-slider .swiper-wrapper {
		display: flex;
		flex-direction: row;
		gap: clamp(12px, 2vw, 20px);
		transform: none !important;
	}

	.team-slide {
		flex: 1 1 0;
		min-width: 0;
		width: auto;
		max-width: 224px;
		height: auto;
	}

	.team-block__docs {
		grid-area: team-docs;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 20px;
		width: 100%;
		margin-top: 0;
	}

	.btn-doc {
		box-sizing: border-box;
		width: fit-content;
		max-width: 100%;
		height: 72px;
		min-height: 72px;
		margin: 0;
		padding: 16px 24px;
		font-size: 18px;
	}
}

/* --------------------------------------------------------------------------
Application modal
-------------------------------------------------------------------------- */
.application-modal {
	position: fixed;
	inset: 0;
	z-index: 250;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	visibility: hidden;
	pointer-events: none;
}

.application-modal.is-open {
	visibility: visible;
	pointer-events: auto;
}

.application-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(9, 9, 9, 0.5);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.application-modal.is-open .application-modal__backdrop {
	opacity: 1;
}

.application-modal.is-closing .application-modal__backdrop {
	opacity: 0;
}

.application-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 480px);
	max-height: calc(100dvh - 40px);
	padding: 28px 24px 24px;
	box-sizing: border-box;
	overflow-y: auto;
	background: var(--color-white);
	border-radius: 20px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
	opacity: 0;
	transform: translateY(12px) scale(0.98);
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}

.application-modal.is-open .application-modal__dialog {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.application-modal.is-closing .application-modal__dialog {
	opacity: 0;
	transform: translateY(8px) scale(0.99);
}

.application-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: var(--color-bg-green-light);
	cursor: pointer;
}

.application-modal__close-icon {
	display: block;
	width: 18px;
	height: 18px;
}

.application-modal__title {
	margin: 0 40px 8px 0;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-primary-azure);
}

.application-modal__desc {
	margin: 0 0 20px;
	font-size: 0.9375rem;
	line-height: 1.45;
	color: var(--color-text-main);
}

.application-form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.application-form__field + .application-form__field {
	margin-top: 16px;
}

.application-form__label {
	display: block;
	margin-bottom: 6px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-primary-azure);
}

.application-form__required {
	color: var(--color-primary-green);
}

.application-form__optional {
	font-weight: 400;
	color: var(--color-text-main);
}

.application-form__input {
	display: block;
	width: 100%;
	padding: 12px 14px;
	font-family: inherit;
	font-size: 1rem;
	line-height: 1.3;
	color: var(--color-text-main);
	background: var(--color-white);
	border: 1px solid var(--color-secondary-gray);
	border-radius: 10px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.application-form__input:focus {
	border-color: var(--color-primary-green);
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 129, 109, 0.15);
}

.application-form__input.is-invalid {
	border-color: #c0392b;
}

.application-form__textarea {
	min-height: 88px;
	resize: vertical;
}

.application-form__error {
	margin: 6px 0 0;
	font-size: 0.8125rem;
	color: #c0392b;
}

.application-form__notice {
	margin: 16px 0 12px;
	font-size: 0.75rem;
	line-height: 1.4;
	color: var(--color-text-main);
}

.application-form__status {
	margin: 0 0 12px;
	padding: 10px 12px;
	font-size: 0.875rem;
	line-height: 1.4;
	border-radius: 10px;
}

.application-form__status.is-success {
	color: #0d5c42;
	background: #e8f6f1;
}

.application-form__status.is-error {
	color: #8b1e1e;
	background: #fdecec;
}

.application-form__submit {
	width: 100%;
}

.application-form__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.application-form__actions .application-form__submit,
.application-form__actions .application-form__download {
	width: 100%;
	margin: 0;
}

.application-form__submit:disabled,
.application-form__download:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

@media (min-width: 768px) {
	.application-form__actions {
		flex-direction: row;
		align-items: stretch;
	}

	.application-form__actions .application-form__submit,
	.application-form__actions .application-form__download {
		flex: 1 1 0;
		width: auto;
	}
}

@media (min-width: 768px) {
	.application-modal__dialog {
		padding: 32px 32px 28px;
	}

	.application-modal__title {
		font-size: 1.75rem;
	}
}
