.dr1057hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 90px 20px;
	background: radial-gradient(circle at top, #071020, #02040a);
	color: #fff;
	overflow: hidden;
}

/* container */
.dr1057hero-container {
	max-width: 1100px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

/* ================= LEFT CONTENT ================= */
.hero-content {
	flex: 1;
	max-width: 540px;
}

.hero-content h1 {
	font-size: 48px;
	margin-bottom: 12px;
	line-height: 1.2;

	background: linear-gradient(90deg, #00D4FF, #4facfe);
	-webkit-background-clip: text;
	color: transparent;
}

.hero-line {
	font-size: 18px;
	color: #cfcfcf;
	margin-bottom: 12px;
	line-height: 1.5;
}

.hero-trustline {
	font-size: 13px;
	color: #aaaaaa;
	margin-bottom: 22px;
}

/* buttons */
.hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.btn-primary {
	padding: 12px 22px;
	border-radius: 50px;
	text-decoration: none;
	background: #00D4FF;
	color: #000;
	font-weight: 600;
	transition: 0.3s ease;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
	padding: 12px 22px;
	border-radius: 50px;
	text-decoration: none;
	border: 1px solid #00D4FF;
	color: #00D4FF;
	transition: 0.3s ease;
}

.btn-secondary:hover {
	background: rgba(0, 212, 255, 0.1);
	transform: translateY(-2px);
}

/* ================= RIGHT IMAGE ================= */
.hero-image {
	flex: 1.3;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

/* glowing background behind image */
.hero-image::before {
	content: "";
	position: absolute;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(0,212,255,0.25), transparent 70%);
	filter: blur(80px);
	z-index: 0;
	animation: glowPulse 5s ease-in-out infinite;
}

/* main image */
.hero-image img {
	width: 100%;
	max-width: 520px;
	border-radius: 22px;
	box-shadow: 0 35px 100px rgba(0,0,0,0.6);

	position: relative;
	z-index: 1;

	transform: translateY(0) scale(1);
	animation: heroFloat 6s ease-in-out infinite;

	transition: transform 0.4s ease, box-shadow 0.4s ease;
	will-change: transform;
}

/* hover effect */
.hero-image img:hover {
	transform: scale(1.05);
	box-shadow: 0 45px 120px rgba(0,212,255,0.25);
}

/* ================= ANIMATIONS ================= */
@keyframes heroFloat {
	0% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-18px) scale(1.02);
	}
	100% {
		transform: translateY(0) scale(1);
	}
}

@keyframes glowPulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.4;
	}
	50% {
		transform: scale(1.2);
		opacity: 0.7;
	}
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

	.dr1057hero-container {
		flex-direction: column;
		text-align: center;
	}

	.hero-content h1 {
		font-size: 30px;
	}

	.hero-actions {
		justify-content: center;
	}

	.hero-image {
		margin-top: 20px;
	}

	.hero-image img {
		max-width: 360px;
		animation: heroFloatMobile 5s ease-in-out infinite;
	}

	.hero-image::before {
		width: 300px;
		height: 300px;
	}
}

/* mobile animation */
@keyframes heroFloatMobile {
	0% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-10px) scale(1.02);
	}
	100% {
		transform: translateY(0) scale(1);
	}
}