/* ============================================================
   KTK FAQ — scoped to .ktk-faq
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&display=swap');

.ktk-faq *, .ktk-faq *::before, .ktk-faq *::after { box-sizing: border-box; }

.ktk-faq {
	background: #F7F5F0;
	padding: 96px 0;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.ktk-faq__container {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 28px;
}

/* ── Header ── */
.ktk-faq__header {
	text-align: center;
	margin-bottom: 56px;
}

.ktk-faq__label {
	display: inline-block;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #C9A84C !important;
	background: rgba(201,168,76,.1);
	border: 1px solid rgba(201,168,76,.3);
	border-radius: 20px;
	padding: 5px 14px;
	margin: 0 0 16px !important;
	font-family: 'DM Sans', sans-serif !important;
}

.ktk-faq__title {
	font-size: clamp(28px, 4vw, 38px) !important;
	font-weight: 700 !important;
	color: #1B2B4B !important;
	margin: 0 !important;
	line-height: 1.2 !important;
	font-family: 'DM Sans', sans-serif !important;
}

/* ── Grid ── */
.ktk-faq__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

/* ── Item ── */
.ktk-faq__item {
	background: #fff !important;
	border: 1px solid #e5e3dc !important;
	border-radius: 12px !important;
	overflow: hidden;
	transition: box-shadow .2s;
}

.ktk-faq__item:hover {
	box-shadow: 0 4px 20px rgba(27,43,75,.08) !important;
	background: #fff !important;
}

.ktk-faq__item.is-open {
	border-left: 3px solid #C9A84C !important;
	background: #fff !important;
}

/* ── Question button ── */
.ktk-faq__question {
	width: 100% !important;
	display: flex !important;
	align-items: flex-start !important;
	justify-content: space-between !important;
	gap: 16px !important;
	padding: 28px 32px !important;
	background: #fff !important;
	background-color: #fff !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	cursor: pointer !important;
	text-align: left !important;
	font-family: 'DM Sans', sans-serif !important;
	color: #1B2B4B !important;
}

.ktk-faq__question:hover,
.ktk-faq__question:focus,
.ktk-faq__question:active,
.ktk-faq__item.is-open .ktk-faq__question {
	background: #fff !important;
	background-color: #fff !important;
	color: #1B2B4B !important;
	outline: none !important;
	box-shadow: none !important;
}

.ktk-faq__question span {
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #1B2B4B !important;
	line-height: 1.4 !important;
	flex: 1 !important;
}

.ktk-faq__question:hover span,
.ktk-faq__question:focus span,
.ktk-faq__item.is-open .ktk-faq__question span {
	color: #1B2B4B !important;
}

/* ── Chevron ── */
.ktk-faq__chevron {
	flex-shrink: 0 !important;
	color: #C9A84C !important;
	margin-top: 2px !important;
	transition: transform .25s ease !important;
}

.ktk-faq__item.is-open .ktk-faq__chevron {
	transform: rotate(180deg) !important;
}

/* ── Answer ── */
.ktk-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease, padding .3s ease;
	padding: 0 32px;
	background: #fff !important;
}

.ktk-faq__item.is-open .ktk-faq__answer {
	max-height: 400px;
	padding: 0 32px 28px;
}

.ktk-faq__answer p {
	font-size: 13.5px !important;
	font-weight: 400 !important;
	color: #6b7280 !important;
	line-height: 1.65 !important;
	margin: 0 !important;
	font-family: 'DM Sans', sans-serif !important;
}

/* ── Responsive ── */
@media (max-width: 680px) {
	.ktk-faq__grid { grid-template-columns: 1fr; }
	.ktk-faq { padding: 64px 0; }
	.ktk-faq__question { padding: 20px 20px !important; }
	.ktk-faq__answer { padding: 0 20px; }
	.ktk-faq__item.is-open .ktk-faq__answer { padding: 0 20px 20px; }
}
