/* #region HEADER */
.header {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	max-width: 1192px;
	width: 100%;
	height: 70px;
	border-radius: 0 0 20px 20px;
	z-index: 100;
	transition: height var(--transition);
	overflow: hidden;
	background: var(--bg-black);
}

.header__content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 21px 64px;
	position: relative;
	z-index: 2;
}

.header__logo {
	flex-shrink: 0;
}

.header__nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
}

.header__menu {
	display: flex;
	gap: 25px;
	text-transform: uppercase;
	transition: opacity 0.4s ease;
}

.header__link {
	transition: all var(--transition);
	border-radius: 8px;
	position: relative;

	&::after {
		content: "";
		position: absolute;
		width: 0;
		background-color: var(--primary);
		left: 50%;
		transform: translateX(-50%);
		bottom: -2px;
		height: 2px;
		border-radius: 8px;
		transition: all 0.3s ease;
	}

	&:hover,
	&:focus,
	&.active {
		&::after {
			width: 100%;
			animation: pulse11 1s;
			box-shadow: 0 0 0 18px transparent;
		}
	}
}

@keyframes pulse11 {
	0% {
		box-shadow: 0 0 0 0 rgba(77, 154, 255, 0.4);
	}
	100% {
		box-shadow: 0 0 0 18px transparent;
	}
}

.header__burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;

	&:hover {
		.header__burger-line {
			background: var(--primary);

			&:nth-child(2) {
				width: 50%;
				transform-origin: left;
			}
		}
	}

	&.active {
		.header__burger-line {
			&:nth-child(1) {
				transform: rotate(45deg) translate(5px, 6px);
			}
			&:nth-child(2) {
				opacity: 0;
			}
			&:nth-child(3) {
				transform: rotate(-45deg) translate(5px, -6px);
			}
		}
	}
}

.header__burger-line {
	width: 25px;
	height: 3px;
	background: var(--white);
	border-radius: 3px;
	transition: all var(--transition);
	transform-origin: center;
}

@media (max-width: 1200px) {
	.header {
		height: 80px;

		&.open {
			height: 457px;
		}
	}

	.header__content {
		padding: 27px 0;
	}

	.header__menu {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		margin-top: 136px;
		gap: 32px;
		position: absolute;
		top: 80px;
		left: 0;
		width: 100%;
		height: calc(100% - 80px);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.4s ease;

		&.active {
			opacity: 1;
			pointer-events: auto;
		}
	}

	.header__burger {
		display: flex;
		justify-content: center;
	}
}

/* #endregion Header */

/* #region HERO SECTION */
.hero {
	position: relative;
	padding-top: 165px;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 78.4%, #000 100%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%),
		url("/img/bg.avif") center/cover no-repeat;
	z-index: -1;
}

