.dr1060faqbrief {
	padding: 90px 20px;
	background: radial-gradient(circle at top, #070b14, #04050a);
	color: #fff;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
	overflow: hidden;
}

/* ================= HERO ================= */
.faq-hero {
	position: relative;
	border-radius: 26px;
	overflow: hidden;
	box-shadow: 0 40px 120px rgba(0, 0, 0, 0.75);
	display: grid;
}

.faq-hero-image {
	width: 100%;
	height: 420px;
	object-fit: cover;
	grid-area: 1/1;
	filter: brightness(0.7) contrast(1.2);
	transform: scale(1.05);
}

.faq-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(0, 0, 0, 0.75),
		rgba(0, 0, 0, 0.2));
	z-index: 1;
}

.faq-content {
	position: absolute;
	top: 50%;
	left: 40px;
	transform: translateY(-50%);
	max-width: 650px;
	z-index: 2;
}

.faq-title {
	font-size: 36px;
	font-weight: 900;
	letter-spacing: -0.5px;
}

.faq-subtitle {
	margin-top: 12px;
	font-size: 16px;
	opacity: 0.85;
	line-height: 1.6;
}

.faq-badges {
	margin-top: 18px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.faq-badges span {
	font-size: 12px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
}

/* ================= FAQ LIST ================= */
.faq-container {
	margin-top: 70px;
}

.faq-section-title {
	text-align: center;
	font-size: 22px;
	margin-bottom: 40px;
	opacity: 0.9;
}

.faq-list {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* ITEM */
.faq-item {
	border-radius: 16px;
	overflow: hidden;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.07),
		rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
	transform: translateY(30px);
	opacity: 0;
	transition: all 0.7s ease;
}

.faq-item.show {
	transform: translateY(0);
	opacity: 1;
}

/* QUESTION */
.faq-question {
	width: 100%;
	padding: 16px 18px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	position: relative;
}

.faq-question::after {
	content: "+";
	position: absolute;
	right: 18px;
	font-size: 18px;
	opacity: 0.7;
}

/* ANSWER */
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease, padding 0.5s ease;
	padding: 0 18px;
	font-size: 14px;
	opacity: 0.8;
	line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer {
	max-height: 200px;
	padding: 0 18px 16px;
}

.faq-item.active .faq-question::after {
	content: "−";
}

/* ==========================================
   FAQ CTA BUTTONS (PREMIUM STYLE)
========================================== */
.faq-cta {
	margin-top: 18px;
	display: flex;
	gap: 12px;
}

/* PRIMARY BUTTON (HERO) */
.faq-btn-primary {
	display: inline-flex;
	align-items: center;
	padding: 12px 20px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(135deg, #4da3ff, #7c4dff);
	box-shadow: 0 10px 30px rgba(77, 163, 255, 0.35), 0 0 40px
		rgba(124, 77, 255, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-btn-primary:hover {
	transform: translateY(-3px) scale(1.04);
	box-shadow: 0 15px 45px rgba(77, 163, 255, 0.5), 0 0 70px
		rgba(124, 77, 255, 0.35);
}

/* SECONDARY BUTTON (BOTTOM CTA) */
.faq-footer-cta {
	margin-top: 40px;
	text-align: center;
}

.faq-btn-secondary {
	display: inline-block;
	padding: 12px 22px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: #7cc7ff;
	border: 1px solid rgba(124, 199, 255, 0.3);
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.faq-btn-secondary:hover {
	background: rgba(124, 199, 255, 0.08);
	transform: translateY(-2px);
	color: #ffffff;
	border-color: rgba(124, 199, 255, 0.6);
}

/* ================= RESPONSIVE ================= */
@media ( max-width : 768px) {
	.faq-hero-image {
		height: 280px;
		transform: scale(1);
	}
	.faq-content {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		padding: 16px;
		margin-top: -110px;
	}
	.faq-title {
		font-size: 22px;
	}
	.faq-subtitle {
		font-size: 13px;
	}
}