.solar-flow {
	padding: 8px 0 62px;
	background: #ffffff;
	color: var(--uzeda-color-heading-black, #20232a);
}

.solar-flow__container {
	width: 100%;
	max-width: var(--uzeda-container, 1280px);
	margin: 0 auto;
	padding: 0 24px;
}

.solar-flow__panel {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(0, 191, 106, 0.18);
	border-radius: 18px;
	background:
		radial-gradient(circle at 12% 8%, rgba(0, 191, 106, 0.14), rgba(0, 191, 106, 0) 32%),
		linear-gradient(135deg, rgba(238, 255, 244, 0.78), rgba(255, 255, 255, 0.96) 64%),
		#ffffff;
	box-shadow: 0 20px 48px rgba(15, 23, 42, 0.07);
	padding: clamp(28px, 3.8vw, 46px);
}

.solar-flow__cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(24px, 4.1vw, 58px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.solar-flow__item {
	position: relative;
	min-width: 0;
}

.solar-flow__card {
	position: relative;
	display: grid;
	justify-items: center;
	align-content: center;
	min-height: 224px;
	padding: 30px 22px 28px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-bottom-color: rgba(0, 191, 106, 0.5);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
	text-align: center;
}

.solar-flow__item--final .solar-flow__card {
	border-color: rgba(0, 191, 106, 0.34);
	background: rgba(228, 253, 239, 0.74);
}

.solar-flow__index {
	position: absolute;
	top: 16px;
	right: 18px;
	color: rgba(0, 89, 49, 0.18);
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0;
}

.solar-flow__icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin-bottom: 20px;
	border: 1px solid rgba(0, 89, 49, 0.1);
	border-radius: 16px;
	background: linear-gradient(180deg, #ffffff, var(--uzeda-color-secondary-2, #e6f9dc));
	color: var(--uzeda-color-primary, #005931);
	box-shadow: 0 12px 26px rgba(0, 89, 49, 0.08);
}

.solar-flow__icon--filled {
	border-color: transparent;
	background: var(--uzeda-color-secondary, #00bf6a);
	color: var(--uzeda-color-primary, #005931);
	box-shadow: 0 16px 28px rgba(0, 191, 106, 0.22);
}

.solar-flow__icon-svg {
	width: 28px;
	height: 28px;
}

.solar-flow__card h3 {
	margin: 0;
	color: var(--uzeda-color-heading-black, #20232a);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.16;
	letter-spacing: 0;
}

.solar-flow__card p {
	margin: 14px 0 0;
	color: var(--uzeda-color-text, #4e5159);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
}

.solar-flow__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	margin-top: 18px;
	padding: 8px 18px;
	border-radius: 999px;
	background: var(--uzeda-color-secondary, #00bf6a);
	color: var(--uzeda-color-primary, #005931);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.1;
	white-space: nowrap;
	box-shadow: 0 12px 22px rgba(0, 191, 106, 0.2);
}

.solar-flow__arrow {
	position: absolute;
	top: 50%;
	right: calc(clamp(24px, 4.1vw, 58px) * -0.5 - 17px);
	z-index: 2;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin-top: -17px;
	border: 1px solid rgba(0, 89, 49, 0.12);
	border-radius: 999px;
	background: #ffffff;
	color: var(--uzeda-color-primary, #005931);
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.solar-flow__summary {
	margin: 28px 0 0;
	padding: 17px 22px;
	border: 1px solid rgba(0, 191, 106, 0.14);
	border-radius: 14px;
	background: rgba(230, 249, 220, 0.72);
	color: var(--uzeda-color-primary, #005931);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
}

@media (max-width: 1020px) {
	.solar-flow__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px;
	}

	.solar-flow__arrow {
		display: none;
	}
}

@media (max-width: 640px) {
	.solar-flow {
		padding: 0 0 48px;
	}

	.solar-flow__container {
		padding: 0 18px;
	}

	.solar-flow__panel {
		padding: 18px;
		border-radius: 16px;
	}

	.solar-flow__cards {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.solar-flow__card {
		grid-template-columns: 54px minmax(0, 1fr);
		grid-template-areas:
			"icon title"
			"icon desc"
			"icon badge";
		justify-items: start;
		align-content: center;
		min-height: 116px;
		padding: 22px 20px;
		text-align: left;
	}

	.solar-flow__index {
		top: 14px;
		right: 16px;
	}

	.solar-flow__icon {
		grid-area: icon;
		width: 46px;
		height: 46px;
		margin: 0;
		border-radius: 13px;
	}

	.solar-flow__icon-svg {
		width: 23px;
		height: 23px;
	}

	.solar-flow__card h3 {
		grid-area: title;
		padding-right: 38px;
		font-size: 17px;
	}

	.solar-flow__card p {
		grid-area: desc;
		margin-top: 8px;
		font-size: 14.5px;
	}

	.solar-flow__badge {
		grid-area: badge;
		min-height: 30px;
		margin-top: 12px;
		padding: 7px 14px;
		font-size: 12.5px;
	}

	.solar-flow__summary {
		margin-top: 16px;
		padding: 14px 16px;
		font-size: 14px;
		line-height: 1.35;
	}
}
