/**
 * Homepage hero + feature icon strip (above Our Services)
 */

.mpm-home-hero,
.mpm-home-features {
	font-family: Arial, Helvetica, sans-serif;
	box-sizing: border-box;
}

.mpm-home-hero *,
.mpm-home-features * {
	box-sizing: border-box;
}

/* Hero */
.mpm-home-hero {
	position: relative;
	width: 100%;
	height: 520px;
	overflow: hidden;
	background-color: #05121c;
	background-image: url(../images/homepage-hero-brickell.jpg);
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
}

.mpm-home-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(5, 18, 28, 0.9) 0%, rgba(5, 18, 28, 0.65) 42%, rgba(5, 18, 28, 0.15) 100%);
	pointer-events: none;
}

.mpm-home-hero__container {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	height: 100%;
	display: flex;
	align-items: center;
}

.mpm-home-hero__content {
	max-width: 720px;
}

.mpm-home-hero__title {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: clamp(42px, 5vw, 72px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -1px;
	color: #ffffff;
	text-transform: uppercase;
}

.mpm-home-hero__accent {
	display: block;
	width: 70px;
	height: 4px;
	background: #8bc53f;
	margin: 24px 0;
}

.mpm-home-hero__subtitle {
	margin: 0 0 32px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 1.6;
	font-weight: 400;
	color: #ffffff;
}

.mpm-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.mpm-home-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.3px;
	border-radius: 4px;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mpm-home-hero__btn--primary {
	padding: 15px 28px;
	background: #8bc53f;
	color: #ffffff;
	border: 2px solid #8bc53f;
}

.mpm-home-hero__btn--primary:hover,
.mpm-home-hero__btn--primary:focus {
	background: #7ab332;
	border-color: #7ab332;
	color: #ffffff;
}

.mpm-home-hero__btn--secondary {
	padding: 13px 28px;
	background: transparent;
	color: #ffffff;
	border: 2px solid #ffffff;
}

.mpm-home-hero__btn--secondary:hover,
.mpm-home-hero__btn--secondary:focus {
	background: #ffffff;
	color: #111111;
}

/* Feature strip */
.mpm-home-features {
	background: #f7f8f9;
}

.mpm-home-features__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 48px 40px;
}

.mpm-home-features__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	margin: 0;
	padding: 0;
	list-style: none;
}

.mpm-home-features__item {
	position: relative;
	padding: 0 24px;
	text-align: left;
}

.mpm-home-features__item:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: #e3e3e3;
}

.mpm-home-features__icon {
	display: block;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
}

.mpm-home-features__title {
	margin: 0 0 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: #111111;
	line-height: 1.3;
}

.mpm-home-features__text {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #555555;
}

/* Tablet */
@media (max-width: 991px) {
	.mpm-home-hero {
		height: 460px;
		background-position: 65% center;
	}

	.mpm-home-features__grid {
		grid-template-columns: repeat(3, 1fr);
		row-gap: 40px;
	}

	.mpm-home-features__item {
		padding: 0 16px;
	}

	.mpm-home-features__item:nth-child(3)::after {
		display: none;
	}

	.mpm-home-features__item:nth-child(1)::after,
	.mpm-home-features__item:nth-child(2)::after,
	.mpm-home-features__item:nth-child(4)::after,
	.mpm-home-features__item:nth-child(5)::after {
		display: block;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.mpm-home-hero {
		height: 420px;
		background-position: 70% center;
	}

	.mpm-home-hero__container,
	.mpm-home-features__container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.mpm-home-hero__subtitle {
		font-size: 16px;
		margin-bottom: 24px;
	}

	.mpm-home-hero__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.mpm-home-hero__btn {
		width: 100%;
	}

	.mpm-home-features__container {
		padding-top: 36px;
		padding-bottom: 36px;
	}

	.mpm-home-features__grid {
		grid-template-columns: 1fr;
		row-gap: 32px;
	}

	.mpm-home-features__item {
		padding: 0;
	}

	.mpm-home-features__item::after {
		display: none !important;
	}

	.mpm-home-services {
		padding: 32px 20px 40px;
	}

	.mpm-home-services__intro {
		padding: 24px 20px;
	}

	.mpm-home-services__title {
		font-size: 32px;
	}

	.mpm-home-services__desc {
		font-size: 15px;
	}
}

/* Our Services intro card + icon row */
.mpm-home-services {
	font-family: Arial, Helvetica, sans-serif;
	padding: 56px 24px 64px;
	background: #ffffff;
}

.mpm-home-services__intro {
	max-width: 1140px;
	margin: 0 auto 48px;
	padding: 48px 64px;
	background: #ffffff;
	border: 1px solid #e6e8ec;
	border-radius: 12px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
	text-align: center;
}

.mpm-home-services__eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 20px;
}

.mpm-home-services__eyebrow-line {
	display: block;
	width: 40px;
	height: 2px;
	background: #8bc53f;
}

.mpm-home-services__eyebrow-text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #8bc53f;
}

.mpm-home-services__title {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2;
	color: #111111;
}

.mpm-home-services__underline {
	display: block;
	width: 60px;
	height: 3px;
	margin: 20px auto 24px;
	background: #8bc53f;
}

.mpm-home-services__desc {
	max-width: 900px;
	margin: 0 auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	color: #555555;
}

.mpm-home-services__desc a {
	color: #8bc53f;
	font-weight: 700;
	text-decoration: none;
}

.mpm-home-services__desc a:hover,
.mpm-home-services__desc a:focus {
	text-decoration: underline;
}

.mpm-home-services__cards {
	max-width: 1140px;
	margin: 0 auto;
}

.mpm-home-services__cards .icon-box {
	font-family: Arial, Helvetica, sans-serif;
}

.mpm-home-services__cards h5 {
	font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 991px) {
	.mpm-home-services__intro {
		padding: 36px 32px;
	}

	.mpm-home-services__title {
		font-size: 36px;
	}
}