.hero__content {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hero__left,
.hero__right {
	display: flex;
	flex-direction: column;
}

.hero__right {
	max-width: 384px;
	width: 100%;
}

.hero__title {
	display: flex;
	flex-direction: column;
	text-transform: uppercase;
	font-size: 24px;
	font-weight: var(--fw-400);
	margin-bottom: 32px;

	.hero__accent {
		font-weight: var(--fw-600);
		font-size: 108px;
	}

	span:last-child {
		text-align: end;
	}
}

.hero__description {
	display: flex;
	flex-direction: column;
	gap: 16px;
	border-radius: 30px;
	background: var(--primary);
	padding: 20px;
	max-width: 671px;
}

.hero__buttons {
	display: flex;
	gap: 10px;
	width: 100%;
}

.hero__btn {
	max-width: 150px;
}

.hero__stats {
	display: flex;
	align-items: center;
	padding: 12px 20px;
	border-radius: 30px;
	width: fit-content;
	margin-top: 96px;
}

.hero__stat {
	display: flex;
	align-items: center;
	gap: 10px;

	&:nth-child(1) {
		padding-right: 10px;
		border-right: var(--border-primary);
	}

	&:nth-child(2) {
		padding-left: 10px;
	}
}

.hero__stat-number {
	display: block;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 32px;
}

.hero__social {
	display: flex;
	padding: 35px 20px;
	gap: 16px;
	flex-wrap: wrap;
	border-radius: 30px;
	background: var(--primary);
	width: fit-content;
	margin-top: 32px;
	margin-left: auto;
}

.hero__social img {
	width: 25px;
	aspect-ratio: 1;
	opacity: 0.7;
	transition: opacity var(--transition);

	&:hover {
		opacity: 1;
	}
}

@media (max-width: 1200px) {
	.hero {
		padding-top: 100px;
	}
	.hero__content {
		flex-direction: column;
		align-items: center;
		gap: 64px;
	}
	.hero__left,
	.hero__right {
		align-items: center;
		gap: 16px;
	}
	.hero__title {
		margin-bottom: 200px;
	}
	.hero__description {
		order: 1;
		align-items: center;
		max-width: 744px;
		text-align: center;
	}
	.hero__stats {
		margin-top: 0;
	}
	.hero__buttons {
		justify-content: center;
	}
	.hero__social {
		margin: 0;
		padding: 24px 20px;
		width: 100%;
		justify-content: space-between;

		img {
			width: 38px;
		}
	}
}

@media (max-width: 768px) {
	.hero__title {
		font-size: 20px;
		.hero__accent {
			font-size: 54px;
		}
	}
	.hero__description {
		padding: 16px;
	}
	.hero__text {
		font-size: 16px;
	}
	.hero__stats {
		padding: 12px 16px;
	}
	.hero__stat {
		gap: 8px;
		img {
			width: 42px;
		}
	}
	.hero__stat-number {
		font-size: 22px;
	}
	.hero__stat-label {
		font-size: 14px;
	}
	.hero__btn {
		padding-inline: 24px;
	}
}

/* #endregion HERO SECTION */

/* #region ABOUT SECTION */
.about {
	position: relative;
	padding-top: 100px;
	overflow: hidden;
}

.about__background {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.about__circle {
	position: absolute;
	width: 687px;
	height: 687px;
	border-radius: 50%;
	border: 114px solid rgba(12, 108, 233, 0.2);
	background: transparent;
	backdrop-filter: blur(24px);
	z-index: -1;

	&.about__circle--top {
		top: 0;
		left: -200px;
	}

	&.about__circle--bottom {
		width: 477px;
		height: 477px;
		border: 74px solid rgba(79, 155, 255, 0.1);
		bottom: 20%;
		right: 5%;
		z-index: -1;
	}
}

.about__wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 32px;
	padding-bottom: 90px;
}

.about__content {
	display: flex;
	flex-direction: column;
	width: 586px;
	padding: 32px;
	gap: 8px;
	border-radius: 30px;
}

.about__subtitle {
	text-transform: uppercase;
	margin-bottom: 8px;
}

.about__title {
	font-size: 64px;
	font-weight: var(--fw-600);
	text-transform: uppercase;
}

.about__text {
	font-size: 16px;
	margin-bottom: 18px;

	&:last-child {
		margin-bottom: 0;
	}
}

.about__stats {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 20px;
}

.about__stat {
	text-align: center;
	border-radius: 30px;
	padding: 16px 20px;
}

.about__number {
	display: block;
	font-size: 32px;
	font-weight: var(--fw-600);
	margin-bottom: 10px;
}

.about__label {
	font-size: 22px;
	text-transform: uppercase;
}

.about__figure {
	position: relative;
	max-width: 506px;
}

.about__image {
	border-radius: 30px;
	border: 10px solid var(--white);
	height: 100%;
}

.about__clip {
	position: absolute;
	top: -20px;
	right: -45px;
	width: 108px;
	height: 58px;
	transform: rotate(47deg);
	border-radius: 40px;
	border: 10px solid var(--primary);
}

.about__quote {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	padding: 20px;
	border-radius: 15px;
	max-width: 466px;
	width: 100%;
	font-feature-settings: "liga" off, "clig" off;
	font-size: 16px;
}

.about__author {
	margin-top: 16px;
	text-align: right;
	font-size: 18px;
	font-weight: var(--fw-600);
}

.about__buttons {
	display: flex;
	gap: 10px;
	margin-top: 16px;
}

.about__btn {
	flex: 1;
}

.about__interface {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 36px;
	max-width: 1352px;
	width: 100%;
	padding-block: 45px;
	padding-inline: 0 45px;
	flex-shrink: 0;
	border-radius: 0 40px 40px 0;
	background: var(--primary);

	.about__figure {
		max-width: 635px;
	}
}

.laptop-container {
	position: relative;
	display: inline-block;

	.laptop-img {
		display: block;
		width: 100%;
		position: relative;
		z-index: 1;
	}
	.screen-img {
		position: absolute;
		top: 8px;
		left: -61px;
		border-radius: 10px;
	}
}

.about__inner {
	display: flex;
	flex-direction: column;
	max-width: 600px;
	width: 100%;

	.about__text {
		margin-bottom: 0;
	}
	.about__buttons {
		margin-top: 32px;
		max-width: 335px;
		width: 100%;
	}
}

.about__title--small {
	font-size: 22px;
	font-weight: var(--fw-700);
	line-height: 1.5;
	margin-block: 32px 16px;
}

@media (max-width: 1200px) {
	.about {
		padding-top: 80px;
	}
	.about__wrapper {
		justify-content: center;
		padding-bottom: 64px;
	}

	.about__header {
		text-align: center;
	}
	.about__text {
		text-align: center;
		margin-bottom: 12px;
	}
	.about__title {
		font-size: 48px;
	}
	.about__stats {
		margin-top: 16px;
		gap: 16px;
	}

	.about__interface {
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.about__inner {
		flex-direction: column;
		align-items: center;
		max-width: 100%;
		padding-left: 20px;
	}
}

@media (max-width: 768px) {
	.about__content {
		width: 100%;
	}
	.about__subtitle {
		font-size: 16px;
	}
	.about__title {
		font-size: 38px;
	}
	.about__text {
		font-size: 14px;
		margin-bottom: 8px;
	}
	.about__number {
		font-size: 22px;
	}
	.about__label {
		font-size: 16px;
	}
	.about__image {
		border-width: 5px;
		height: 538px;
	}
	.about__clip {
		top: -10px;
		right: -20px;
		width: 65px;
		height: 34px;
		border-width: 5px;
	}
	.about__quote {
		bottom: 16px;
		max-width: 303px;
		padding: 16px;
		font-size: 14px;
	}
	.about__author {
		margin-top: 8px;
		font-size: 16px;
	}
	.about__buttons {
		margin-top: 8px;
	}
	.about__btn {
		text-align: center;
		padding-inline: 20px;
		padding-block: 12px;
	}

	.about__interface {
		padding-block: 20px;
		padding-inline: 0 20px;
		gap: 32px;
	}

	.about__inner {
		text-align: center;
		.about__buttons {
			margin-top: 16px;
		}
	}

	.about__title--small {
		font-size: 18px;
		font-weight: var(--fw-700);
		line-height: 1.83;
		margin-block: 16px;
	}

	.laptop-container {
		.screen-img {
			top: 6px;
		}
	}
}

@media (max-width: 505px) {
	.laptop-container {
		.screen-img {
			left: calc(-61px + (505px - 100vw) * 0.15);
		}
	}
}

/* #endregion ABOUT SECTION */

/* #region TECH-ADVANTAGES SECTION */
.tech-advantages {
	padding-block: 100px;
	overflow: clip;
	position: relative;
}

.tech-advantages__circle {
	position: absolute;
	width: 580px;
	height: 580px;
	border-radius: 50%;
	border: 74px solid rgba(79, 155, 255, 0.1);
	background: transparent;
	backdrop-filter: blur(24px);
	z-index: -1;

	&.tech-advantages__circle--top {
		top: -10%;
		left: 6%;
	}

	&.tech-advantages__circle--bottom {
		width: 618px;
		height: 618px;
		border: 74px solid rgba(79, 155, 255, 0.1);
		bottom: -7%;
		left: -5%;
		z-index: -1;
	}
}

.tech-advantages__subtitle {
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 32px;

	span {
		color: var(--primary);
	}
}

.tech-advantages__header {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 32px;
	border-radius: 30px;
	background: linear-gradient(
			0deg,
			rgba(0, 0, 0, 0.4) 0%,
			rgba(0, 0, 0, 0.4) 100%
		),
		url(/img/technology.avif) lightgray -0.266px -45.692px / 100.045% 120.927%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 554px;
}

.tech-advantages__clip {
	position: absolute;
	top: -15px;
	right: -35px;
	width: 108px;
	height: 58px;
	transform: rotate(47deg);
	border-radius: 40px;
	border: 10px solid var(--white);
	z-index: 1;
}

.tech-advantages__title-wrapper {
	position: relative;
	max-width: 836px;
	width: 100%;
	padding: 20px;
	border-radius: 30px 0 30px 30px;

	&::before {
		content: "";
		position: absolute;
		top: 0;
		right: -100px;
		width: 100px;
		height: 100px;
		background: var(--primary);

		clip-path: polygon(20% 0%, 11% 6%, 6% 11%, 3% 19%, 0% 30%, 0% 0%);
	}
}

.tech-advantages__title {
	text-transform: uppercase;
	font-size: 64px;
	font-weight: var(--fw-600);
}

.tech-advantages__intro {
	position: relative;
	max-width: 780px;
	width: 100%;
	border-radius: 30px 30px 30px 0;
	padding: 20px;
	font-size: 15px;
	text-align: right;
	margin-left: auto;

	&::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: -16px;
		width: 100px;
		height: 100px;
		background: var(--primary);

		clip-path: polygon(
			17.5% 62%,
			14.3% 76.8%,
			11% 86.3%,
			5.1% 95.3%,
			0% 100%,
			17.8% 99.8%
		);
	}
}

.tech-advantages__list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.tech-advantages__item {
	flex: 1 1 auto;

	&:nth-child(1) {
		flex-basis: 586px;

		.advantage-card__description {
			max-width: 427px;
		}
	}
	&:nth-child(2) {
		flex-basis: 584px;

		.advantage-card__description {
			max-width: 448px;
		}
	}
	&:nth-child(3) {
		flex-basis: 687px;

		.advantage-card__description {
			max-width: 387px;
		}
	}
	&:nth-child(4) {
		flex-basis: 483px;

		.advantage-card__description {
			max-width: 367px;
		}
	}
	&:nth-child(5) {
		flex-basis: 485px;

		.advantage-card__description {
			max-width: 295px;
		}
	}
	&:nth-child(6) {
		flex-basis: 685px;

		.advantage-card__description {
			max-width: 387px;
		}
	}
}

.advantage-card {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;

	padding: 20px;
	border-radius: 30px;
	height: 100%;
	transition: transform var(--transition);

	&:hover {
		transform: translateY(-8px);
	}
}

.advantage-card__content {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	gap: 16px;
	height: 100%;
}

.advantage-card__icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	aspect-ratio: 1;
	padding: 8px;
	border-radius: 50%;
	background: var(--white);

	&.advantage-card__icon--blue {
		background: var(--primary);
	}
}

