/* Process Timeline Widget — front-end styles */

.ptw-wrapper {
	--ptw-blue: #2148F0;
	font-family: inherit;
}

.ptw-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 48px;
	align-items: center;
}

@media (max-width: 900px) {
	.ptw-grid {
		grid-template-columns: 1fr;
	}
}

/* ---------- Badge ---------- */
.ptw-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border: 1px solid #2148F044;
	border-radius: 999px;
	background: #EEF2FF;
	color: var(--ptw-blue);
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 20px;
}

.ptw-badge-icon {
	display: inline-flex;
	align-items: center;
	font-size: 16px;
}

/* ---------- Heading ---------- */
.ptw-heading {
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.15;
	font-weight: 800;
	margin: 0 0 14px 0;
	color: #101828;
}

.ptw-accent-word {
	font-weight: 800;
}

.ptw-underline {
	display: block;
	width: 70px;
	height: 4px;
	border-radius: 4px;
	margin-bottom: 22px;
}

.ptw-subheading {
	font-size: 17px;
	line-height: 1.6;
	max-width: 560px;
	margin: 0 0 36px 0;
}

/* ---------- Steps ---------- */
.ptw-steps {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.ptw-steps::before {
	content: "";
	position: absolute;
	left: 27px;
	top: 28px;
	bottom: 28px;
	width: 2px;
	background-image: linear-gradient(#c7d0e8 60%, rgba(255,255,255,0) 0%);
	background-position: left;
	background-size: 2px 12px;
	background-repeat: repeat-y;
	z-index: 0;
}

.ptw-step {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.ptw-step-number {
	position: relative;
	z-index: 1;
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	border-radius: 14px;
	color: #fff;
	font-weight: 800;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.ptw-step-card {
	flex: 1;
	display: flex;
	gap: 16px;
	align-items: flex-start;
	background: #fff;
	border-radius: 16px;
	padding: 20px 22px;
	box-shadow: 0 4px 18px rgba(16, 24, 40, 0.06);
}

.ptw-step-icon {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.ptw-step-title {
	margin: 0 0 6px 0;
	font-size: 19px;
	font-weight: 700;
}

.ptw-step-desc {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.55;
}

/* ---------- Right column: mockup ---------- */
.ptw-right {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.ptw-mockup-stage {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 460px;
	padding: 40px;
}

.ptw-mockup-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 78%;
	aspect-ratio: 1 / 1;
	transform: translate(-50%, -50%);
	border: 2px dashed #c7d0e8;
	border-radius: 50%;
}

.ptw-mockup-img {
	position: relative;
	z-index: 2;
	max-width: 78%;
	max-height: 480px;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 30px 40px rgba(16, 24, 40, 0.18));
}

.ptw-float-icon {
	position: absolute;
	z-index: 3;
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	box-shadow: 0 10px 24px rgba(16, 24, 40, 0.14);
}

.ptw-pos-top          { top: 0;    left: 50%; transform: translateX(-50%); }
.ptw-pos-left          { top: 32%; left: 0; }
.ptw-pos-right         { top: 24%; right: 0; }
.ptw-pos-bottom-left   { bottom: 8%; left: 6%; }
.ptw-pos-bottom-right  { bottom: 14%; right: 4%; }

/* ---------- CTA banner ---------- */
.ptw-cta {
	display: flex;
	align-items: center;
	gap: 18px;
	background-color: #1330C7;
	border-radius: 18px;
	padding: 22px 26px;
	color: #fff;
}

.ptw-cta-icon {
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(255,255,255,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: #fff;
}

.ptw-cta-title {
	margin: 0 0 6px 0;
	font-size: 19px;
	font-weight: 700;
}

.ptw-cta-desc {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.55;
	opacity: 0.9;
}

@media (max-width: 480px) {
	.ptw-mockup-stage { min-height: 340px; padding: 20px; }
	.ptw-float-icon { width: 44px; height: 44px; font-size: 18px; }
}
