/* TvdG Conversie — bedankpagina */

.tvdgc-wrap {
	--tvdgc-accent: #f0a500;
	--tvdgc-ink: #16181d;
	--tvdgc-muted: #5f646d;
	--tvdgc-line: #e6e8ee;
	--tvdgc-soft: #f7f8fa;
	max-width: 860px;
	margin: 0 auto;
	color: var(--tvdgc-ink);
	line-height: 1.6;
	box-sizing: border-box;
}

.tvdgc-wrap *,
.tvdgc-wrap *::before,
.tvdgc-wrap *::after {
	box-sizing: border-box;
}

.tvdgc-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--tvdgc-line);
	border-radius: 18px;
	padding: 48px 44px 40px;
	box-shadow: 0 18px 40px rgba(22, 24, 29, 0.07);
	overflow: hidden;
}

.tvdgc-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--tvdgc-accent);
}

.tvdgc-check {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	margin: 0 0 22px;
	border-radius: 50%;
	background: var(--tvdgc-accent);
	color: #fff;
}

.tvdgc-title {
	margin: 0 0 12px;
	font-size: 32px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--tvdgc-ink);
}

.tvdgc-lead {
	margin: 0 0 20px;
	font-size: 17px;
	color: var(--tvdgc-muted);
	max-width: 560px;
}

.tvdgc-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 32px;
	padding: 8px 16px;
	border: 1px solid var(--tvdgc-line);
	border-radius: 999px;
	background: var(--tvdgc-soft);
	font-size: 14px;
	font-weight: 600;
	color: var(--tvdgc-ink);
}

.tvdgc-chip span {
	font-weight: 500;
	color: var(--tvdgc-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 11px;
}

.tvdgc-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	padding: 32px 0;
	border-top: 1px solid var(--tvdgc-line);
	border-bottom: 1px solid var(--tvdgc-line);
}

.tvdgc-step h3 {
	margin: 12px 0 6px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--tvdgc-ink);
}

.tvdgc-step p {
	margin: 0;
	font-size: 14.5px;
	color: var(--tvdgc-muted);
}

.tvdgc-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--tvdgc-ink);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.tvdgc-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin: 32px 0 0;
	padding: 24px 28px;
	border-radius: 14px;
	background: var(--tvdgc-ink);
	color: #fff;
}

.tvdgc-cta-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.tvdgc-cta-text strong {
	font-size: 17px;
	font-weight: 700;
}

.tvdgc-cta-text span {
	font-size: 14.5px;
	color: rgba(255, 255, 255, 0.72);
}

.tvdgc-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 24px;
	border-radius: 999px;
	background: var(--tvdgc-accent);
	color: #16181d !important;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none !important;
	white-space: nowrap;
	transition: transform 0.15s ease, filter 0.15s ease;
}

.tvdgc-btn:hover,
.tvdgc-btn:focus {
	filter: brightness(1.06);
	transform: translateY(-1px);
	color: #16181d !important;
}

.tvdgc-links {
	margin: 26px 0 0;
	font-size: 14.5px;
	color: var(--tvdgc-muted);
}

.tvdgc-links a {
	color: var(--tvdgc-muted);
	text-decoration: none;
	border-bottom: 1px solid var(--tvdgc-line);
	padding-bottom: 1px;
}

.tvdgc-links a:hover {
	color: var(--tvdgc-ink);
	border-bottom-color: var(--tvdgc-accent);
}

.tvdgc-links span {
	margin: 0 10px;
	color: #c7cad2;
}

@media (max-width: 782px) {
	.tvdgc-card {
		padding: 34px 24px 30px;
		border-radius: 14px;
	}

	.tvdgc-title {
		font-size: 26px;
	}

	.tvdgc-lead {
		font-size: 16px;
	}

	.tvdgc-steps {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 26px 0;
	}

	.tvdgc-cta {
		padding: 22px;
		align-items: stretch;
	}

	.tvdgc-btn {
		justify-content: center;
		width: 100%;
	}

	.tvdgc-links {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.tvdgc-links span {
		display: none;
	}
}
