/* ================= HERO ROOT ================= */
.dr1057hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 90px;
	overflow: hidden;
}

/* CONTAINER */
.dr1057hero .dr1057hero-container {
	width: 90%;
	max-width: 1200px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	z-index: 2;
}

/* ================= GLASS CARD ================= */
.dr1057hero .hero-content {
	flex: 0.9;
	max-width: 600px;

	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);

	border-radius: 20px;
	padding: 30px;

	border: 1px solid rgba(255, 255, 255, 0.08);

	box-shadow:
		0 8px 40px rgba(0, 0, 0, 0.6),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);

	position: relative;
	overflow: hidden;

	animation: fadeUp 1s ease forwards;
}

/* GLOSS EFFECT */
.dr1057hero .hero-content::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;

	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.15),
		transparent
	);

	transform: rotate(25deg);
	animation: shineMove 6s infinite linear;
}

/* ================= TEXT ================= */
.dr1057hero h1 {
	font-size: 46px;
	line-height: 1.2;
	margin-bottom: 20px;

	background: linear-gradient(90deg, #00D4FF, #4facfe);
	-webkit-background-clip: text;
	color: transparent;
}

.dr1057hero p {
	color: #bbb;
	margin-bottom: 25px;
	font-size: 16px;
}

/* ================= BUTTONS ================= */
.dr1057hero .hero-actions {
	display: flex;
	gap: 15px;
	margin-bottom: 25px;
}

.dr1057hero .btn-primary {
	padding: 14px 28px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;

	background: linear-gradient(135deg, #00D4FF, #4facfe);
	color: #000;

	box-shadow:
		0 0 25px rgba(0, 212, 255, 0.6),
		inset 0 1px 2px rgba(255,255,255,0.5);

	position: relative;
	overflow: hidden;
	transition: 0.3s;
}

.dr1057hero .btn-primary::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;

	background: linear-gradient(
		120deg,
		transparent,
		rgba(255,255,255,0.6),
		transparent
	);

	transition: 0.5s;
}

.dr1057hero .btn-primary:hover::before {
	left: 100%;
}

.dr1057hero .btn-primary:hover {
	transform: scale(1.05);
}

.dr1057hero .btn-secondary {
	padding: 14px 26px;
	border-radius: 50px;
	text-decoration: none;
	border: 1px solid rgba(0,212,255,0.5);
	color: #00D4FF;
}

/* ================= TRUST ================= */
.dr1057hero .hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 13px;
	color: #bbb;
}

/* ================= IMAGE ================= */
.dr1057hero .hero-image {
	flex: 1.3;
	text-align: center;
	position: relative;
	z-index: 1;
	animation: fadeIn 1.2s ease forwards;
	margin-right: -40px;
}

.dr1057hero .hero-image img {
	width: 100%;
	max-width: 650px;
	height: auto;

	border-radius: 24px;

	box-shadow:
		0 30px 80px rgba(0, 212, 255, 0.35),
		0 0 120px rgba(0, 212, 255, 0.2);

	animation: floatZoom 5s ease-in-out infinite;
	transition: transform 0.4s ease;
	cursor: pointer;
}

.dr1057hero .hero-image img:hover {
	transform: scale(1.05) translateY(-10px);
}

/* ================= GLOW ================= */
.dr1057hero .hero-glow {
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, #00D4FF, transparent);
	filter: blur(160px);
	opacity: 0.25;
	top: 10%;
	left: 50%;
	transform: translateX(-50%);
}

/* ================= ANIMATIONS ================= */
@keyframes floatZoom {
	0% { transform: translateY(0) scale(1); }
	50% { transform: translateY(-25px) scale(1.03); }
	100% { transform: translateY(0) scale(1); }
}

@keyframes fadeUp {
	from { opacity: 0; transform: translateY(40px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes shineMove {
	0% { transform: translateX(-100%) rotate(25deg); }
	100% { transform: translateX(100%) rotate(25deg); }
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

	.dr1057hero .dr1057hero-container {
		flex-direction: column;
		text-align: center;
	}

	.dr1057hero .hero-content {
		padding: 22px;
		flex: 1;
	}

	.dr1057hero h1 {
		font-size: 30px;
	}

	.dr1057hero .hero-image {
		margin-right: 0;
		width: 100%;
	}

	/* ✅ BIG IMAGE ON MOBILE */
	.dr1057hero .hero-image img {
		width: 95%;
		max-width: 600px;
		height: auto;
		margin: 0 auto;
		display: block;

		animation: floatZoomMobile 5s ease-in-out infinite;
	}

	.dr1057hero .hero-actions {
		justify-content: center;
		flex-wrap: wrap;
	}
}

/* Mobile animation */
@keyframes floatZoomMobile {
	0% { transform: translateY(0) scale(1); }
	50% { transform: translateY(-12px) scale(1.02); }
	100% { transform: translateY(0) scale(1); }
}