/* =====================================================================
   components/process-section.css — the shared installation-process band
   (template-parts/global/process-section.php), used by the homepage and the
   Solar Services archive.
   ===================================================================== */

.process-section {
	position: relative;
	overflow: hidden;
	background-color: var(--ink-900);
}

/* Warm glow in the lower-right, as in the design. */
.process-section::after {
	content: "";
	position: absolute;
	right: -8%;
	bottom: -30%;
	width: 45rem;
	height: 45rem;
	background: radial-gradient(circle, rgba(214, 132, 47, .28) 0%, rgba(214, 132, 47, 0) 65%);
	pointer-events: none;
}

.process-section__inner {
	position: relative;
	z-index: 1;
}

.process-card {
	height: 100%;
	padding: 2rem 1.75rem 2.25rem;
	background: var(--ink-800);
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: var(--radius-md);
	transition: transform .3s ease, border-color .3s ease;
}

.process-card:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 192, 106, .4);
}

.process-card .icon-tile {
	margin-bottom: 2.25rem;
}

.process-card__step {
	display: block;
	margin-bottom: .5rem;
	font-family: var(--font-secondary);
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--accent-gold);
}

.process-card__title {
	margin-bottom: .75rem;
	font-size: clamp(1.125rem, 1.06rem + 0.29vw, 1.3125rem);
	color: #fff;
}

.process-card__text {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--text-on-dark);
}
