/* ==================== Applications Family Pages ==================== */

.applications-page {
	width: 100%;
	background: #ffffff;
	color: var(--gel-text);
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.applications-page a {
	text-decoration: none;
}


/* ==================== Application Intro ==================== */

.app-intro {
	padding: 92px 0 104px;
	background: #f6f8f8;
	color: var(--gel-text);
}

.app-intro-layout {
	display: grid;
	grid-template-columns: 0.38fr 0.62fr;
	gap: 72px;
	align-items: start;
	padding: 58px 0;
	border-top: 1px solid var(--gel-line);
	border-bottom: 1px solid var(--gel-line);
}

.app-intro-heading {
	position: relative;
	padding-left: 26px;
}

.app-intro-heading::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 5px;
	height: calc(100% - 8px);
	background: var(--gel-main);
}

.app-intro-heading span {
	display: block;
	margin-bottom: 16px;
	color: var(--gel-main);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.app-intro-heading h2 {
	margin: 0;
	color: var(--gel-ink);
	font-size: 42px;
	line-height: 1.14;
	font-weight: 760;
	letter-spacing: -1.1px;
}

.app-intro-content {
	max-width: 760px;
}

.app-intro-content p {
	margin: 0;
	color: #425154;
	font-size: 16px;
	line-height: 1.86;
	font-weight: 400;
}

.app-intro-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 30px 0 34px;
}

.app-intro-tags span {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 16px;
	background: #ffffff;
	color: #263638;
	font-size: 13px;
	font-weight: 700;
	box-shadow: 0 8px 20px rgba(16, 38, 41, 0.055);
}

.app-intro-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 168px;
	min-height: 50px;
	padding: 0 34px;
	border-radius: 999px;
	background: var(--gel-main);
	border: 1px solid var(--gel-main);
	color: #ffffff;
	font-size: 15px;
	font-weight: 760;
	box-shadow: 0 14px 32px rgba(40, 151, 138, 0.22);
	transition: all 0.25s ease;
}

.app-intro-btn:hover {
	background: var(--gel-main-dark);
	border-color: var(--gel-main-dark);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(40, 151, 138, 0.3);
}


/* ==================== Application Project Support ==================== */

.app-support {
	padding: 92px 0 104px;
	background: #f6f8f8;
	color: var(--gel-text);
}

.app-support-row {
	display: grid;
	grid-template-columns: 0.98fr 1.02fr;
	gap: 64px;
	align-items: center;
}

.app-support-image {
	overflow: hidden;
	background: #e8efee;
	box-shadow: 0 22px 58px rgba(16, 38, 41, 0.1);
}

.app-support-image img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.6s ease;
}

.app-support-image:hover img {
	transform: scale(1.025);
}

.app-support-content {
	max-width: 640px;
}

.app-support-content > span {
	display: block;
	margin-bottom: 12px;
	color: var(--gel-main);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.app-support-content h2 {
	margin: 0 0 22px;
	color: var(--gel-ink);
	font-size: 38px;
	line-height: 1.16;
	font-weight: 760;
	letter-spacing: -1px;
}

.app-support-content p {
	margin: 0 0 18px;
	color: #2c3d40;
	font-size: 16px;
	line-height: 1.82;
}

.app-support-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 30px;
}

.app-support-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 168px;
	min-height: 50px;
	padding: 0 34px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 760;
	transition: all 0.25s ease;
}

.app-support-btn-primary {
	background: var(--gel-main);
	border: 1px solid var(--gel-main);
	color: #ffffff;
	box-shadow: 0 14px 32px rgba(40, 151, 138, 0.22);
}

.app-support-btn-primary:hover {
	background: var(--gel-main-dark);
	border-color: var(--gel-main-dark);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(40, 151, 138, 0.3);
}

.app-support-btn-outline {
	background: #ffffff;
	border: 1px solid rgba(40, 151, 138, 0.65);
	color: var(--gel-main-dark);
}

.app-support-btn-outline:hover {
	background: #ffffff;
	border-color: var(--gel-main);
	color: var(--gel-main-dark);
	transform: translateY(-2px);
}


/* ==================== Applications Responsive ==================== */

@media (max-width: 991px) {
	.app-intro,
	.app-support {
		padding: 74px 0 84px;
	}

	.app-intro-layout {
		grid-template-columns: 1fr;
		gap: 34px;
		padding: 46px 0;
	}

	.app-intro-heading h2,
	.app-support-content h2 {
		font-size: 34px;
	}

	.app-support-row {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.app-support-content {
		max-width: none;
	}

	.app-support-image {
		max-width: 760px;
	}
}

@media (max-width: 575px) {
	.app-intro,
	.app-support {
		padding: 58px 0 68px;
	}

	.app-intro-layout {
		padding: 38px 0;
	}

	.app-intro-heading {
		padding-left: 20px;
	}

	.app-intro-heading h2,
	.app-support-content h2 {
		font-size: 29px;
		letter-spacing: -0.6px;
	}

	.app-intro-content p,
	.app-support-content p {
		font-size: 15px;
	}

	.app-intro-tags span {
		font-size: 12.5px;
	}

	.app-intro-btn,
	.app-support-actions,
	.app-support-btn {
		width: 100%;
	}
}

/* ==================== /Applications Family Pages ==================== */
