/**
 * uxneuron — home.css
 *
 * Layout specific to the Home page: hero, trusted-strip marquee, services
 * overview cards, approach steps, industries chip grid, and the dark
 * testimonial panel. Featured Work reuses .work-feature-grid from
 * layout.css; the CTA band reuses .cta-band from base.css.
 *
 * @package uxneuron
 */

.home-hero {
	position: relative;
	overflow: hidden;
	padding: 96px var( --section-x ) 110px;
}

.home-hero__inner {
	position: relative;
	max-width: var( --container-max );
	margin: 0 auto;
}

.home-hero__bg-media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero__bg-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.home-hero__title {
	font-weight: 800;
	font-size: 84px;
	line-height: 1.02;
	letter-spacing: -.025em;
	margin: 0 0 26px;
	max-width: 900px;
}

.home-hero__title .text-accent {
	color: var( --color-primary );
}

.home-hero__description {
	font-size: 21px;
	line-height: 1.6;
	color: var( --color-text-soft );
	max-width: 600px;
	margin: 0 0 40px;
}

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

/* Trusted strip / marquee. */

.trusted-strip {
	border-top: 1px solid var( --color-border-soft );
	border-bottom: 1px solid var( --color-border-soft );
	background: #fff;
	padding: 30px 0;
	overflow: hidden;
}

.trusted-strip__label {
	text-align: center;
	font-family: var( --font-heading );
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var( --color-text-faint );
	margin-bottom: 22px;
}

.trusted-strip__track {
	display: flex;
	width: max-content;
	gap: 64px;
	animation: marquee 26s linear infinite;
	padding-left: 64px;
}

.trusted-strip__item {
	display: inline-flex;
	align-items: center;
	gap: 34px;
	font-family: var( --font-heading );
	font-weight: 700;
	font-size: 26px;
	color: #c9bcae;
	white-space: nowrap;
	letter-spacing: -.01em;
}

/* Services overview cards. */

.svccard {
	background: #fff;
	border: 1px solid var( --color-border );
	border-radius: var( --radius-xl );
	padding: 34px;
	display: flex;
	flex-direction: column;
	box-shadow: var( --shadow-card );
}

.svccard__title {
	font-weight: 700;
	font-size: 22px;
	margin: 0 0 10px;
}

.svccard__desc {
	font-size: 15.5px;
	line-height: 1.6;
	color: var( --color-text-muted );
	margin: 0 0 22px;
	flex: 1;
}

.svccard__explore {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var( --font-heading );
	font-weight: 600;
	font-size: 14px;
	color: var( --color-primary );
}

/* Approach steps. */

.approach-step {
	background: #fff;
	border: 1px solid var( --color-border );
	border-radius: var( --radius-xl );
	padding: 34px;
}

.approach-step__number {
	font-family: var( --font-heading );
	font-weight: 800;
	font-size: 40px;
	color: rgba(222,108,9,.25);
	line-height: 1;
	margin-bottom: 20px;
}

.approach-step__title {
	font-weight: 700;
	font-size: 21px;
	margin: 0 0 10px;
}

.approach-step__desc {
	font-size: 15px;
	line-height: 1.6;
	color: var( --color-text-muted );
	margin: 0;
}

/* Industries chip grid (reuses .chip from base.css). */

.industries-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* Testimonial panel. */

.testimonial-panel {
	background: var( --color-dark );
	border-radius: var( --radius-2xl );
	padding: 72px 64px;
	position: relative;
	overflow: hidden;
}

.testimonial-panel__decor {
	position: absolute;
	right: -60px;
	bottom: -60px;
	opacity: .5;
	pointer-events: none;
}

.testimonial-panel__content {
	position: relative;
}

.testimonial-panel__mark {
	font-family: var( --font-heading );
	font-size: 90px;
	line-height: .4;
	color: var( --color-primary );
	height: 46px;
}

.testimonial-panel__quote {
	font-weight: 600;
	font-size: 30px;
	line-height: 1.4;
	color: #fff;
	margin: 0 0 34px;
	max-width: 760px;
}

.testimonial-panel__author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.testimonial-panel__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var( --color-primary ), var( --color-primary-light ));
	background-size: cover;
	background-position: center;
	flex-shrink: 0;
}

.testimonial-panel__author-title {
	font-family: var( --font-heading );
	font-weight: 600;
	font-size: 16px;
	color: #fff;
}

.testimonial-panel__author-company {
	font-size: 14px;
	color: var( --color-text-faint );
}