.advantage-card__title {
	font-size: 32px;
	line-height: 1.25;
	font-weight: var(--fw-400);
	text-transform: uppercase;
}

.advantage-card__description {
	font-size: 16px;
}

.tech-advantages__links {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 32px;
}

.tech-advantages__link {
	max-width: fit-content;
}

@media (max-width: 1200px) {
	.tech-advantages__item {
		flex-basis: 100%;

		&:nth-child(1) {
			flex-basis: 100%;
			order: 0;

			.advantage-card__description {
				max-width: 100%;
			}
		}

		&:nth-child(2) {
			order: 1;
			flex-basis: 100%;
			text-align: end;

			.advantage-card {
				flex-direction: row-reverse;
			}

			.advantage-card__description {
				max-width: 100%;
			}
		}
		&:nth-child(3) {
			order: 3;
			flex-basis: 100%;
			text-align: end;

			.advantage-card {
				flex-direction: row-reverse;
			}

			.advantage-card__description {
				max-width: 100%;
			}
		}
		&:nth-child(4) {
			order: 2;
			flex-basis: 100%;

			.advantage-card__description {
				max-width: 100%;
			}
		}
		&:nth-child(5) {
			order: 4;
			flex-basis: 100%;

			.advantage-card__description {
				max-width: 100%;
			}
		}
		&:nth-child(6) {
			order: 5;
			flex-basis: 100%;
			text-align: end;

			.advantage-card {
				flex-direction: row-reverse;
			}

			.advantage-card__description {
				max-width: 100%;
			}
		}
	}

	.advantage-card {
		align-items: center;
		height: 206px;
	}

	.advantage-card__content {
		flex-direction: column-reverse;
		justify-content: center;
		gap: 16px;
	}

	.tech-advantages__title-wrapper,
	.tech-advantages__intro {
		border-radius: 30px;

		&::before {
			display: none;
		}
	}

	.tech-advantages__title {
		font-size: 42px;
	}
}

@media (max-width: 768px) {
	.tech-advantages {
		padding-block: 64px;
	}

	.advantage-card__content {
		gap: 8px;
	}

	.tech-advantages__header {
		background-image: url(/img/technology.avif);
		background-color: lightgray;
		background-position: center 43%;
		background-size: contain;
		background-repeat: no-repeat;
		height: 595px;
	}

	.tech-advantages__clip {
		top: -10px;
		right: -20px;
		width: 65px;
		height: 34px;
		border: 5px solid var(--white);
	}

	.tech-advantages__title-wrapper {
		padding: 16px;
		width: 95%;
	}
	.tech-advantages__title {
		font-size: 38px;
	}
	.tech-advantages__intro {
		width: 95%;
		padding: 8px 16px 8px 8px;
		font-size: 13px;
	}

	.tech-advantages__list {
		gap: 16px;

		position: relative;
		padding-top: 2rem;
	}

	.tech-advantages__item {
		position: sticky;

		&:nth-child(1) {
			top: 5rem;
			z-index: 1;
		}

		&:nth-child(2) {
			top: 9rem;
			z-index: 2;
		}

		&:nth-child(3) {
			top: 18rem;
			z-index: 4;
		}

		&:nth-child(4) {
			top: 13rem;
			z-index: 4;
		}

		&:nth-child(5) {
			top: 23rem;
			z-index: 5;
		}

		&:nth-child(6) {
			top: 0;
			z-index: 6;
		}
	}

	.advantage-card {
		padding: 16px;
		gap: 12px;
	}
	.advantage-card__title {
		font-size: 22px;
		font-weight: var(--fw-500);
	}
	.advantage-card__description {
		font-size: 14px;
	}
	.tech-advantages__link {
		padding-block: 12px;
	}
}

/* #endregion TECH-ADVANTAGES SECTION */

/* #region FOUNDERS SECTION  */
.wrapper-bg-circle {
	position: relative;
	overflow: hidden;
}

.founders {
	padding-bottom: 120px;
}

.founders__circle {
	position: absolute;
	width: 477px;
	height: 477px;
	border-radius: 50%;
	border: 74px solid rgba(79, 155, 255, 0.1);
	background: transparent;
	backdrop-filter: blur(24px);
	z-index: -1;

	&.founders__circle--top {
		top: 25%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	&.founders__circle--bottom {
		border: 104px solid rgba(255, 255, 255, 0.1);
		bottom: 45%;
		right: -30%;
		transform: translate(-50%, -15%);
	}
}

.founders__label {
	text-align: center;
}

.founders__title {
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	font-size: 50px;
	font-weight: var(--fw-600);
	line-height: 1.15;
	text-transform: uppercase;
	margin-top: 20px;
}

.founders__title-accent {
	font-size: 134px;
	line-height: normal;
}

.founders__title--sm {
	max-width: 420px;
	order: 2;
}

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

.founders__content {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 40px;

	.founders__card {
		max-width: 485px;

		.founders__quote {
			font-size: 16px;
		}
	}
}

.founders__intro {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
	max-width: 647px;
	gap: 12px;
}

.founders__buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	max-width: 305px;
	width: 100%;
}

.founders__cards {
	display: flex;
	gap: 20px;

	& > *:nth-child(1) {
		max-width: 688px;
	}
}

.founders__card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px;
	border-radius: 30px;
}

.founders__quote {
	margin-bottom: 26px;
	line-height: 1.5;
}

