/* Welcome screen (activation onboarding). */

.epc-welcome {
	max-width: 800px;
	margin: 20px auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.epc-welcome-header {
	background: linear-gradient(135deg, #040c47 0%, #1a237e 100%);
	color: #fff;
	padding: 40px;
	border-radius: 10px;
	text-align: center;
	margin-bottom: 30px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.epc-welcome-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ff8026, #ffa726);
}

.epc-welcome-header h1 {
	font-size: 2.5em;
	margin: 0 0 10px;
	font-weight: 600;
	line-height: 1.3;
	color: #fff;
}

.epc-welcome-header p {
	font-size: 1.2em;
	opacity: 0.9;
	margin: 0;
}

.epc-welcome-content {
	background: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	border: 1px solid #e1e1e1;
}

.epc-welcome-form-group {
	margin-bottom: 25px;
}

.epc-welcome-form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #23282d;
	font-size: 14px;
}

.epc-welcome-input {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e1e1e1;
	border-radius: 6px;
	font-size: 16px;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.epc-welcome-input:focus {
	border-color: #ff8026;
	box-shadow: 0 0 0 3px rgba(255, 128, 38, 0.1);
	outline: none;
}

.epc-welcome-buttons {
	display: flex;
	gap: 15px;
	margin-top: 30px;
}

.epc-welcome-btn {
	flex: 1;
	padding: 15px 12px;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	text-decoration: none;
	display: inline-block;
}

.epc-welcome-btn-primary {
	background: linear-gradient(135deg, #ff8026 0%, #ffa726 100%);
	color: #fff;
}

.epc-welcome-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 128, 38, 0.4);
}

.epc-welcome-btn-secondary {
	background: #f8f9fa;
	color: #6c757d;
	border: 2px solid #e1e1e1;
}

.epc-welcome-btn-secondary:hover {
	background: #e9ecef;
	border-color: #6c757d;
}

.epc-welcome-btn-dashboard {
	background: #040c47;
	color: #fff;
}

.epc-welcome-btn-dashboard:hover {
	background: #1a237e;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(4, 12, 71, 0.4);
}

.epc-welcome-btn a {
	color: inherit;
	text-decoration: none;
	display: block;
	box-shadow: none;
}

/* Free setup help card */
.epc-setup-help-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 24px 28px;
	margin-top: 28px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.epc-setup-left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.epc-setup-avatar-wrapper {
	position: relative;
	width: 64px;
	height: 64px;
	flex-shrink: 0;
}

.epc-setup-avatar-svg {
	border-radius: 50%;
	display: block;
}

.epc-setup-status-dot {
	position: absolute;
	top: 2px;
	right: 2px;
	width: 13px;
	height: 13px;
	background: #22c55e;
	border: 2.5px solid #ffffff;
	border-radius: 50%;
}

.epc-setup-time-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #ede9fe;
	color: #7c3aed;
	font-size: 13px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 8px;
}

.epc-setup-info h3 {
	font-size: 20px;
	font-weight: 700;
	color: #040c47;
	margin: 0 0 4px 0;
	line-height: 1.3;
}

.epc-setup-info p {
	font-size: 14px;
	color: #64748b;
	margin: 0;
}

.epc-setup-claim-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #ffffff;
	border: 1.5px solid #ff8026;
	color: #ff8026;
	font-weight: 600;
	font-size: 15px;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.epc-setup-claim-btn:hover {
	background: #fff7ed;
	border-color: #ea580c;
	color: #ea580c;
}

.epc-welcome-other-products {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #e1e1e1;
}

.epc-welcome-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.epc-welcome-feature {
	text-align: center;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	border-left: 4px solid #ff8026;
	transition: all 0.3s ease;
}

.epc-welcome-feature:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.epc-welcome-feature h3 {
	margin: 0 0 10px;
	color: #23282d;
	font-size: 1.1em;
}

.epc-welcome-feature p {
	margin: 0;
	color: #6c757d;
	font-size: 14px;
	line-height: 1.5;
}

.epc-welcome-section-title {
	color: #040c47;
	border-bottom: 2px solid #ff8026;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.epc-welcome-buttons {
		flex-direction: column;
	}

	.epc-welcome-header {
		padding: 30px 20px;
	}

	.epc-welcome-content {
		padding: 30px 20px;
	}

	.epc-welcome-features {
		grid-template-columns: 1fr;
	}

	.epc-setup-help-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.epc-setup-right {
		width: 100%;
	}

	.epc-setup-claim-btn {
		width: 100%;
		justify-content: center;
	}
}
