/* ==========================================
   DR1062 FAQ SECTION
========================================== */
.dr1062faq {
	position: relative;
	padding: 120px 20px;
	overflow: hidden;
	background: linear-gradient(135deg, #030712 0%, #071224 20%, #0b1730 50%, #071224
		80%, #030712 100%);
}

/* Background Glow */
.dr1062faq-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.dr1062faq-bg::before {
	content: "";
	position: absolute;
	width: 750px;
	height: 750px;
	top: -250px;
	right: -180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 255, 255, .15), transparent
		70%);
	filter: blur(80px);
}

.dr1062faq-bg::after {
	content: "";
	position: absolute;
	width: 700px;
	height: 700px;
	left: -180px;
	bottom: -250px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(124, 77, 255, .16), transparent
		70%);
	filter: blur(80px);
}

.dr1062faq-container {
	max-width: 1300px;
	margin: auto;
	position: relative;
	z-index: 2;
}

/* Header */
.dr1062faq-header {
	text-align: center;
	max-width: 950px;
	margin: auto auto 80px;
}

.dr1062faq-badge {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .12);
	backdrop-filter: blur(20px);
	color: #67e8f9;
	font-weight: 700;
	margin-bottom: 25px;
}

.dr1062faq-header h2 {
	font-size: clamp(2.6rem, 5vw, 4.8rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 25px;
	background: linear-gradient(90deg, #ffffff, #88f3ff, #7c4dff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1062faq-header p {
	font-size: 1.1rem;
	line-height: 2;
	color: #d4dceb;
}

/* FAQ Grid */
.dr1062faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 25px;
}

/* FAQ Item */
.dr1062faq-item {
	position: relative;
	border-radius: 28px;
	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);
	overflow: hidden;
	transition: .4s ease;
}

.dr1062faq-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 70px rgba(0, 255, 255, .15);
}

.dr1062faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 28px 35px;
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
	position: relative;
}

.dr1062faq-item summary::-webkit-details-marker {
	display: none;
}

.dr1062faq-item summary::after {
	content: "+";
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.8rem;
	font-weight: 300;
	color: #67e8f9;
	transition: .3s;
}

.dr1062faq-item[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}

.dr1062faq-content {
	padding: 0 35px 30px;
}

.dr1062faq-content p {
	color: #d4dceb;
	line-height: 1.9;
}

/* CTA */
.dr1062faq-cta {
	margin-top: 80px;
	padding: 60px;
	text-align: center;
	border-radius: 35px;
	background: linear-gradient(135deg, rgba(0, 255, 255, .10),
		rgba(124, 77, 255, .10));
	backdrop-filter: blur(25px);
	border: 1px solid rgba(255, 255, 255, .15);
	box-shadow: 0 25px 80px rgba(0, 0, 0, .30);
}

.dr1062faq-cta h3 {
	font-size: 2rem;
	font-weight: 900;
	color: #fff;
	margin-bottom: 15px;
}

.dr1062faq-cta p {
	color: #d4dceb;
	max-width: 700px;
	margin: auto;
	line-height: 2;
}

.dr1062faq-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
	padding: 16px 34px;
	border-radius: 100px;
	text-decoration: none;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, #00e5ff, #7c4dff);
	box-shadow: 0 15px 40px rgba(0, 229, 255, .35);
	transition: .4s ease;
}

.dr1062faq-btn:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(0, 229, 255, .50);
}

/* Mobile */
@media ( max-width :768px) {
	.dr1062faq {
		padding: 90px 18px;
	}
	.dr1062faq-grid {
		grid-template-columns: 1fr;
	}
	.dr1062faq-item summary {
		padding: 24px;
		font-size: 1rem;
	}
	.dr1062faq-content {
		padding: 0 24px 24px;
	}
	.dr1062faq-cta {
		padding: 35px 25px;
	}
}