.founders__author {
	text-align: end;
}

@media (max-width: 1200px) {
	.founders {
		padding-bottom: 80px;
	}
	.founders__title {
		flex-direction: column;
		gap: 0;
		margin-block: 0 8px;
		text-align: center;
		font-size: 42px;
	}

	.founders__title-accent {
		font-size: 74px;
		line-height: unset;
	}
	.founders__title--sm {
		order: 0;
	}
	.founders__content {
		flex-direction: column;
		gap: 32px;
	}
	.founders__intro {
		align-items: center;
		text-align: center;
		gap: 16px;
	}
	.founders__cards {
		flex-direction: column-reverse;
		align-items: center;
		max-width: 485px;
		margin-inline: auto;
	}
}

@media (max-width: 768px) {
	.founders {
		padding-bottom: 64px;
	}

	.founders__label {
		display: none;
	}

	.founders__title {
		font-size: 38px;
	}

	.founders__subtitle {
		font-size: 16px;
	}
	.founders__btn {
		padding-block: 12px;
	}

	.founders__content {
		.founders__card {
			.founders__quote {
				font-size: 14px;
			}
		}
	}

	.founders__card {
		padding: 16px;
	}
	.founders__quote {
		margin-bottom: 10px;
		font-size: 14px;
	}
	.founders__author {
		font-size: 16px;
	}
}

/* #endregion FOUNDERS SECTION */

/* #region FEATURES SECTION */
.features__wrapper {
	padding-top: 32px;
	padding-inline: 90px;
	background: var(--primary);
	border-radius: 40px;

	position: relative;
	overflow: hidden;
}

.features__title-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.features__title {
	font-size: 64px;
	font-weight: var(--fw-600);
	text-transform: uppercase;

	&:first-child {
		margin-right: 16px;
	}
}

.features__title-bottom {
	&:nth-of-type(1) {
		margin-right: 16px;
	}
}

.features__subtitle {
	font-size: 18px;
	max-width: 384px;
	text-align: right;
	font-weight: var(--fw-400);
	order: 3;
	margin-left: auto;
}

.features__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-block: 16px;
}

.features__item {
	display: flex;
	align-items: center;
	gap: 16px;
	max-width: 384px;
	background: var(--white);
	color: var(--black);
	padding: 20px;
	border-radius: 30px;

	&:nth-child(1) {
		align-self: start;
	}

	&:nth-child(2) {
		align-self: center;
	}

	&:nth-child(3) {
		align-self: end;
	}
}

.features__icon {
	width: 64px;
	flex-shrink: 0;
}

.features__item-title {
	font-size: 18px;
	font-weight: var(--fw-500);
	margin-bottom: 6px;
	text-transform: uppercase;
}

.features__item-text {
	font-size: 16px;
}

.features__note {
	max-width: 485px;
	margin-right: auto;
}

.features__visual {
	position: relative;
	display: inline-block;
	overflow: hidden;
	bottom: -6px;
}

.features__laptop {
	width: 100%;
	display: block;
	position: relative;
	z-index: 1;
}

.features__screen {
	position: absolute;
	top: 5%;
	left: 2%;
	width: 96%;
}

@media (max-width: 1200px) {
	.features__title-wrapper {
		flex-direction: column;
	}
	.features__subtitle {
		text-align: center;
		order: 0;
		margin-left: unset;
	}
	.features__note {
		max-width: 485px;
		margin-right: unset;
	}
	.features__title {
		&:first-child {
			margin-right: 0;
		}
	}
	.features__title-bottom {
		&:nth-of-type(1) {
			margin-right: 0;
			order: -1;
		}
	}
}

@media (max-width: 768px) {
	.features {
		padding-top: 20px;
		background: var(--primary);
		border-radius: 40px;
		overflow: hidden;
	}

	.features__wrapper {
		padding-top: 0;
		padding-inline: 0;
		background: transparent;
		border-radius: unset;
	}

	.features__title {
		font-size: 54px;
	}
	.features__subtitle,
	.features__note {
		font-size: 16px;
		text-align: center;
	}

	.features__list {
		align-items: center;
		margin-block: 32px;
	}
	.features__item {
		padding: 16px;
	}
	.features__item-title {
		font-size: 16px;
	}
	.features__item-text {
		font-size: 14px;
	}
	.features__visual {
		margin-top: 32px;
	}
}

/* #endregion FEATURES SECTION */

/* #region GLOBAL-MARKETS SECTION */

.global-markets {
	padding-block: 100px;
	overflow: clip;
	position: relative;
}

.global-markets__circle {
	position: absolute;
	width: 477px;
	height: 477px;
	border-radius: 50%;
	border: 104px solid rgba(18, 28, 43, 0.5);
	background: transparent;
	backdrop-filter: blur(24px);
	z-index: -1;

	&.global-markets__circle--top {
		top: 20%;
		left: 85%;
		transform: translate(-50%, -50%);
	}
	&.global-markets__circle--bottom {
		width: 710px;
		height: 455px;
		border-radius: 280px;
		border: 104px solid rgba(28, 44, 64, 0.5);
		bottom: -12%;
		left: -25%;
		rotate: 90deg;
		transform: translate(-50%, -15%);
	}
}

.global-markets__top {
	margin-bottom: 64px;
}

.global-markets__title {
	display: flex;
	flex-direction: column;
	font-size: 50px;
	font-weight: var(--fw-600);
	text-transform: uppercase;
	margin-bottom: 64px;
}

.global-markets__subtitle {
	&:last-child {
		align-self: end;
	}
}

.global-markets__title-light {
	font-size: 185px;
	align-self: center;
}

.global-markets__content {
	display: flex;
	border-radius: 40px;
	background: var(--primary);
	padding-right: 20px;
	gap: 20px;
}

.global-markets__image {
	max-width: 776px;

	img {
		width: 100%;
		border-radius: 40px;
	}
}

.global-markets__info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 16px;
	padding-block: 20px;
}

.global-markets__info-title {
	font-size: 32px;
	font-weight: var(--fw-500);
	text-transform: uppercase;
	margin-bottom: 16px;
}

.global-markets__info-text {
	max-width: 376px;
}

.global-markets__buttons {
	display: flex;
	align-items: center;
	gap: 9px;
	text-transform: uppercase;
}

.global-markets__arrow {
	padding: 16px;
	width: auto;

	&:hover {
		background-color: var(--white);
		color: var(--black);
	}
}

.global-markets__bottom {
	display: flex;
	gap: 20px;
	align-items: center;
}

