.dg-hero {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 82vh;
	padding: clamp(120px, 10vw, 150px) 20px clamp(70px, 7vw, 100px);
	overflow: hidden;
	background-color: #1c1c1c;
}

.dg-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -3;
	background:
		radial-gradient(circle at 50% 92%, rgba(255, 255, 255, 0.035), transparent 32%);
	pointer-events: none;
}

.dg-hero-inner {
	position: relative;
	z-index: 2;
	width: min(100%, 1120px);
	margin: 0 auto;
	text-align: center;
}

.dg-hero-proof {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: clamp(28px, 4vw, 46px);
}

.dg-hero-avatars {
	display: flex;
	align-items: center;
	padding-left: 8px;
}

.dg-hero-avatar {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-left: -8px;
	border-radius: 999px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.08);
	border: 2px solid #1c1c1c;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.dg-hero-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

.dg-hero-proof-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 3px;
}

.dg-hero-stars {
	display: flex;
	align-items: center;
	gap: 2px;
	color: #ffffff;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 1px;
}

.dg-hero-proof-text {
	color: rgba(255, 255, 255, 0.62);
	font-family: var(--dg-font-body, "Montserrat", Arial, sans-serif);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.25;
}

.dg-hero-title {
	max-width: 1040px;
	margin: 0 auto;
	color: #ffffff;
	font-family: var(--dg-font-heading, "TT Firs Neue", "Montserrat", Arial, sans-serif);
	font-size: clamp(42px, 4.2vw, 56px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
	text-wrap: balance;
}

.dg-hero-subtext {
	max-width: 720px;
	margin: clamp(24px, 3vw, 34px) auto 0;
	color: rgba(255, 255, 255, 0.66);
	font-family: var(--dg-font-body, "Montserrat", Arial, sans-serif);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.55;
	text-wrap: balance;
}

.dg-hero-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: clamp(32px, 4vw, 44px);
}

.dg-hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 15px 26px;
	border-radius: 14px;
	border: 1px solid transparent;
	font-family: var(--dg-font-body, "Montserrat", Arial, sans-serif);
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition:
		transform 0.22s ease,
		background-color 0.22s ease,
		border-color 0.22s ease,
		box-shadow 0.22s ease;
}

.dg-hero-btn:hover {
	transform: translateY(-2px);
}

.dg-hero-btn-primary {
	background: #11e44f;
	border-color: #11e44f;
	color: #0b0b0b;
	box-shadow: 0 14px 34px rgba(17, 228, 79, 0.18);
}

.dg-hero-btn-primary:hover {
	box-shadow: 0 18px 48px rgba(17, 228, 79, 0.24);
}

.dg-hero-btn-secondary {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.14);
	color: #ffffff;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.dg-hero-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.075);
	border-color: rgba(255, 255, 255, 0.22);
}

.dg-hero-glow {
	position: absolute;
	z-index: -2;
	left: 50%;
	bottom: -18%;
	width: min(760px, 86vw);
	height: min(310px, 36vw);
	transform: translateX(-50%);
	border-radius: 999px;
	background:
		radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.42), transparent 0 15%, transparent 42%),
		radial-gradient(circle at 50% 55%, var(--dg-hero-glow-color, rgba(17, 228, 79, 0.22)), transparent 62%);
	filter: blur(42px);
	opacity: 0.95;
	pointer-events: none;
}

.dg-hero-glow::before {
	content: "";
	position: absolute;
	inset: -22%;
	border-radius: inherit;
	background:
		radial-gradient(circle at 30% 50%, rgba(17, 228, 79, 0.22), transparent 42%),
		radial-gradient(circle at 76% 50%, rgba(17, 228, 79, 0.14), transparent 40%);
	filter: blur(34px);
	opacity: 0.75;
}

@media (max-width: 1024px) {
	.dg-hero {
		min-height: auto;
		padding-top: 132px;
		padding-bottom: 96px;
	}

	.dg-hero-title {
		max-width: 820px;
	}

	.dg-hero-subtext {
		max-width: 640px;
	}
}

@media (max-width: 767px) {
	.dg-hero {
		padding: 106px 18px 82px;
	}

	.dg-hero-proof {
		flex-direction: column;
		gap: 10px;
		margin-bottom: 30px;
	}

	.dg-hero-proof-content {
		align-items: center;
	}

	.dg-hero-avatar {
		width: 38px;
		height: 38px;
	}

	.dg-hero-stars {
		font-size: 15px;
	}

	.dg-hero-proof-text {
		font-size: 14px;
	}

	.dg-hero-title {
		font-size: clamp(36px, 11vw, 46px);
		line-height: 0.96;
	}

	.dg-hero-subtext {
		margin-top: 22px;
		font-size: 18px;
		line-height: 1.55;
	}

	.dg-hero-actions {
		width: 100%;
		margin-top: 30px;
		gap: 12px;
	}

	.dg-hero-btn {
		width: 100%;
		min-height: 52px;
		border-radius: 14px;
	}

	.dg-hero-glow {
		bottom: -9%;
		width: 88vw;
		height: 230px;
		filter: blur(38px);
		opacity: 0.75;
	}
}

@media (max-width: 374px) {
	.dg-hero {
		padding-top: 98px;
		padding-left: 14px;
		padding-right: 14px;
	}

	.dg-hero-title {
		font-size: 34px;
	}

	.dg-hero-subtext {
		font-size: 17px;
	}
}

/* ================================
   DG Hero full-width mobile fix
================================ */

.dg-hero {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.elementor-widget-dg_hero,
.elementor-widget-dg_hero > .elementor-widget-container {
	width: 100%;
	max-width: none;
}

@media (max-width: 767px) {
	.dg-hero {
		width: 100vw;
		max-width: 100vw;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		padding-left: 22px;
		padding-right: 22px;
	}

	.dg-hero::before {
		left: -10vw;
		right: -10vw;
		width: auto;
	}

	.dg-hero-glow {
		width: 120vw;
		max-width: none;
		left: 50%;
	}
}

@media (max-width: 390px) {
	.dg-hero {
		padding-left: 18px;
		padding-right: 18px;
	}
}
