.jb-button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: var(--jb-space-5);
}

.jb-button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.35rem;
	border: 2px solid transparent;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	transition:
		transform var(--jb-transition),
		background-color var(--jb-transition),
		border-color var(--jb-transition),
		color var(--jb-transition),
		box-shadow var(--jb-transition);
}

.jb-button:hover {
	transform: translateY(-3px);
}

.jb-button--primary {
	color: var(--jb-white);
	background: var(--jb-orange);
	box-shadow: 0 14px 28px rgba(255, 140, 0, 0.22);
}

.jb-button--primary:hover {
	color: var(--jb-white);
	background: var(--jb-orange-dark);
	box-shadow: 0 18px 35px rgba(255, 140, 0, 0.3);
}

.jb-button--secondary {
	color: var(--jb-anthracite);
	border-color: var(--jb-anthracite);
	background: transparent;
}

.jb-button--secondary:hover {
	color: var(--jb-white);
	background: var(--jb-anthracite);
}

.jb-button--light {
	color: var(--jb-anthracite);
	background: var(--jb-white);
	box-shadow: var(--jb-shadow-sm);
}

.jb-button--light:hover {
	color: var(--jb-anthracite);
	background: #fff5e8;
}

.jb-button--outline-light {
	color: var(--jb-white);
	border-color: rgba(255, 255, 255, 0.7);
	background: transparent;
}

.jb-button--outline-light:hover {
	color: var(--jb-anthracite);
	background: var(--jb-white);
}

.jb-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--jb-anthracite);
	font-weight: 800;
	text-decoration: none;
}

.jb-text-link::after {
	content: "→";
	font-size: 1.1em;
	transition: transform var(--jb-transition);
}

.jb-text-link:hover::after {
	transform: translateX(5px);
}

.jb-card {
	padding: var(--jb-space-5);
	border: 1px solid var(--jb-border);
	border-radius: var(--jb-radius-md);
	background: var(--jb-white);
	box-shadow: var(--jb-shadow-sm);
}