.global-markets__features {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.global-markets__feature {
	display: flex;
	border-radius: 30px;
	padding: 20px;
	max-width: 687px;
	transition: transform var(--transition);

	&:hover {
		transform: translateY(-4px);
	}
}

.global-markets__wrapper {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;

	img {
		width: 60px;
		aspect-ratio: 1;
		flex-shrink: 0;
	}
}

.global-markets__feature-title {
	font-size: 32px;
	font-weight: var(--fw-600);

	span {
		color: var(--primary);
	}
}

.global-markets__feature-text {
	font-size: 16px;
}

.global-markets__photo {
	position: relative;
	height: 598px;
	flex: 1 1 485px;
	max-width: 485px;
	width: 100%;

	img {
		width: 100%;
		height: 100%;
		border-radius: 30px;
		border: 10px solid var(--white);
	}
}

.global-markets__clip {
	position: absolute;
	top: -20px;
	right: -45px;
	width: 108px;
	height: 58px;
	transform: rotate(47deg);
	border-radius: 40px;
	border: 10px solid var(--primary);
}

@media (max-width: 1200px) {
	.global-markets {
		padding-block: 80px;
	}
	.global-markets__title {
		font-size: 38px;
		align-items: center;
		margin-bottom: 32px;
		gap: 6px;
	}

	.global-markets__subtitle {
		&:last-child {
			align-self: center;
		}
	}

	.global-markets__title-light {
		font-size: 108px;
		align-self: center;
	}

	.global-markets__content {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 16px;
		gap: 16px;
	}

	.global-markets__info {
		padding-block: 0;
		display: contents;
	}
	.global-markets__info-content {
		display: contents;
	}
	.global-markets__info-title {
		margin-bottom: 0;
		order: 0;
	}
	.global-markets__info-text {
		max-width: 100%;
		order: 1;

		&:last-child {
			order: 3;
		}
	}

	.global-markets__image {
		order: 2;
	}

	.global-markets__buttons {
		order: 4;
	}

	.global-markets__bottom {
		flex-direction: column-reverse;
		gap: 32px;
	}
}

@media (max-width: 768px) {
	.global-markets {
		padding-block: 64px;
	}
	.global-markets__top {
		margin-bottom: 32px;
	}
	.global-markets__title-light {
		font-size: 70px;
	}
	.global-markets__info-title {
		font-size: 25px;
	}
	.global-markets__info-text {
		font-size: 14px;
	}
	.global-markets__image {
		max-width: 100%;
		img {
			border-radius: 15px;
		}
	}
	.global-markets__buttons {
		gap: 6px;
	}
	.global-markets__button {
		padding: 12px 24px;
	}
	.global-markets__arrow {
		padding: 12px;
	}

	.global-markets__photo {
		img {
			border: 5px solid var(--white);
		}
	}

	.global-markets__clip {
		top: -6px;
		right: -20px;
		width: 65px;
		height: 34px;
		border: 5px solid var(--primary);
	}

	.global-markets__features {
		position: relative;
	}

	.global-markets__feature {
		position: sticky;

		&:nth-child(1) {
			top: 5rem;
			z-index: 1;
		}
		&:nth-child(2) {
			top: 14rem;
			z-index: 2;
		}
		&:nth-child(3) {
			top: 0;
			z-index: 3;
		}
	}

	.global-markets__wrapper {
		margin-bottom: 16px;
		flex-direction: column;
		text-align: center;
	}

	.global-markets__feature-title {
		font-size: 22px;
	}

	.global-markets__feature-text {
		font-size: 14px;
		text-align: center;
	}
}

/* #endregion GLOBAL-MARKETS SECTION */

/* #region FUTURE SECTION */
.future {
	background: var(--primary);
	padding-block: 32px;
	border-radius: 40px;
}

.future__title,
.future__subtitle {
	font-weight: var(--fw-600);
	text-transform: uppercase;
}

.future__title {
	font-size: 132px;
}

.future__subtitle {
	font-size: 97px;
}

.future__content {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 24px;

	&:nth-child(2) {
		justify-content: end;
	}

	&:last-child {
		margin-bottom: 36px;
		justify-content: end;

		.future__text {
			text-align: end;
		}
	}
}

.future__text {
	max-width: 586px;
	width: 100%;
}

.future__card {
	display: flex;
	flex-direction: column;
	gap: 25px;
	max-width: 283px;
	width: 100%;
	border-radius: 30px;
	padding: 20px;
	transition: transform var(--transition);

	&:hover {
		transform: translateY(-5px);
	}
}

.future__card--right {
	background: var(--white);
	color: var(--black);
}

.future__card-title {
	font-size: 32px;
	font-weight: var(--fw-500);

	span {
		color: var(--primary);
	}
}

.future__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.future__button {
	text-transform: uppercase;
}

.future__arrow {
	padding: 16px;
	width: auto;

	&:hover {
		background-color: var(--white);
		color: var(--black);
	}
}

@media (max-width: 1200px) {
	.future {
		padding-block: 20px;
	}
	.future__title {
		font-size: 97px;
	}
	.future__subtitle {
		font-size: 70px;
	}
	.future__content {
		display: flex;
		align-items: center;
		gap: 8px;
		margin-bottom: 32px;
		text-align: center;

		&:nth-child(1) {
			flex-direction: column-reverse;
		}

		&:nth-child(2) {
			flex-direction: column;
		}

		&:nth-child(3) {
			flex-direction: column-reverse;
		}

		&:last-child {
			flex-direction: column;
			margin-bottom: 32px;

			.future__text {
				text-align: center;
			}
		}
	}

	.future__card {
		flex-direction: column-reverse;
		max-width: 350px;
		gap: 16px;
		padding: 16px;
		text-align: center;
	}
	.future__text {
		text-align: center;
	}
}

@media (max-width: 768px) {
	.future__title {
		font-size: 70px;
	}
	.future__subtitle {
		font-size: 38px;
	}
	.future__card-title {
		font-size: 22px;
	}

	.future__tagline,
	.future__text {
		font-size: 14px;
	}

	.future__cta {
		gap: 6px;
	}
	.future__button {
		padding-block: 12px;
	}
	.future__arrow {
		padding: 12px;
	}
}

/* #endregion FUTURE SECTION  */

/* #region SUBSCRIPTIONS SECTION */
.subscriptions {
	padding-block: 100px 80px;
	position: relative;
	overflow: hidden;
}

.subscriptions__circle {
	position: absolute;
	width: 805px;
	height: 802px;
	border-radius: 50%;
	border: 100px solid rgba(29, 38, 51, 0.5);
	background: transparent;
	backdrop-filter: blur(12px);
	z-index: -1;

	&.subscriptions__circle--top {
		top: -3%;
		right: 26%;
		transform: translate(-50%, -50%);
	}
	&.subscriptions__circle--bottom {
		width: 1082px;
		height: 1078px;
		border: 104px solid rgba(26, 32, 38, 0.5);
		bottom: -20%;
		right: -65%;
		transform: translate(-50%, -15%);
	}
}

.subscriptions__intro {
	text-align: center;
	max-width: 906px;
	margin-inline: auto;
	margin-bottom: 100px;
	padding: 32px 50px;
	border-radius: 40px;
}

.subscriptions__title {
	font-size: 64px;
	font-weight: var(--fw-600);
	margin-bottom: 8px;
	text-transform: uppercase;
}

.subscriptions__subtitle {
	font-size: 20px;
	margin-bottom: 32px;
}

.subscriptions__cta {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.subscriptions__arrow {
	width: auto;
	padding: 16px;
}

.subscriptions__compare {
	text-align: center;
}

.subscriptions__compare-title {
	font-size: 64px;
	font-weight: var(--fw-600);
	margin-bottom: 8px;
	text-transform: uppercase;
}

.subscriptions__compare-subtitle {
	margin-bottom: 45px;
	font-size: 20px;
	max-width: 780px;
	margin-inline: auto;
}

.subscriptions__columns {
	display: flex;
	justify-content: center;
	position: relative;
	min-height: 625px;
	perspective: 1000px;
}

.subscriptions__column {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 35px;
	max-width: 400px;
	border-radius: 30px;
	padding: 20px 30px;
	text-align: left;
	transition: all var(--transition);
	position: absolute;
	color: var(--gray);
	background: var(--bg-black);
	box-shadow: var(--box-shadow);
	backdrop-filter: blur(15px);
	cursor: pointer;
	z-index: 1;

	&.active {
		background: var(--primary);
		color: var(--white);
		box-shadow: 0 4px 18px var(--primary);
		z-index: 2;
		opacity: 1;
	}
}

.subscriptions__column-header {
	padding-inline: 32px;
}

.subscriptions__column-title {
	font-size: 42px;
	font-weight: var(--fw-500);
	text-transform: uppercase;
	margin-bottom: 16px;
}

.subscriptions__column-subtitle {
	font-size: 16px;
	font-weight: var(--fw-400);
}

.subscriptions__list {
	padding-inline: 32px;
}

.subscriptions__item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
	font-size: 16px;

	&:last-child {
		margin-bottom: 0;
	}

	&::before {
		content: "";
		display: block;
		background-image: url("/img/icons/tick-circle.svg");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		width: 20px;
		aspect-ratio: 1;
		flex-shrink: 0;
	}
}

.subscriptions__btn--small {
	align-self: center;
	max-width: 150px;
	font-size: 18px;
	font-weight: var(--fw-400);
}

@keyframes cardActivate {
	0% {
		transform: translateX(50%) scale(0.9);
	}
	50% {
		transform: translateX(25%) scale(0.95);
	}
	100% {
		transform: translateX(0) scale(1);
	}
}

@keyframes cardDeactivate {
	0% {
		transform: translateX(0) scale(1);
	}
	50% {
		transform: translateX(25%) scale(0.95);
	}
	100% {
		transform: translateX(50%) scale(0.9);
	}
}

@media (max-width: 1200px) {
	.subscriptions {
		padding-block: 80px 64px;
	}
	.subscriptions__intro {
		margin-bottom: 64px;
		padding: 32px 20px;
	}
	.subscriptions__title {
		font-size: 42px;
	}
	.subscriptions__subtitle {
		font-size: 18px;
		margin-bottom: 24px;
	}

	.subscriptions__compare-title {
		font-size: 46px;
	}
	.subscriptions__compare-subtitle {
		margin-bottom: 32px;
		font-size: 18px;
	}
	.subscriptions__columns {
		flex-direction: column-reverse;
		align-items: center;
		min-height: auto;
		gap: 0;
		perspective: none;
	}
	.subscriptions__column {
		padding: 20px;
		gap: 16px;
		position: relative;
		width: 100%;
		margin-bottom: 0;
		transform: none !important;
		opacity: 1;
		transition: transform 0.6s ease, opacity 0.6s ease;

		&.active {
			transform: translateY(0) scale(1) !important;
		}

		&.cons-visible {
			transform: translateY(4%) scale(0.95) !important;
		}

		&.cons-active {
			transform: translateY(0) scale(1) !important;
			z-index: 3;
		}
	}

	.subscriptions__column--pros {
		transform: translateY(0) scale(0.95);
		z-index: 2;
		margin-bottom: -50px;
	}

	.subscriptions__column--cons {
		transform: translateY(4%) scale(0.95);
		z-index: 1;
	}

	.subscriptions__column-header {
		padding-inline: 0;
		text-align: center;
	}
	.subscriptions__column-title {
		font-size: 68px;
		margin-bottom: 8px;
	}
	.subscriptions__list {
		padding-inline: 0;
	}
}

@media (max-width: 768px) {
	.subscriptions {
		padding-block: 64px;
	}
	.subscriptions__title {
		font-size: 32px;
	}
	.subscriptions__subtitle {
		font-size: 16px;
		margin-bottom: 16px;
	}
	.subscriptions__cta {
		gap: 6px;
	}
	.subscriptions__button {
		padding: 12px 24px;
	}
	.subscriptions__arrow {
		padding: 12px;
	}
	.subscriptions__compare-title {
		font-size: 38px;
	}
	.subscriptions__compare-subtitle {
		font-size: 16px;
		max-width: 100%;
	}
	.subscriptions__column {
		min-height: 503px;
	}
	.subscriptions__btn--small {
		padding-block: 12px;
		max-width: 100%;
	}
	.subscriptions__item {
		margin-bottom: 10px;
		font-size: 14px;
	}
}

/* #endregion SUBSCRIPTIONS SECTION */

/* #region REVIEWS SECTION */
.reviews {
	background: var(--primary);
	border-radius: 40px;
	padding-block: 32px 34px;
	overflow: hidden;
	position: relative;
}

.reviews__circle {
	position: absolute;
	left: -15%;
	top: 5%;
	transform: translate(-33%, -33%);
	width: 687px;
	height: 687px;
	border-radius: 50%;
	border: 114px solid rgba(115, 176, 255, 0.5);
	background: transparent;
	backdrop-filter: blur(6px);
	z-index: 2;
}

.reviews__header {
	display: flex;
	flex-direction: column;
	margin-bottom: 32px;
	position: relative;
	z-index: 3;
}

.reviews__title {
	display: flex;
	justify-content: flex-start;
	font-size: 64px;
	font-weight: var(--fw-600);
	text-transform: uppercase;
}

.reviews__subtitle {
	margin-block: 16px;
	max-width: 708px;
	margin-inline: auto;
	text-align: center;
}

.reviews__title-sm {
	font-size: 64px;
	font-weight: var(--fw-600);
	text-transform: uppercase;
	text-align: end;
}

.reviews__slider {
	position: relative;
	padding-left: 10%;
}

.reviews__list {
	display: flex;
}

.reviews__item {
	display: flex;
	justify-content: center;
	height: auto;
}

.review {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 20px;
	padding: 20px 30px;
	max-width: 384px;

	&:is(.white-card) {
		.review__author {
			border-top: var(--border-primary);
		}
	}
}

.review__text {
	font-size: 16px;
	line-height: 1.5;
}

.review__author {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 24px;
	border-top: var(--border-white);
	margin-top: 24px;
}

.review__avatar {
	width: 41px;
	aspect-ratio: 1;
	border-radius: 50%;
	object-fit: cover;
}

.review__name {
	text-align: end;
}

.review__location {
	text-align: end;
	font-size: 12px;
}

.reviews__buttons {
	display: none;
	justify-content: flex-end;
	gap: 16px;
	text-align: center;
	margin-top: 32px;
}

@media (max-width: 1200px) {
	.reviews__slider {
		padding-left: 2%;
	}
	.reviews__circle {
		top: -40%;
	}
}

@media (max-width: 768px) {
	.reviews {
		padding-block: 20px;
	}
	.reviews__header {
		text-align: center;
	}
	.reviews__title {
		font-size: 54px;
		justify-content: center;
	}

	.reviews__subtitle {
		font-size: 16px;
		margin-block: 8px;
	}
	.reviews__title-sm {
		font-size: 38px;
		text-align: center;
	}
	.reviews__slider {
		padding-inline: 20px;
	}
	.reviews__buttons {
		display: flex;
		align-items: center;
		padding-bottom: 2px;
	}
	.reviews__button {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 13px 16px;
		gap: 10px;
		border-radius: 10px;
		border: 1px solid #fff;
		color: var(--primary);
		background-color: var(--white);
		cursor: pointer;
		transition: scale 0.3s, color 0.3s, background-color 0.3s;

		&:hover {
			scale: 1.03;
			color: var(--white);
			background-color: transparent;
		}
	}
}

/* #endregion REVIEWS SECTION */

/* #region CAREERS SECTION */
.careers {
	padding-block: 88px 130px;
	position: relative;

	.container {
		overflow: clip;
	}
}

.careers__circle {
	position: absolute;
	width: 477px;
	height: 477px;
	border-radius: 50%;
	border: 114px solid rgba(12, 108, 233, 0.1);
	background: transparent;
	backdrop-filter: blur(24px);
	z-index: -1;

	&.careers__circle--top {
		top: 0;
		left: 50%;
		transform: translate(-50%, 0%);
	}

	&.careers__circle--center {
		top: 45%;
		left: -15%;
		border: 74px solid rgba(13, 26, 43, 0.4);
	}

	&.careers__circle--bottom {
		width: 687px;
		height: 687px;
		border: 114px solid rgba(79, 155, 255, 0.1);
		bottom: 5%;
		right: -25%;
	}
}

.careers__title {
	font-size: 64px;
	font-weight: var(--fw-600);
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 75px;
}

.careers__benefits {
	display: grid;
	grid-template-columns: repeat(3, 283px);
	justify-content: space-around;
	gap: 24px;
	margin-bottom: 32px;
}

.careers__item {
	position: relative;
}

.careers__card {
	position: relative;
	display: flex;
	justify-content: center;
	border-radius: 20px;
	overflow: clip;
	transition: transform 0.3s, box-shadow 0.3s;

	&:hover {
		transform: translateY(-6px);
		box-shadow: 0 8px 20px rgba(79, 155, 255, 0.3);
	}
}

.careers__image-wrapper {
	position: relative;
}

.careers__clip {
	position: absolute;
	top: -3%;
	right: -14%;
	width: 108px;
	height: 58px;
	border-radius: 40px;
	border: 10px solid var(--primary);
	rotate: 48deg;

	&.careers__clip--white {
		border-color: var(--white);
	}
}

.careers__item-title {
	position: absolute;
	bottom: 0;
	max-width: 243px;
	width: 100%;
	padding: 16px 18px;
	margin-bottom: 10px;
	border-radius: 20px;
	background: var(--primary);
	color: var(--white);
	text-align: center;
	font-size: 22px;
	font-weight: var(--fw-600);
	text-transform: uppercase;

	&.white-wrapper {
		background: var(--white);
		color: var(--primary);
	}
}

.careers__cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	background: var(--primary);
	border-radius: 30px;
	padding: 20px;
	text-align: center;
	font-weight: var(--fw-500);
	font-size: 16px;
}

