.fm-hero {
	padding: 100px 0 80px;
	background:
		radial-gradient(
			circle at top right,
			rgba(255, 105, 97, 0.06),
			transparent 32%
		),
		linear-gradient(180deg, #ffffff 0%, var(--background-light) 100%);
	overflow: hidden;
}

.fm-hero__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: 60px;
}

.fm-hero__content {
	max-width: 780px;
}

.fm-hero__eyebrow {
	display: inline-block;
	margin-bottom: 18px;
	padding: 8px 14px;
	background-color: rgba(13, 45, 69, 0.08);
	color: var(--primary-blue);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 999px;
}

.fm-hero__title {
	margin: 0 0 22px;
	color: var(--primary-blue);
	font-size: 52px;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.fm-hero__text {
	margin: 0 0 18px;
	color: #334155;
	font-size: 18px;
	line-height: 1.8;
}

.fm-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}
.btn--primary {
	background-color: var(--primary-blue);
	color: #ffffff;
	box-shadow: 0 10px 25px var(--shadow-light);
}

.btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px var(--shadow-strong);
}

.btn--secondary {
	background-color: transparent;
	color: var(--dark-pink);
	border: 2px solid var(--dark-pink);
}

.btn--secondary:hover {
	background-color: var(--dark-pink);
	color: #ffffff;
}
.fm-hero__image-wrapper {
	position: relative;
}

.fm-hero__image-wrapper::before {
	content: "";
	position: absolute;
	top: -20px;
	right: -20px;
	width: 120px;
	height: 120px;
	background: rgba(255, 105, 97, 0.08);
	border-radius: 24px;
	z-index: 0;
}

.fm-hero__image {
	position: relative;
	z-index: 1;
	width: 100%;
	display: block;
	border-radius: 24px;
	box-shadow: 0 30px 70px rgba(13, 45, 69, 0.15);
}

@media (max-width: 991px) {
	.fm-hero {
		padding: 80px 0 60px;
	}

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

	.fm-hero__title {
		font-size: 42px;
	}

	.fm-hero__text {
		font-size: 17px;
	}
}

@media (max-width: 767px) {
	.fm-hero {
		padding: 70px 0 50px;
	}

	.fm-hero__title {
		font-size: 34px;
	}

	.fm-hero__text {
		font-size: 16px;
		line-height: 1.7;
	}

	.fm-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.btn {
		width: 100%;
	}
}

/*next section start*/
.fm-questions {
	padding: 110px 0;
	background: #ffffff;
}

.fm-questions__container {
	max-width: 1100px;
	margin: 0 auto;
}

.fm-questions__header {
	max-width: 780px;
	margin-bottom: 46px;
}

.fm-questions__title {
	margin: 0;
	color: var(--primary-blue);
	font-size: 42px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.fm-questions__grid {
	display: grid;
	gap: 26px;
}

.fm-questions__item {
	position: relative;
	padding: 34px 38px;
	background: #ffffff;
	border: 1px solid rgba(13, 45, 69, 0.08);
	border-radius: 24px;
	box-shadow: 0 18px 48px rgba(13, 45, 69, 0.08);
}

.fm-questions__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 34px;
	bottom: 34px;
	width: 5px;
	border-radius: 999px;
	background: var(--primary-blue);
}

.fm-questions__question {
	margin: 0 0 14px;
	color: var(--primary-blue);
	font-size: 24px;
	line-height: 1.35;
	font-weight: 800;
}

.fm-questions__answer {
	margin: 0;
	color: #425466;
	font-size: 17px;
	line-height: 1.9;
}

@media (max-width: 991px) {
	.fm-questions {
		padding: 85px 0;
	}

	.fm-questions__title {
		font-size: 34px;
	}

	.fm-questions__question {
		font-size: 22px;
	}
}

@media (max-width: 767px) {
	.fm-questions {
		padding: 65px 0;
	}

	.fm-questions__title {
		font-size: 28px;
	}

	.fm-questions__item {
		padding: 28px 24px;
		border-radius: 20px;
	}

	.fm-questions__question {
		font-size: 20px;
	}

	.fm-questions__answer {
		font-size: 16px;
		line-height: 1.8;
	}
}
/*next section end*/

/*next section start*/
.fm-challenges {
	padding: 110px 0;
	background: var(--background-light);
}

.fm-challenges__container {
	max-width: 980px;
	margin: 0 auto;
}

