/**
 * Landing/Quick Start Page Styles for 3D Scan & Show Plugin
 * 
 * Styles specific to the Quick Start (Landing) page including:
 * - Step cards with numbered indicators
 * - Step actions
 */

/* ==========================================================================
   QUICK START STEPS
   ========================================================================== */

.stw-quick-start-steps {
	counter-reset: step-counter;
}

.stw-step-card {
	padding: 24px;
	margin: 20px 0;
	position: relative;
	padding-left: 80px;
}

.stw-step-card::before {
	counter-increment: step-counter;
	content: counter(step-counter);
	position: absolute;
	left: 24px;
	top: 24px;
	width: 40px;
	height: 40px;
	background: linear-gradient(
		135deg,
		var(--stw-primary) 0%,
		var(--stw-primary-dark) 100%
	);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
	box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
}

.stw-step-card h2 {
	margin: 0 0 12px 0;
	font-size: 19px;
	font-weight: 600;
	color: var(--stw-dark);
}

.stw-step-card p {
	margin: 10px 0;
	color: var(--stw-gray);
	line-height: 1.6;
}

/* ==========================================================================
   STEP ACTIONS
   ========================================================================== */

.stw-step-actions {
	margin-top: 16px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

/* ==========================================================================
   LANDING PAGE RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 782px) {
	.stw-step-card {
		padding-left: 20px;
		padding-top: 60px;
	}

	.stw-step-card::before {
		left: 50%;
		top: 15px;
		transform: translateX(-50%);
	}
}

@media (max-width: 480px) {
	.stw-step-card {
		padding: 15px;
		padding-top: 60px;
	}
}