.careers__cta-title {
	font-size: 32px;
	text-transform: uppercase;
	font-weight: inherit;
}

.careers__buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	max-width: 305px;
	width: 100%;
}

@media (max-width: 1200px) {
	.careers__benefits {
		grid-template-columns: repeat(1, 283px);
		gap: 60px;
	}

	.careers__clip {
		&.careers__clip--white {
			rotate: 132deg;
			left: -14%;
			border-color: var(--white);
		}
	}
}

@media (max-width: 768px) {
	.careers {
		padding-block: 64px;
	}
	.careers__title {
		font-size: 52px;
	}
	.careers__item-title {
		font-size: 18px;
	}
	.careers__cta {
		font-size: 14px;
	}
	.careers__cta-title {
		font-size: 22px;
	}
	.careers__buttons {
		max-width: 100%;
	}
	.careers__btn {
		padding: 12px 22px;
	}
}

/* #endregion CAREERS SECTION */

/* #region FAQ SECTION */
.faq {
	padding-bottom: 100px;
}

.faq__header {
	margin-bottom: 32px;
}

.faq__title {
	font-size: 44px;
	font-weight: var(--fw-600);
	text-transform: uppercase;
}

.faq__highlight {
	display: block;
	text-align: center;
	font-size: 84px;
}