.fm-challenges__title {
	margin: 0 0 36px;
	color: var(--primary-blue);
	font-size: 42px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.fm-challenges__panel {
	position: relative;
	padding: 42px;
	border-radius: 28px;
	background: #ffffff;
	border: 1px solid rgba(13, 45, 69, 0.08);
	box-shadow: 0 20px 55px rgba(13, 45, 69, 0.08);
}

.fm-challenges__panel::before {
	content: "";
	position: absolute;
	top: 42px;
	left: 0;
	width: 6px;
	height: calc(100% - 84px);
	border-radius: 999px;
	background: var(--dark-pink);
}

.fm-challenges__text {
	margin: 0 0 22px;
	color: #425466;
	font-size: 18px;
	line-height: 1.9;
}

.fm-challenges__text:last-child {
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.fm-challenges {
		padding: 85px 0;
	}

	.fm-challenges__title {
		font-size: 34px;
	}

	.fm-challenges__text {
		font-size: 17px;
	}
}

@media (max-width: 767px) {
	.fm-challenges {
		padding: 65px 0;
	}

	.fm-challenges__title {
		font-size: 28px;
	}

	.fm-challenges__panel {
		padding: 28px 22px;
		border-radius: 20px;
	}

	.fm-challenges__panel::before {
		top: 28px;
		height: calc(100% - 56px);
	}

	.fm-challenges__text {
		font-size: 16px;
		line-height: 1.8;
	}
}
/*next section end*/

/*next section start*/
.fm-roles {
	padding: 110px 0;
	background: #ffffff;
}

.fm-roles__container {
	max-width: 1150px;
	margin: 0 auto;
}

.fm-roles__title {
	margin: 0 0 46px;
	color: var(--primary-blue);
	font-size: 42px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.fm-roles__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.fm-roles__card {
	position: relative;
	padding: 38px 36px;
	border-radius: 26px;
	background: #ffffff;
	border: 1px solid rgba(13, 45, 69, 0.08);
	box-shadow: 0 18px 48px rgba(13, 45, 69, 0.08);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.fm-roles__card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 58px rgba(13, 45, 69, 0.12);
}

.fm-roles__card::before {
	content: "";
	position: absolute;
	top: 36px;
	left: 0;
	width: 5px;
	height: calc(100% - 72px);
	background: var(--primary-blue);
	border-radius: 999px;
}

.fm-roles__card-title {
	margin: 0 0 14px;
	color: var(--primary-blue);
	font-size: 22px;
	line-height: 1.35;
	font-weight: 800;
}

.fm-roles__card-text {
	margin: 0;
	color: #425466;
	font-size: 17px;
	line-height: 1.9;
}

@media (max-width: 991px) {
	.fm-roles {
		padding: 85px 0;
	}

	.fm-roles__grid {
		grid-template-columns: 1fr;
	}

	.fm-roles__title {
		font-size: 34px;
	}
}

@media (max-width: 767px) {
	.fm-roles {
		padding: 65px 0;
	}

	.fm-roles__title {
		font-size: 28px;
	}

	.fm-roles__card {
		padding: 30px 24px;
		border-radius: 20px;
	}

	.fm-roles__card-title {
		font-size: 20px;
	}

	.fm-roles__card-text {
		font-size: 16px;
		line-height: 1.8;
	}
}
/*next section end*/

/*next section start*/
.fm-services {
	padding: 110px 0;
	background: var(--background-light);
}

.fm-services__container {
	max-width: 1100px;
	margin: 0 auto;
}

.fm-services__title {
	margin: 0 0 18px;
	color: var(--primary-blue);
	font-size: 42px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
	max-width: 780px;
}

.fm-services__intro {
	margin: 0 0 34px;
	color: #425466;
	font-size: 18px;
	line-height: 1.9;
	max-width: 820px;
}

.fm-services__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.fm-services__card {
	position: relative;
	padding: 30px 30px 30px 62px;
	background: #ffffff;
	border-radius: 24px;
	border: 1px solid rgba(13, 45, 69, 0.08);
	box-shadow: 0 16px 42px rgba(13, 45, 69, 0.08);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.fm-services__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 55px rgba(13, 45, 69, 0.12);
}

.fm-services__card::before {
	content: "";
	position: absolute;
	top: 34px;
	left: 28px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--primary-blue);
	box-shadow: 0 0 0 6px rgba(13, 45, 69, 0.08);
}

.fm-services__card-title {
	margin: 0 0 8px;
	color: var(--primary-blue);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.35;
}

.fm-services__card-text {
	margin: 0;
	color: #425466;
	font-size: 17px;
	line-height: 1.8;
}

@media (max-width: 991px) {
	.fm-services {
		padding: 85px 0;
	}

	.fm-services__title {
		font-size: 34px;
	}

	.fm-services__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.fm-services {
		padding: 65px 0;
	}

	.fm-services__title {
		font-size: 28px;
	}

	.fm-services__intro {
		font-size: 16px;
	}

	.fm-services__card {
		padding: 26px 22px 26px 54px;
		border-radius: 20px;
	}

	.fm-services__card::before {
		top: 30px;
		left: 22px;
	}

	.fm-services__card-title {
		font-size: 20px;
	}

	.fm-services__card-text {
		font-size: 16px;
	}
}
/*next section end*/

/*next section start*/
.fm-dubai-support {
	padding: 110px 0;
	background: #ffffff;
}

.fm-dubai-support__container {
	max-width: 920px;
	margin: 0 auto;
}

.fm-dubai-support__title {
	margin: 0 0 28px;
	color: var(--primary-blue);
	font-size: 40px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.fm-dubai-support__text {
	margin: 0 0 18px;
	color: #425466;
	font-size: 18px;
	line-height: 1.9;
}

.fm-dubai-support__text:last-child {
	margin-bottom: 0;
}

.fm-dubai-support__link {
	color: var(--dark-pink);
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid rgba(255, 105, 97, 0.25);
	transition: all 0.2s ease;
}

.fm-dubai-support__link:hover {
	border-color: var(--dark-pink);
}

@media (max-width: 991px) {
	.fm-dubai-support {
		padding: 85px 0;
	}

	.fm-dubai-support__title {
		font-size: 32px;
	}

	.fm-dubai-support__text {
		font-size: 17px;
	}
}

@media (max-width: 767px) {
	.fm-dubai-support {
		padding: 65px 0;
	}

	.fm-dubai-support__title {
		font-size: 26px;
	}

	.fm-dubai-support__text {
		font-size: 16px;
		line-height: 1.8;
	}
}
/*next section end*/

/*next section start*/
.fm-other-industries {
	padding: 110px 0;
	background: var(--background-light);
}

.fm-other-industries__container {
	max-width: 1100px;
	margin: 0 auto;
}

.fm-other-industries__title {
	margin: 0 0 40px;
	color: var(--primary-blue);
	font-size: 40px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.fm-other-industries__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.fm-other-industries__card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 80px;
	padding: 18px 20px;
	text-align: center;

	background: #ffffff;
	border-radius: 16px;
	border: 1px solid rgba(13, 45, 69, 0.08);

	font-size: 16px;
	font-weight: 700;
	color: var(--primary-blue);
	text-decoration: none;

	transition: all 0.25s ease;
}

.fm-other-industries__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 40px rgba(13, 45, 69, 0.12);
	border-color: var(--dark-pink);
}

@media (max-width: 991px) {
	.fm-other-industries {
		padding: 85px 0;
	}

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

@media (max-width: 767px) {
	.fm-other-industries {
		padding: 65px 0;
	}

	.fm-other-industries__title {
		font-size: 28px;
	}

	.fm-other-industries__grid {
		grid-template-columns: 1fr;
	}
}
/*next section end*/

/*next section start*/
.fm-cta {
	padding: 120px 0;
	background: linear-gradient(180deg, #ffffff 0%, var(--background-light) 100%);
}

.fm-cta__container {
	max-width: 900px;
	margin: 0 auto;
}

.fm-cta__box {
	padding: 60px 65px;
	border-radius: 32px;
	background: #ffffff;
	border: 1px solid rgba(13, 45, 69, 0.08);
	box-shadow: 0 24px 70px rgba(13, 45, 69, 0.12);
	text-align: center;
}

.fm-cta__title {
	margin: 0 0 22px;
	color: var(--primary-blue);
	font-size: 42px;
	font-weight: 800;
	line-height: 1.2;
}

.fm-cta__text {
	margin: 0 auto 32px;
	max-width: 720px;
	color: #425466;
	font-size: 18px;
	line-height: 1.9;
}

.fm-cta__actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.fm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 26px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.25s ease;
}

.fm-btn--primary {
	background: var(--primary-blue);
	color: #ffffff;
	box-shadow: 0 12px 28px var(--shadow-light);
}

.fm-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 38px var(--shadow-strong);
}

.fm-btn--secondary {
	background: transparent;
	color: var(--dark-pink);
	border: 2px solid var(--dark-pink);
}

.fm-btn--secondary:hover {
	background: var(--dark-pink);
	color: #ffffff;
}

@media (max-width: 991px) {
	.fm-cta {
		padding: 90px 0;
	}

	.fm-cta__title {
		font-size: 34px;
	}
}

@media (max-width: 767px) {
	.fm-cta {
		padding: 70px 0;
	}

	.fm-cta__box {
		padding: 40px 28px;
		border-radius: 22px;
	}

	.fm-cta__title {
		font-size: 28px;
	}

	.fm-cta__text {
		font-size: 16px;
	}

	.fm-btn {
		width: 100%;
	}
}
/*next section end*/

/*next section start*/
.fm-faq {
	padding: 110px 0;
	background: var(--background-light);
}

.fm-faq__container {
	max-width: 900px;
	margin: 0 auto;
}

.fm-faq__title {
	margin: 0 0 42px;
	text-align: center;
	color: var(--primary-blue);
	font-size: 42px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.fm-faq__list {
	display: grid;
	gap: 18px;
}

.fm-faq__item {
	padding: 22px 26px;
	background: #ffffff;
	border: 1px solid rgba(13, 45, 69, 0.08);
	border-radius: 22px;
	box-shadow: 0 14px 40px rgba(13, 45, 69, 0.08);
}

.fm-faq__question {
	position: relative;
	padding-right: 34px;
	color: var(--primary-blue);
	font-size: 20px;
	line-height: 1.45;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}

.fm-faq__question::-webkit-details-marker {
	display: none;
}

.fm-faq__question::after {
	content: "+";
	position: absolute;
	top: 0;
	right: 0;
	color: var(--dark-pink);
	font-size: 24px;
	line-height: 1;
	font-weight: 700;
	transition: transform 0.25s ease;
}

.fm-faq__item[open] .fm-faq__question::after {
	transform: rotate(45deg);
}

.fm-faq__answer {
	margin: 16px 0 0;
	color: #425466;
	font-size: 17px;
	line-height: 1.9;
}

@media (max-width: 991px) {
	.fm-faq {
		padding: 85px 0;
	}

	.fm-faq__title {
		font-size: 34px;
	}
}

@media (max-width: 767px) {
	.fm-faq {
		padding: 65px 0;
	}

	.fm-faq__title {
		font-size: 28px;
	}

	.fm-faq__item {
		padding: 22px;
		border-radius: 18px;
	}

	.fm-faq__question {
		font-size: 18px;
	}

	.fm-faq__answer {
		font-size: 16px;
		line-height: 1.8;
	}
}
/*next section end*/

/*next section start*/
.fm-contact {
	padding: 90px 0;
	background: #ffffff;
}

.fm-contact__container {
	max-width: 780px;
	margin: 0 auto;
}

.fm-contact__card {
	padding: 48px 52px;
	border-radius: 26px;
	background: var(--background-light);
	border: 1px solid rgba(13, 45, 69, 0.08);
	box-shadow: 0 18px 48px rgba(13, 45, 69, 0.08);
}

.fm-contact__title {
	margin: 0 0 26px;
	color: var(--primary-blue);
	font-size: 34px;
	font-weight: 800;
	line-height: 1.2;
}

.fm-contact__details {
	display: grid;
	gap: 14px;
}

.fm-contact__item {
	font-size: 17px;
	line-height: 1.8;
	color: #425466;
}

.fm-contact__label {
	font-weight: 700;
	color: var(--primary-blue);
	margin-right: 6px;
}

.fm-contact__link {
	color: var(--dark-pink);
	font-weight: 600;
	text-decoration: none;
}

.fm-contact__link:hover {
	text-decoration: underline;
}

@media (max-width: 767px) {
	.fm-contact {
		padding: 65px 0;
	}

	.fm-contact__card {
		padding: 32px 26px;
		border-radius: 20px;
	}

	.fm-contact__title {
		font-size: 26px;
	}

	.fm-contact__item {
		font-size: 16px;
	}
}
/*next section end*/
