/* ===================================================
   DR1062 TERMS & CONDITIONS
=================================================== */
.dr1062termsandconditions {
	position: relative;
	padding: 120px 20px;
	overflow: hidden;
	background: linear-gradient(135deg, #020817 0%, #071126 25%, #0a1832 50%, #071126
		75%, #020817 100%);
}

/* Background Effects */
.dr1062terms-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.dr1062terms-bg::before {
	content: "";
	position: absolute;
	width: 700px;
	height: 700px;
	top: -250px;
	right: -180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 229, 255, .18), transparent
		70%);
	filter: blur(60px);
}

.dr1062terms-bg::after {
	content: "";
	position: absolute;
	width: 700px;
	height: 700px;
	left: -220px;
	bottom: -250px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(123, 97, 255, .20), transparent
		70%);
	filter: blur(70px);
}

.dr1062terms-container {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	margin: auto;
}

/* Header */
.dr1062terms-header {
	text-align: center;
	max-width: 950px;
	margin: auto auto 80px;
}

.dr1062terms-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	border-radius: 100px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .15);
	backdrop-filter: blur(20px);
	color: #67e8f9;
	font-weight: 700;
	margin-bottom: 25px;
}

.dr1062terms-header h2 {
	font-size: clamp(2.7rem, 5vw, 4.8rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 25px;
	background: linear-gradient(90deg, #ffffff, #84ffff, #60a5fa);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1062terms-header p {
	font-size: 1.15rem;
	line-height: 1.9;
	color: #d4dceb;
}

/* Grid */
.dr1062terms-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

/* Cards */
.dr1062terms-card {
	position: relative;
	padding: 35px;
	border-radius: 30px;
	background: linear-gradient(145deg, rgba(255, 255, 255, .12),
		rgba(255, 255, 255, .05));
	backdrop-filter: blur(25px);
	border: 1px solid rgba(255, 255, 255, .12);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .35), inset 0 1px 0
		rgba(255, 255, 255, .15);
	transform-style: preserve-3d;
	transition: transform .45s ease, box-shadow .45s ease;
}

.dr1062terms-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(255, 255, 255, .20),
		transparent 45%);
	pointer-events: none;
}

.dr1062terms-card:hover {
	transform: translateY(-12px) rotateX(4deg) rotateY(-4deg);
	box-shadow: 0 30px 80px rgba(0, 229, 255, .18);
}

.dr1062terms-icon {
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	font-size: 1.15rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 25px;
	background: linear-gradient(135deg, #00e5ff, #7c4dff);
	box-shadow: 0 15px 30px rgba(0, 229, 255, .30);
}

.dr1062terms-card h3 {
	color: #ffffff;
	font-size: 1.45rem;
	font-weight: 800;
	margin-bottom: 15px;
}

.dr1062terms-card p {
	color: #d4dceb;
	line-height: 1.9;
	font-size: 1rem;
}

/* Highlight */
.dr1062terms-highlight {
	margin-top: 80px;
	padding: 60px;
	text-align: center;
	border-radius: 35px;
	background: linear-gradient(135deg, rgba(0, 229, 255, .10),
		rgba(124, 77, 255, .10));
	backdrop-filter: blur(25px);
	border: 1px solid rgba(255, 255, 255, .15);
	box-shadow: 0 30px 80px rgba(0, 0, 0, .30);
}

.dr1062terms-highlight h3 {
	font-size: 2rem;
	font-weight: 900;
	color: #fff;
	margin-bottom: 20px;
}

.dr1062terms-highlight p {
	max-width: 900px;
	margin: auto;
	color: #d7dfec;
	line-height: 2;
	font-size: 1.08rem;
}

/* Responsive */
@media ( max-width :768px) {
	.dr1062termsandconditions {
		padding: 90px 18px;
	}
	.dr1062terms-card {
		padding: 28px;
	}
	.dr1062terms-highlight {
		padding: 35px 25px;
	}
	.dr1062terms-header p {
		font-size: 1rem;
	}
}