.faq__subtitle {
	max-width: 581px;
	text-align: end;
	margin-left: auto;
}

.faq__list {
	padding: 20px;
	border-radius: 40px;
	overflow: hidden;
}

.faq__item {
	border-bottom: 1px solid rgba(79, 155, 255, 0.25);
	transition: background-color 0.3s, border-radius 0.3s;

	&:last-child {
		border-bottom: none;
	}
}

.faq__question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 20px;
	width: 100%;
	color: var(--white);
	font-size: 26px;
	font-weight: var(--fw-500);
	text-transform: uppercase;
	text-align: left;
	text-wrap: balance;
	cursor: pointer;
	transition: background 0.3s;

	&:hover {
		background-color: rgba(255, 255, 255, 0.05);
	}
}

.faq__icon {
	display: flex;
	align-items: center;
	width: 30px;
	aspect-ratio: 1;
	color: var(--primary);
	flex-shrink: 0;

	svg {
		width: 100%;
		height: 100%;
		transition: transform 0.3s, color 0.3s;
	}
}

.faq__answer {
	max-height: 0;
	overflow: clip;
	opacity: 0;
	padding-inline: 20px;
	transition: all 0.3s;
	font-size: 16px;
}

.faq__item--active {
	background: var(--primary);
	border-radius: 40px;

	.faq__icon svg {
		color: var(--white);
		transform: rotate(180deg);
	}

	.faq__answer {
		max-height: 300px;
		opacity: 1;
		padding-bottom: 20px;
	}

	.faq__question:hover {
		background-color: transparent;
	}
}

