/* ===================================
   DR1062 PRIVACY POLICY SECTION
=================================== */
.dr1062privacypolicy {
	position: relative;
	padding: 120px 20px;
	overflow: hidden;
	background: linear-gradient(135deg, #050816 0%, #091126 30%, #0f1732 70%, #050816
		100%);
}

.dr1062privacy-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.dr1062privacy-bg::before {
	content: "";
	position: absolute;
	width: 700px;
	height: 700px;
	top: -250px;
	right: -150px;
	background: radial-gradient(circle, rgba(0, 255, 255, .15), transparent
		70%);
	filter: blur(40px);
}

.dr1062privacy-bg::after {
	content: "";
	position: absolute;
	width: 650px;
	height: 650px;
	bottom: -250px;
	left: -150px;
	background: radial-gradient(circle, rgba(90, 120, 255, .18), transparent
		70%);
	filter: blur(50px);
}

.dr1062privacy-container {
	max-width: 1300px;
	margin: auto;
	position: relative;
	z-index: 2;
}

.dr1062privacy-header {
	text-align: center;
	max-width: 900px;
	margin: auto auto 70px;
}

.dr1062privacy-badge {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, .15);
	color: #4de8ff;
	font-weight: 700;
	font-size: .95rem;
	letter-spacing: .5px;
	margin-bottom: 25px;
}

.dr1062privacy-header h2 {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 25px;
	background: linear-gradient(90deg, #ffffff, #7de3ff, #4de8ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1062privacy-header p {
	font-size: 1.15rem;
	line-height: 1.9;
	color: #c7d2e3;
}

.dr1062privacy-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

.dr1062privacy-card {
	position: relative;
	padding: 35px;
	border-radius: 28px;
	background: linear-gradient(145deg, rgba(255, 255, 255, .12),
		rgba(255, 255, 255, .05));
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, .15);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .35), inset 0 1px 1px
		rgba(255, 255, 255, .2);
	transition: .45s ease;
}

.dr1062privacy-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(255, 255, 255, .18),
		transparent 40%);
	pointer-events: none;
}

.dr1062privacy-card:hover {
	transform: translateY(-12px) rotateX(4deg);
	box-shadow: 0 30px 70px rgba(0, 255, 255, .18);
}

.dr1062privacy-card h3 {
	font-size: 1.4rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 15px;
}

.dr1062privacy-card p {
	color: #cdd8ea;
	line-height: 1.9;
	font-size: 1rem;
}

.dr1062privacy-highlight {
	margin-top: 70px;
	padding: 50px;
	border-radius: 35px;
	text-align: center;
	background: linear-gradient(135deg, rgba(0, 255, 255, .10),
		rgba(90, 120, 255, .10));
	backdrop-filter: blur(25px);
	border: 1px solid rgba(255, 255, 255, .12);
	box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}

.dr1062privacy-highlight h3 {
	font-size: 2rem;
	color: #ffffff;
	margin-bottom: 18px;
	font-weight: 900;
}

.dr1062privacy-highlight p {
	max-width: 850px;
	margin: auto;
	color: #d7e1f0;
	line-height: 2;
	font-size: 1.1rem;
}

/* Responsive */
@media ( max-width :768px) {
	.dr1062privacypolicy {
		padding: 90px 18px;
	}
	.dr1062privacy-card {
		padding: 28px;
	}
	.dr1062privacy-highlight {
		padding: 35px 25px;
	}
}