@font-face {
	font-family: 'Manrope';
	src: url('../fonts/Manrope-Bold.woff2') format('woff2'),
		url('../fonts/Manrope-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Manrope';
	src: url('../fonts/Manrope-SemiBold.woff2') format('woff2'),
		url('../fonts/Manrope-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Manrope';
	src: url('../fonts/Manrope-Medium.woff2') format('woff2'),
		url('../fonts/Manrope-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Geist';
	src: url('../fonts/Geist-Medium.woff2') format('woff2'),
		url('../fonts/Geist-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

:root {
	--black: #121111;
	--gray: #616161;
	--gray-dark: #626262;
	--gold: #be7d15;
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

html {
	font-family: 'Manrope';
	font-weight: 600;
	font-size: 16px;
}

a {
	text-decoration: none;
	color: inherit;
}

ul,
li {
	margin: 0;
	padding: 0;
}

img {
	max-width: 100%;
	width: 100%;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	width: auto;
	background-color: #111111;
	padding: 0 22px;
	border: none;
	border-radius: 48px;
	font-weight: 500;
	font-size: 15px;
	white-space: nowrap;
	color: #fff;
	cursor: pointer;
	transition: filter 0.2s ease-in-out;
	text-align: center;
}

.btn:hover {
	filter: brightness(0.85);
}

/* ------------------- INTRO + HEADER ------------------- */

header {
	margin-bottom: 100px;
}

.header__wrapper {
	width: 100%;
	padding: 30px 0;
	text-align: center;
}

.header__title {
	font-family: 'Geist';
	font-weight: 500;
	font-size: 26px;
	color: #8a8a8a;
}

.intro__wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	gap: 32px;
}

.intro__badge {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	padding: 6px 16px;
	max-width: 250px;
	width: 100%;
	background-color: #edebe7;
	border-radius: 100px;
	font-weight: 500;
	color: var(--gray);
}

.intro__badge-img {
	max-width: 24px;
}

.intro__text {
	text-align: center;
}

.intro__title {
	font-family: 'Geist';
	font-weight: 500;
	font-size: 48px;
	letter-spacing: -0.02em;
	line-height: 105%;
	color: var(--black);
	margin-bottom: 12px;
	white-space: pre-wrap;
}

.intro__subtitle {
	display: block;
	max-width: 400px;
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
	color: var(--gray-dark);
	margin: 0 auto;
}

.intro__btn-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
}

.intro__btn-descr {
	font-weight: 500;
	font-size: 14px;
	text-align: center;
	color: #62626280;
}

.intro__img-wrapper {
	overflow: hidden;
	margin: 50px 0;
}

.intro__img {
	display: block;
	max-width: 450px;
	margin: 0 auto;
	transform: translateY(25%);
	transition: transform 0.6s ease-out;
}

.intro__img.visible {
	transform: translateY(0);
}

/* ------------------- BENEFITS ------------------- */

.benefits {
	margin-bottom: 100px;
}

.benefits__title {
	font-size: 64px;
	letter-spacing: -0.05em;
	line-height: 1em;
	text-align: center;
	margin-bottom: 150px;
}

.benefits__subtitle {
	font-size: 64px;
	letter-spacing: -0.05em;
	line-height: 1em;
	text-align: center;
	margin-bottom: 150px;
}

.benefits__subtitle span {
	color: var(--gold);
}

.benefits__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.benefits__grid-item {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.benefits__grid-img__wrapper {
	position: relative;
	mask: url('../images/mask.avif') 50% / cover no-repeat luminance;
	;
}

.benefits__grid-text {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.benefits__grid-title {
	font-weight: 600;
	font-size: 24px;
	letter-spacing: 0.01em;
	line-height: 120%;
}

.benefits__grid-descr {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -0.01em;
	line-height: 140%;
	color: var(--gray-dark);
}

/* ------------------- GRAPH ------------------- */

.graph {
	margin-bottom: 100px;
}

.graph__wrapper {
	display: flex;
	justify-content: space-between;
	gap: 64px;
}

.graph__text {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 450px;
}

.graph__title {
	font-family: Geist;
	font-weight: 500;
	font-size: 48px;
	letter-spacing: -0.02em;
	line-height: 105%;
	color: var(--black);
}

.graph__subtitle {
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
	color: var(--gray-dark);
}

.graph__content {
	display: flex;
	justify-content: flex-end;
	position: relative;
}

.graph__item {
	display: flex;
	flex-direction: column;
	max-width: 220px;
	width: 100%;
	padding: 0 20px;
	gap: 20px;
	flex-shrink: 0;
}

.graph__item-separator {
	width: 1px;
	align-self: stretch;
	position: relative;
	flex-shrink: 0;
}

.graph__item-separator svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.graph__item-header {
	display: flex;
}

.graph__item-img {
	position: relative;
	max-width: 55px;
	border-radius: 14px;
	transform: translateY(0px);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 8px;
	z-index: 3;
	transition: opacity 0.4s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}

.graph__item-img:nth-child(2) {
	margin-left: -12px;
	z-index: 2;
}

.graph__item-img:last-child {
	margin-left: -12px;
	z-index: 1;
}

.graph__item-img:hover {
	transform: translateY(-7px);
	z-index: 4;
}

.graph__item:last-child .graph__item-img {
	background-color: #ffba4c;
	padding: 5px;
}

.graph__item-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	max-height: 580px;
	overflow: hidden;
}

.graph__item-pile {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	padding: 18px;
	width: 100%;
	border-radius: 24px;
	background-color: #ebebeb;
	font-weight: 600;
	font-size: 53px;
	letter-spacing: -2.5px;
	color: #aaaaaa;
	transform-origin: bottom;
}

.graph__item-text {
	font-weight: 500;
	font-size: 13px;
	color: #999;
}

.graph__item:last-child .graph__item-pile {
	background-color: #123a1f;
	color: #fff;
}

.graph__item:last-child .graph__item-text {
	font-weight: 600;
	font-size: 18px;
	color: #1a1a1a;
}

/* ------------------- CHART ------------------- */

.chart {
	margin-bottom: 100px;
}

.chart__wrapper {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 48px;
	background: #edebe780;
	border-radius: 40px;
	gap: 60px;
	position: relative;
}

.chart__info {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.chart__info:has(.select-dropdown.active) {
	z-index: 2;
}

.chart__title {
	font-weight: 600;
	font-size: 24px;
}

.chart__sum {
	font-family: 'Geist';
	font-weight: 500;
	font-size: 64px;
	color: #1fbc00;
}

.chart__text {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #888;
	margin-bottom: 50px;
}

.chart__text strong {
	font-weight: 700;
	color: #555;
}

.chart__date-wrapper {
	position: relative;
	display: inline-flex;
	z-index: 201;
}

.chart__date {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #ebebeb;
	font-size: 14px;
	color: #333;
	cursor: pointer;
	outline: none;
	padding: 4px 8px;
	border-radius: 4px;
}

.chart__date-arrow {
	opacity: 0.45;
	flex-shrink: 0;
}

.select-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 4px;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	z-index: 9999;
	display: none;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.select-dropdown.active {
	display: block;
}

.select-dropdown-item {
	width: 150px;
	padding: 11px 20px;
	cursor: pointer;
	color: #333;
	font-size: 14px;
}

.select-dropdown-item:hover {
	background: #ddd;
}

.chart__date option {
	background: #ebebeb;
	color: #333;
	white-space: nowrap;
	max-width: 120px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.chart__date option {
	background: #ebebeb;
	color: #333;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.chart__calc {
	padding: 14px 18px;
	border-radius: 16px;
	background: #edebe7;
	max-width: 400px;
}

.chart__calc-title {
	color: #888;
}

.chart__calc-deposit {
	font-weight: 700;
	font-size: 24px;
}

.chart__calc-range {
	width: 100%;
	height: 6px;
	appearance: none;
	outline: none;
	background: #ddd;
	border-radius: 6px;
}

.chart__graph {
	display: flex;
	flex-direction: column;
	width: 100%;
	position: relative;
	z-index: 1;
}

.chart__tooltip {
	position: absolute;
	background: #fff;
	color: #fff;
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s;
	z-index: 100;
	white-space: nowrap;
	transform: translateX(-50%);
	max-width: 200px;
	width: 100%;
	box-shadow: 0px 0px 0px 7px #edebe7;
}

.chart__tooltip-sum {
	font-weight: 600;
}

.chart__tooltip-total {
	font-size: 12px;
	color: #666;
	margin: 0 0 10px;
}

.chart__tooltip-total span {
	font-size: 22px;
	color: #333;
}

.chart__tooltip-sum {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.chart__tooltip-sum p {
	position: relative;
	color: #1fbc00;
	padding-left: 15px;
}

.chart__tooltip-sum p::before {
	content: '';
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #1fbc00;
}

.tooltip-earned {
	color: #626262;
}

.tooltip-sum {
	font-weight: 600;
	font-size: 18px;
	color: #626262;
	margin-left: 20px;
}

.chart__bars {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: flex-start;
	height: 300px;
	gap: 10px;
	position: relative;
}

.chart__bar-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
	min-width: 5px;
	flex: 1;
	position: relative;
}

.chart__bar {
  width: 100%;
  background: linear-gradient(to top, rgb(196, 134, 52), rgb(31, 188, 0));
  border-radius: 8px;
  transform-origin: bottom;
  transition: opacity 0.2s ease;
  position: relative;
  z-index: 99;
}

.chart__bars.many-bars .chart__bar {
  border-radius: 4px;
}

.chart__bars.medium-bars .chart__bar {
  border-radius: 6px;
}

.chart__bar-value {
	font-weight: 600;
	font-size: 14px;
	margin-top: 8px;
	color: #333;
}

.chart__labels {
	display: flex;
	justify-content: space-between;
	margin-top: 5px;
}

.chart__labels span {
	font-size: 12px;
	color: #999;
}

/* ------------------- COMPLIANCE ------------------- */

.compliance {
	margin-bottom: 100px;
}

.compliance__wrapper {
	display: flex;
	justify-content: space-between;
	gap: 60px;
}

.compliance__text {
	display: flex;
	flex-direction: column;
	gap: 32px;
	max-width: 400px;
	flex-shrink: 0;
}

.compliance__title {
	font-family: Geist;
	font-weight: 500;
	font-size: 48px;
	letter-spacing: -0.02em;
	line-height: 105%;
	color: var(--black);
}

.compliance__subtitle {
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
	color: var(--gray-dark);
}

.compliance__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 30px;
	row-gap: 60px;
}

.compliance__grid-img__wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 56px;
	width: 100%;
	max-height: 56px;
	height: 100%;
	background: #edebe7;
	border-radius: 16px;
	margin-bottom: 24px;
}

.compliance__grid-img {
	max-width: 32px;
}

.compliance__grid-title {
	font-weight: 700;
	font-size: 18px;
	letter-spacing: -0.02em;
    line-height: 105%;
	margin-bottom: 10px;
}

.compliance__grid-descr {
	font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
   	line-height: 140%;
	color: #808080;
}

/* ------------------- GLOBE ------------------- */

.globe {
	position: relative;
	height: 1200px;
	background: linear-gradient(180deg,#1370aa 0%, #edebe780 99.9155%);
	border-top-left-radius: 100px;
    border-top-right-radius: 100px;
	padding: 48px 32px;
	overflow: hidden;
	transform: scale(0.9);
}

.globe .container {
	height: 100%;
}

.globe__wrapper {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	inset: 0;
	height: 100%;
	position: relative;
	z-index: 12;
}

.globe__title {
	font-family: 'Geist';
	font-weight: 500;
	font-size: 64px;
	letter-spacing: -0.04em;
    line-height: 1em;
	color: #fff;
	margin-bottom: 12px;
}

.globe__subtitle {
	font-weight: 600;
	font-size: 18px;
	line-height: 100%;
	color: #fff;
}

.globe__footer {
	max-width: 550px;
}

.globe__img {
	margin-bottom: 24px;
	max-width: 160px;
}

.globe__text {
	font-weight: 600;
	font-size: 18px;
	line-height: 140%;
	color: var(--gray-dark);
}

.globe__canvas {
	position: absolute;
	top: -800px;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
}

@media (max-width: 768px) {
	.globe {
		position: relative;
	}

	.globe__canvas {
		top: 0;
		width: 100%;
		left: 0;
		height: 100%;
		z-index: 1;
	}

	.globe__wrapper {
		position: relative;
		z-index: 2;
	}

	.globe__title {
		font-size: 36px;
	}

	.globe__subtitle {
		font-size: 16px;
	}

	.globe__footer {
		max-width: 100%;
	}

	.globe__img {
		max-width: 120px;
	}

	.globe__text {
		font-size: 16px;
	}
}

.canvas {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	position: absolute;
	top: 500px;
	right: -1500px;
}


/* ------------------- FAQ ------------------- */

.faq {
	padding: 100px 0;
	background: #edebe780;
}

.faq__wrapper {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.faq__title {
	font-family: Geist;
    font-weight: 500;
    font-size: 48px;
    letter-spacing: -0.02em;
    line-height: 105%;
    color: var(--black);
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 600px;
}

.faq__item-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px;
	border-radius: 24px;
	cursor: pointer;
	user-select: none;
	background: #fff;
}

.faq__item-title {
	font-weight: 600;
	font-size: 20px;
	color: var(--black);
}

.faq__item-icon {
	position: relative;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.faq__item-icon span {
	position: absolute;
	background: var(--black);
	border-radius: 2px;
	transition: transform 0.3s ease;
}

.faq__item-icon span:first-child {
	width: 16px;
	height: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.faq__item-icon span:last-child {
	width: 2px;
	height: 16px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.faq__item.active .faq__item-icon span:first-child {
	transform: translate(-50%, -50%) rotate(360deg);
}

.faq__item.active .faq__item-icon span:last-child {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.active .faq__item-content {
	overflow: visible;
}

.faq__item-content {
	max-height: 0;
	overflow: hidden;
	padding-top: 0;
	padding-bottom: 0;
	transition: padding 0.4s ease, max-height 0.4s ease;
	box-sizing: border-box;
}

.faq__item-descr {
	font-weight: 500;
	font-size: 16px;
	line-height: 160%;
	margin-bottom: 10px;
	color: var(--gray-dark);
}

/* ------------------- BANNER ------------------- */

.banner {
	background: #edebe780;
	padding-bottom: 200px;
}

.banner__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
	padding: 40px;
	border-radius: 40px;
	overflow: hidden;
}

.banner__left {
	display: flex;
	flex-direction: column;
	flex: 0 1 50%;
	gap: 40px;
	position: relative;
	z-index: 4;
}	

.banner__title {
	font-family: Geist;
    font-weight: 500;
    font-size: 40px;
    letter-spacing: -0.02em;
    line-height: 105%;
    color: var(--black);
	margin-bottom: 10px;
}

.banner__subtitle {
	font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: var(--gray-dark);
}

.banner__form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.banner__input {
    padding: 14px;
    border: 1px solid rgb(221, 221, 221);
    border-image: initial;
    border-radius: 48px;
    background: rgb(245, 245, 245);
    font-size: 15px;
    color: rgb(17, 17, 17);
    box-sizing: border-box;
    outline: none;
    min-width: 0px;
}

.banner__right {
	position: relative;
	z-index: 3;
}

.banner__img-wrapper {
	position: absolute;
	inset: -388px -519px -388px -812px;
}

.banner__img {
	display: block;
	width: 100%;
	height: 100%;
	corner-shape: inherit;
    object-position: center center;
    object-fit: contain;
}

/* ------------------- FOOTER ------------------- */

footer {
	display: flex;
	flex-direction: column;
	gap: 80px;
	background: #edebe780;
	padding: 40px 0;
}

footer .container {
	width: 100%;
}

.footer__wrapper {
	display: flex;
	justify-content: space-between;
}

.footer__title {
	font-family: "Geist", sans-serif;
    font-size: 24px;
    font-weight: 580;
    letter-spacing: 0.02em;
    line-height: 100%;
}

.footer__right {
	display: flex;
	gap: 64px;
}

.footer__item-header {
	font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 170%;
}

.footer__item-list{
	list-style: none;
}

.footer__item-link a {
	font-size: 18px;
    font-weight: 550;
    letter-spacing: 0.02em;
    line-height: 170%;
	color: #969796;
}

/* ------------------- MEDIA QUERIES ------------------- */

@media (max-width: 1024px) {
	header {
		margin-bottom: 60px;
	}

	.container {
		padding: 0 24px;
	}

	.intro__title {
		font-size: 36px;
	}

	.intro__subtitle {
		font-size: 16px;
		max-width: 350px;
	}

	.benefits {
		margin-bottom: 60px;
	}

	.benefits__title {
		font-size: 48px;
		text-align: center;
		margin-bottom: 60px;
	}

	.benefits__subtitle {
		font-size: 48px;
		margin-bottom: 60px;
	}

	.benefits__grid {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 32px;
	}

	.benefits__grid-item {
		align-items: center;
		gap: 24px;
		max-width: 300px;
		text-align: center;
	}

	.benefits__grid-img__wrapper {
		flex-shrink: 0;
	}

	.graph__wrapper {
		flex-direction: column;
		gap: 40px;
	}

	.graph__text {
		max-width: 100%;
	}

	.graph__title {
		font-size: 36px;
	}

	.graph__content {
		justify-content: center;
		overflow-x: auto;
		padding-bottom: 20px;
	}

	.chart__wrapper {
		flex-direction: column;
		padding: 32px;
		gap: 40px;
	}

	.chart__calc {
		max-width: 100%;
	}

	.compliance__wrapper {
		flex-direction: column;
		gap: 40px;
	}

	.compliance__text {
		max-width: 100%;
	}

	.compliance__grid {
		row-gap: 32px;
	}

	.globe {
		height: 900px;
		border-top-left-radius: 60px;
		border-top-right-radius: 60px;
	}

	.globe__title {
		font-size: 48px;
	}

	.globe__canvas {
		top: 50px;
	}

	.canvas {
		top: 0;
	}

	.faq__wrapper {
		flex-direction: column;
		align-items: center;
		gap: 32px;
	}

	.faq__title {
		font-size: 36px;
	}

	.banner__wrapper {
		flex-direction: column;
		padding: 32px;
		gap: 32px;
	}

	.banner__left {
		flex: 1;
		width: 100%;
	}

	.banner__title {
		font-size: 28px;
	}

	.banner__form {
		max-width: 500px;
		width: 100%;
		margin: 0 auto;
	}

	.banner__img-wrapper {
		position: relative;
		inset: 0;
		width: 100%;
		height: 200px;
	}

	.footer__wrapper {
		flex-direction: column;
		gap: 40px;
	}

	.footer__right {
		justify-content: space-between;
		gap: 32px;
	}
}

@media (max-width: 768px) {
	header {
		margin-bottom: 40px;
	}

	.header__wrapper {
		padding: 20px 0;
	}

	.header__title {
		font-size: 22px;
	}

	.intro__wrapper {
		gap: 24px;
	}

	.intro__badge {
		max-width: 250px;
		padding: 4px 12px;
	}

	.intro__badge-img {
		max-width: 20px;
	}

	.intro__title {
		font-size: 28px;
	}

	.intro__subtitle {
		font-size: 15px;
	}

	.intro__btn {
		width: 100%;
		height: 48px;
		font-size: 14px;
	}

	.intro__img-wrapper {
		margin: 30px 0;
	}

	.intro__img {
		max-width: 280px;
	}

	.benefits {
		margin-bottom: 40px;
	}

	.benefits__title {
		font-size: 32px;
		text-align: center;
		margin-bottom: 40px;
	}

	.benefits__subtitle {
		font-size: 32px;
		margin-bottom: 40px;
	}

	.benefits__grid {
		gap: 24px;
	}

	.benefits__grid-img__wrapper {
		width: 100%;
		height: auto;
	}

	.benefits__grid-title {
		font-size: 20px;
	}

	.benefits__grid-descr {
		font-size: 16px;
	}

	.graph {
		margin-bottom: 60px;
	}

	.graph__title {
		font-size: 28px;
	}

	.graph__subtitle {
		font-size: 16px;
	}

	.graph__item {
		max-width: 160px;
		padding: 0 12px;
		gap: 12px;
	}

	.graph__item-img {
		max-width: 40px;
	}

	.graph__item-pile {
		font-size: 36px;
		padding: 12px;
	}

	.chart {
		margin-bottom: 60px;
	}

	.chart__wrapper {
		padding: 24px;
		border-radius: 24px;
	}

	.chart__info {
		text-align: center;
	}

	.chart__title {
		font-size: 20px;
	}

	.chart__sum {
		font-size: 48px;
	}

	.chart__text {
		flex-direction: column;
		margin-bottom: 32px;
		font-size: 14px;
	}

	.select-dropdown {
		left: 50%;
		transform: translateX(-50%);
	}

	.chart__calc {
		padding: 12px 14px;
	}

	.compliance {
		margin-bottom: 60px;
	}

	.compliance__title {
		font-size: 32px;
	}

	.compliance__subtitle {
		font-size: 16px;
	}

	.compliance__grid {
		grid-template-columns: 1fr;
	}

	.compliance__grid-img__wrapper {
		max-width: 48px;
		max-height: 48px;
	}

	.globe {
		height: 700px;
		padding: 32px 24px;
		border-top-left-radius: 40px;
		border-top-right-radius: 40px;
		transform: scale(1);
	}

	.globe__title {
		font-size: 36px;
	}

	.globe__subtitle {
		font-size: 16px;
	}

	.globe__footer {
		max-width: 100%;
	}

	.globe__img {
		max-width: 120px;
	}

	.globe__text {
		font-size: 16px;
	}

	.canvas {
		top: -500px;
		right: -1000px;	
		width: 2000px !important;
		height: 2200px !important;
	}

	.faq {
		padding: 60px 0;
	}

	.faq__title {
		font-size: 28px;
	}

	.faq__item-header {
		padding: 16px;
		border-radius: 16px;
	}

	.faq__item-title {
		font-size: 16px;
	}

	.faq__item-icon {
		width: 20px;
		height: 20px;
	}

	.faq__item-icon span:first-child {
		width: 14px;
	}

	.faq__item-icon span:last-child {
		height: 14px;
	}

	.banner {
		padding-bottom: 100px;
	}

	.banner__wrapper {
		padding: 24px;
		border-radius: 24px;
	}

	.banner__title {
		font-size: 24px;
	}

	.banner__subtitle {
		font-size: 16px;
	}

	.banner__input {
		padding: 12px;
		font-size: 14px;
	}

	.banner__btn {
		height: 48px;
		font-size: 14px;
	}

	footer {
		gap: 40px;
		padding: 32px 0;
	}

	.footer__title {
		font-size: 20px;
	}

	.footer__right {
		flex-direction: column;
		gap: 24px;
	}

	.footer__item-header {
		font-size: 16px;
	}

	.footer__item-link a {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.globe {
		height: 600px;
		padding: 24px 16px;
	}

	.globe__canvas {
		top: 0;
		width: 100%;
		left: 0;
		height: 100%;
	}

	.globe__title {
		font-size: 28px;
	}

	.globe__subtitle {
		font-size: 14px;
	}

	.globe__img {
		max-width: 100px;
	}

	.globe__text {
		font-size: 14px;
	}

	.intro__badge {
		max-width: 200px;
	}

	.intro__badge-text {
		font-size: 12px;
	}

	.intro__title {
		font-size: 24px;
	}

	.intro__subtitle {
		font-size: 14px;
	}

	.intro__btn {
		height: 44px;
		font-size: 13px;
	}

	.intro__btn-descr {
		font-size: 12px;
	}

	.intro__img {
		max-width: 220px;
	}

	.benefits__title {
		font-size: 26px;
		text-align: center;
	}

	.benefits__subtitle {
		font-size: 26px;
	}

	.benefits__grid-title {
		font-size: 18px;
	}

	.benefits__grid-descr {
		font-size: 14px;
	}

	.graph__title {
		font-size: 24px;
	}

	.graph__subtitle {
		font-size: 14px;
	}

	.graph__content {
		justify-content: space-between;
	}

	.graph__item {
		max-width: 110px;
		padding: 0 8px;
	}

	.graph__item-img {
		max-width: 32px;
	}

	.graph__item-pile {
		font-size: 28px;
		padding: 10px;
		border-radius: 16px;
	}

	.graph__item-text {
		font-size: 11px;
	}

	.chart__wrapper {
		padding: 20px;
		gap: 32px;
	}

	.chart__title {
		font-size: 18px;
	}

	.chart__sum {
		font-size: 40px;
	}

	.chart__calc-deposit {
		font-size: 20px;
	}

	.compliance__title {
		font-size: 26px;
	}

	.compliance__subtitle {
		font-size: 14px;
	}

	.globe {
		height: 600px;
		padding: 24px 16px;
	}

	.globe__title {
		font-size: 28px;
	}

	.globe__subtitle {
		font-size: 14px;
	}

	.globe__img {
		max-width: 100px;
	}

	.globe__text {
		font-size: 14px;
	}

	.faq {
		padding: 40px 0;
	}

	.faq__title {
		font-size: 24px;
	}

	.faq__item-header {
		padding: 14px;
	}

	.faq__item-title {
		font-size: 14px;
	}

	.faq__item-descr {
		font-size: 14px;
	}

	.banner {
		padding-bottom: 60px;
	}

	.banner__wrapper {
		padding: 20px;
	}

	.banner__title {
		font-size: 20px;
	}

	.banner__subtitle {
		font-size: 14px;
	}

	footer {
		gap: 32px;
		padding: 24px 0;
	}

	.footer__title {
		font-size: 18px;
	}

	.footer__item-header {
		font-size: 14px;
	}

	.footer__item-link a {
		font-size: 14px;
	}
}