@media (max-width: 1200px) {
}

@media (max-width: 768px) {
	.faq {
		padding-bottom: 64px;
	}
	.faq__title {
		font-size: 38px;
		text-align: center;
	}
	.faq__highlight {
		font-size: 68px;
		margin-block: 8px;
	}
	.faq__subtitle {
		max-width: 100%;
		text-align: center;
		text-wrap: balance;
	}
	.faq__question {
		align-items: flex-start;
		font-size: 18px;
		padding-bottom: 8px;
	}
	.faq__answer {
		font-size: 14px;
	}
}

/* #endregion FAQ SECTION */

/* #region SUCCESS SECTION */
.success {
	padding-bottom: 100px;
	position: relative;
	overflow: clip;

	&::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		transform: translate(-50%, 50%);
		width: 1082px;
		height: 1078px;
		border-radius: 55%;
		border: 140px solid rgba(27, 43, 64, 0.4);
		backdrop-filter: blur(12px);
		z-index: -1;
	}
}

.success__wrapper {
	max-width: 1352px;
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 32px 0 32px 32px;
	border-radius: 40px 0 0 40px;
	overflow: hidden;
	background-color: var(--primary);
}

.success__content {
	max-width: 655px;
}

.success__step {
	font-size: 18px;
	font-weight: var(--fw-400);
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 32px;
}

.success__title {
	font-size: 52px;
	font-weight: var(--fw-600);
	text-transform: uppercase;
	margin-bottom: 8px;

	&.success__title--xl {
		font-size: 84px;
		text-align: center;

		+ .success__text {
			text-align: center;
		}
	}

	&.success__title--md {
		text-align: end;
	}
}

.success__text {
	margin-bottom: 32px;
}

.success__note {
	text-align: end;
	margin-bottom: 64px;
}

.success__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.success__cta--mobile {
	display: none;
}

.success__arrow {
	padding: 16px;
	width: auto;
	background-color: transparent;
	color: var(--white);

	&:hover {
		color: var(--black);
		background-color: var(--white);
	}
}

.success__image {
	flex-shrink: 0;
	max-width: 600px;
	position: relative;
}

.success__img {
	position: relative;
	z-index: 1;

	&.success__img-sm {
		display: none;
	}
}

.success__img-screen {
	position: absolute;
	top: 3%;
	height: 510px;
	object-position: left;
	left: 3%;
}

@media (max-width: 1200px) {
	.success__wrapper {
		flex-direction: column;
		gap: 32px;
	}
	.success__image {
		margin-left: auto;
	}
	.success__note {
		margin-bottom: 32px;
	}
}

@media (max-width: 768px) {
	.success {
		padding-bottom: 64px;
	}
	.success__wrapper {
		padding: 20px;
	}
	.success__title {
		font-size: 32px;

		&.success__title--xl {
			font-size: 54px;
		}
	}
	.success__text,
	.success__note {
		font-size: 14px;
	}
	.success__cta--deck {
		display: none;
	}
	.success__cta--mobile {
		display: flex;
	}
	.success__cta {
		gap: 6px;
	}
	.success__btn {
		padding-block: 12px;
	}
	.success__arrow {
		padding: 12px;
	}

	.success__image {
		margin-left: 0;
		max-width: 326px;
	}

	.success__img {
		display: none;

		&.success__img-sm {
			display: block;
		}
	}

	.success__img-screen {
		height: 175px;
		object-position: top;
		left: 2%;
		max-width: 310px;
		width: 100%;
	}
}

/* #endregion SUCCESS SECTION */

/* #region FOOTER */

.footer {
	padding-block: 64px;
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
}

.footer__top {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 20px;
}

.footer__column {
	background-color: var(--white);
	color: var(--black);
	border-radius: 30px;
	padding: 20px;
	flex: 1;
	min-width: 300px;
}

.footer__logo {
	display: inline-block;
	margin-bottom: 9px;
}

.footer__nav-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer__nav-link {
	position: relative;
	display: inline-block;
	transition: padding-left 0.3s;

	&::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 0;
		height: 2px;
		background-color: var(--primary);
		transition: width 0.3s;
	}

	&:hover {
		padding-left: 5px;

		&::after {
			width: 100%;
		}
	}
}

.footer__column-title {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 24px;
	margin-bottom: 8px;
	font-weight: var(--fw-600);
}

.footer__title-highlight {
	&::first-letter {
		color: var(--primary);
	}
}

.footer__address,
.footer__phone-link {
	font-style: normal;
	display: block;
	margin-bottom: 20px;
}
.footer__phone-link {
	text-decoration: underline;
}

.footer__socials {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.footer__social-link {
	transition: transform 0.3s;

	&:hover {
		transform: translateY(-3px);
	}
}

.footer__disclaimer {
	display: flex;
	flex-direction: column;
	gap: 16px;
	border-radius: 30px;
	padding: 32px;
	margin-bottom: 32px;
}

.footer__disclaimer-block {
	&:nth-child(1),
	&:nth-child(3) {
		text-align: start;
	}

	&:nth-child(2),
	&:nth-child(4) {
		text-align: end;

		.footer__disclaimer-text {
			margin-left: auto;
		}
	}

	.footer__disclaimer-text {
		max-width: 890px;
	}
}

.footer__disclaimer-title {
	font-size: 32px;
	font-weight: var(--fw-500);
	margin-bottom: 8px;
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	padding-inline: 32px;
}

.footer__legal-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

.footer__legal-link {
	transition: color 0.3s;

	&:hover {
		color: var(--primary);
	}
}

@media (max-width: 1200px) {
	.footer {
		padding-block: 32px;
	}
	.footer__bottom {
		justify-content: center;
		gap: 26px;
	}
}

@media (max-width: 768px) {
	.footer {
		padding-block: 20px;
	}
	.footer__top {
		flex-direction: column;
		margin-bottom: 26px;
	}
	.footer__nav-list {
		gap: 8px;
	}
	.footer__column-title {
		font-size: 18px;
		img {
			width: 20px;
			aspect-ratio: 1;
		}
	}

	.footer__address,
	.footer__phone-link {
		font-size: 16px;
	}

	.footer__socials {
		gap: 8px;

		img {
			width: 20px;
			aspect-ratio: 1;
		}
	}
	.footer__disclaimer {
		margin-bottom: 26px;
	}
	.footer__disclaimer-title {
		font-size: 18px;
	}
	.footer__disclaimer-text {
		font-size: 14px;
	}
	.footer__bottom {
		flex-direction: column;
		text-align: center;
		padding-inline: 0;
		font-size: 16px;
	}
	.footer__legal-nav {
		flex-direction: column;
		align-items: center;
	}
}

/* #endregion FOOTER */
