/* ==========================================================================
   AI Automation Services page (/ai-automation-services/)
   ========================================================================== */

.fae-services-hero {
	position: relative;
	text-align: center;
	padding-top: 96px;
	padding-bottom: 64px;
	background:
		radial-gradient(circle at 50% 0%, rgba(198, 241, 53, 0.1), transparent 50%),
		#050505;
}

@media (min-width: 640px) {
	.fae-services-hero {
		padding-top: 128px;
	}
}

.fae-services-hero__eyebrow {
	position: relative;
	display: inline-block;
	margin: 0 0 28px;
	padding-bottom: 16px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.24em;
	color: #6f6f74;
}

.fae-services-hero__eyebrow::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 3px;
	border-radius: 9999px;
	background-color: #c6f135;
	box-shadow: 0 0 12px rgba(198, 241, 53, 0.6);
}

.fae-services-hero__title {
	max-width: 840px;
	margin: 0 auto;
	font-size: 40px;
	font-weight: 900;
	line-height: 1.02;
	letter-spacing: -0.05em;
}

@media (min-width: 640px) {
	.fae-services-hero__title {
		font-size: 64px;
	}
}

.fae-services-hero__subline {
	max-width: 620px;
	margin: 24px auto 0;
	font-size: 17px;
	line-height: 1.6;
	color: #a8a8b0;
}

@media (min-width: 640px) {
	.fae-services-hero__subline {
		font-size: 18px;
	}
}

.fae-services-hero__ctas {
	margin-top: 36px;
}

/* Intro */

.fae-services-intro {
	position: relative;
	padding-top: 0;
	padding-bottom: 80px;
}

.fae-services-intro__body {
	position: relative;
	max-width: 760px;
	margin: 0 auto;
	padding: 0 32px;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: -0.01em;
	color: #c4c4c9;
}

@media (min-width: 640px) {
	.fae-services-intro__body {
		font-size: 24px;
	}
}

.fae-services-intro__body::before,
.fae-services-intro__body::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 48px;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(198, 241, 53, 0.5));
}

.fae-services-intro__body::before {
	left: -24px;
	transform: translateX(-100%) translateY(-50%);
}

.fae-services-intro__body::after {
	right: -24px;
	transform: translateX(100%) translateY(-50%) rotate(180deg);
}

@media (max-width: 900px) {
	.fae-services-intro__body::before,
	.fae-services-intro__body::after {
		display: none;
	}
}

/* Expanded service cards — larger than Home's teaser cards, single column */

.fae-services-detail__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 820px;
	margin: 0 auto;
}

.fae-services-detail__card {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 30px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background-color: #0f0f10;
	padding: 32px;
	transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.fae-services-detail__card:hover {
	border-color: rgba(198, 241, 53, 0.35);
	box-shadow: 0 20px 60px -20px rgba(198, 241, 53, 0.25);
}

@media (min-width: 640px) {
	.fae-services-detail__card {
		padding: 44px;
	}
}

.fae-services-detail__number {
	position: absolute;
	top: 20px;
	right: 28px;
	font-size: 64px;
	font-weight: 900;
	line-height: 1;
	color: rgba(198, 241, 53, 0.08);
	pointer-events: none;
}

.fae-services-detail__icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin-bottom: 24px;
	border-radius: 18px;
	border: 1px solid rgba(198, 241, 53, 0.25);
	background-color: rgba(198, 241, 53, 0.06);
	color: #c6f135;
	box-shadow: 0 0 24px rgba(198, 241, 53, 0.12);
}

.fae-services-detail__icon svg {
	width: 24px;
	height: 24px;
}

.fae-services-detail__title {
	margin: 0;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #ffffff;
}

.fae-services-detail__text {
	margin: 12px 0 0;
	font-size: 17px;
	line-height: 1.65;
	color: #a8a8b0;
}

@media (min-width: 640px) {
	.fae-services-detail__text {
		font-size: 18px;
	}
}