/* ── Steps block ── */

.steps-block {
	padding-block: 80px 0px;
}

/* ── Header ── */
.steps-block  .section-desc p{
color: var(--black, #191919);
text-align: center;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 140%; /* 25.2px */
max-width: 512px;
opacity: 0.6;
}
.steps-block__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 32px;
	max-width: 680px;
	margin-inline: auto;
	margin-bottom: 32px;
}


.steps-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 0;
	position: relative;
	z-index: 2;
}

.steps-logo__ring {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	border: 1px solid var(--color-gray-200);
	background-color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
}

.steps-logo__img {
	width: 52px;
	height: 52px;
	object-fit: contain;
	animation: steps-spin 10s linear infinite;
}

@keyframes steps-spin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

/* ── Connector: dashed line + dot ── */

.steps-logo__connector {
	width: 8px;
	height: 100px;
	position: relative;
	margin-top: 0;
}

.steps-logo__dot {
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--color-gray-300);
}

/* ── Cards grid ── */

.steps-cards {
	display: grid;
	grid-template-columns: repeat(var(--steps-cols, 3), 1fr);
	border: 1px solid var(--color-gray-100);
	border-radius: 6px;
	overflow: hidden;
	background-color: #F1EFEC;
}

.steps-card {
	display: flex;
	flex-direction: column;
	padding: clamp(24px, 3vw, 40px);
	border-right: 1px solid var(--color-gray-100);
}

.steps-card:last-child {
	border-right: none;
}

/* ── Card body ── */

.steps-card__body {
	flex: 1;
}

.steps-card__title {
color: var(--Dark, #192023);
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: 130%; /* 41.6px */
letter-spacing: -0.16px;
margin: 0 0 20px 0;
}

.steps-card__desc p{
color: var(--black, #191919);
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 140%; /* 25.2px */
	margin: 0;
	opacity: 0.6;
}

.steps-card__desc p {
	margin: 0;
}

/* ── Card footer: icon + step number ── */

.steps-card__foot {
	margin-top: clamp(32px, 4vw, 56px);
	padding-top: clamp(16px, 2vw, 24px);
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.steps-card__icon {
	width: 52px;
	height: 52px;
	object-fit: contain;
}

.steps-card__icon-placeholder {
	display: block;
	width: 52px;
	height: 52px;
}

.steps-card__num {
color: var(--Dark, #192023);
font-size: 22px;
font-style: normal;
font-weight: 500;
line-height: 130%; /* 28.6px */
letter-spacing: -0.33px;
}

/* ── CTA ── */

.steps-cta {
	margin-top: 60px;
	display: flex;
	justify-content: center;
}

/* ── Responsive ── */

@media (max-width: 767px) {
	.steps-cards {
		grid-template-columns: 1fr;
	}

	.steps-card {
		border-right: none;
		border-bottom: 1px solid var(--color-gray-100);
	}

	.steps-card:last-child {
		border-bottom: none;
	}
	.steps-block{
		padding: 60px 0;
	}
	.steps-block__header{
		gap: 24px;
	}
	.steps-block__header{
		margin-bottom: 40px;
	}
    .steps-logo__connector {
        height: 55px;
        overflow: hidden;
        display: flex;
        align-items: end;
    }
	.steps-logo__connector img{
		    height: max-content;
	}
	.steps-card__title{
font-size: 28px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 33.6px */
letter-spacing: -0.14px;
	}
	.steps-logo{
		margin-bottom: -3px;
	}
	.steps-card{
		padding: 32px 20px;
	}
	.steps-card__foot{
		padding-top: 0;
		margin-top: 50px;
	}
	.steps-card__num{
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 140%;
	}
	.steps-card__desc p{
		font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 140%;
	}
	.steps-cta{
		margin-top: 32pxss;
	}
}
