/* Shared "Start with a free account" card — for-* pages + how-it-works */
.role-getstarted-section {
	padding: var(--role-getstarted-section-y, 48px) 0;
	/* Background comes from the shared .bgl-stacked-section--cream/--white
	   tint modifier on pages that use the stacked-section treatment; with no
	   modifier this falls through to the page's cream body colour. */
}

.role-getstarted-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}

.role-getstarted-card {
	background: #fff;
	border-radius: 20px;
	padding: 32px 36px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.role-getstarted-icon {
	flex-shrink: 0;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: #003842;
	display: flex;
	align-items: center;
	justify-content: center;
}

.role-getstarted-icon i {
	font-size: 46px;
	color: #fff;
}

.role-getstarted-content {
	min-width: 0;
}

.role-getstarted-title {
	font-family: 'Crimson Pro', Georgia, serif;
	font-size: 24px;
	font-weight: 400;
	color: #003842;
	margin: 0 0 12px;
	line-height: 1.2;
}

.role-getstarted-included-label {
	font-family: 'Fustat', 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #428583;
	margin: 0 0 10px;
}

.role-getstarted-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px 18px;
}

.role-getstarted-list li {
	font-family: 'Fustat', 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #001a1f;
	display: flex;
	align-items: center;
	gap: 8px;
	line-height: 1.3;
}

.role-getstarted-list li i {
	flex-shrink: 0;
	font-size: 17px;
	color: #428583;
}

.role-getstarted-premium {
	flex-shrink: 0;
	max-width: 200px;
	padding-left: 28px;
	border-left: 1px solid #e5ddd5;
}

.role-getstarted-premium-title {
	font-family: 'Fustat', 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #003842;
	margin: 0 0 6px;
	line-height: 1.3;
}

.role-getstarted-premium-text {
	font-family: 'Fustat', 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #001a1f;
	line-height: 1.45;
	margin: 0;
	opacity: 0.8;
}

.role-getstarted-cta {
	text-align: center;
	margin-top: 0;
	grid-column: 1 / -1;
}

.role-getstarted-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 28px;
	background: #E9A84A;
	border: 2px solid #E9A84A;
	color: #fff;
	font-family: 'Fustat', 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--bgl-btn-radius);
	transition: all 0.2s ease;
}

.role-getstarted-btn:hover {
	background: #D4963C;
	border-color: #D4963C;
	color: #fff;
	text-decoration: none;
}

.role-getstarted-btn i {
	font-size: 17px;
}

@media (max-width: 992px) {
	.role-getstarted-card {
		grid-template-columns: auto 1fr;
		gap: 24px;
	}

	.role-getstarted-premium {
		grid-column: 1 / -1;
		max-width: none;
		padding-left: 0;
		padding-top: 16px;
		border-left: none;
		border-top: 1px solid #e5ddd5;
	}
}

@media (max-width: 768px) {
	.role-getstarted-section {
		padding-top: var(--role-getstarted-section-y, 40px);
		padding-bottom: var(--role-getstarted-section-y, 40px);
	}

	.role-getstarted-card {
		grid-template-columns: 1fr;
		padding: 24px 20px;
		gap: 16px;
		text-align: center;
	}

	.role-getstarted-icon {
		width: 84px;
		height: 84px;
		margin: 0 auto;
	}

	.role-getstarted-icon i {
		font-size: 38px;
	}

	.role-getstarted-title {
		font-size: 22px;
	}

	.role-getstarted-list {
		grid-template-columns: 1fr;
		text-align: left;
	}

	.role-getstarted-premium {
		text-align: left;
	}
}
