/* ==========================================================================
   Front Page – FAQs Section
   ========================================================================== */

.fp-faqs {
	padding: 96px 24px 120px;
	background: #ffffff;
}

.fp-faqs__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

/* ---------- Header (left) ---------- */
.fp-faqs__header {
	position: sticky;
	top: 100px;
}

.fp-faqs__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	margin-bottom: 18px;
}

.fp-faqs__eyebrow-dot {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background:
		radial-gradient(circle, #2ecc71 30%, transparent 32%),
		repeating-conic-gradient(#2ecc71 0deg 6deg, transparent 6deg 12deg);
	-webkit-mask: radial-gradient(circle, black 60%, transparent 62%);
	        mask: radial-gradient(circle, black 60%, transparent 62%);
	opacity: 0.85;
}

.fp-faqs__title {
	font-size: clamp(34px, 4.4vw, 54px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #111;
	margin: 0 0 18px;
}

.fp-faqs__lede {
	font-size: 15px;
	line-height: 1.6;
	color: #555;
	max-width: 380px;
	margin: 0;
}

/* ---------- List (right) ---------- */
.fp-faqs__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.fp-faqs__item {
	border-radius: 999px;
	border: 1px solid #e2e8e4;
	background: linear-gradient(90deg, #ffffff 0%, #ffffff 55%, #d8f0e1 100%);
	overflow: hidden;
	transition: border-radius .35s ease, box-shadow .25s ease, border-color .25s ease;
}

.fp-faqs__item:hover {
	box-shadow: 0 8px 24px -16px rgba(46, 204, 113, 0.35);
}

.fp-faqs__item.is-open {
	border-radius: 22px;
	border-color: #c8ead5;
}

/* ---------- Question button ---------- */
.fp-faqs__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 26px;
	background: transparent;
	border: 0;
	cursor: pointer;
	text-align: left;
	font: inherit;
	color: #111;
}

.fp-faqs__q-text {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	color: #1a1a1a;
}

.fp-faqs__icon {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #4a4a4a;
	transition: color .25s ease, transform .35s ease;
}

.fp-faqs__icon-v {
	transition: transform .35s ease, opacity .35s ease;
	transform-origin: center;
}

.fp-faqs__question[aria-expanded="true"] .fp-faqs__icon {
	color: #2ecc71;
}

.fp-faqs__question[aria-expanded="true"] .fp-faqs__icon-v {
	transform: rotate(90deg) scaleX(0);
	opacity: 0;
}

.fp-faqs__question:focus-visible {
	outline: 2px solid #2ecc71;
	outline-offset: 3px;
	border-radius: 999px;
}

/* ---------- Panel ---------- */
.fp-faqs__panel {
	padding: 0 26px 22px;
}

.fp-faqs__panel[hidden] {
	display: none;
}

.fp-faqs__answer {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.65;
	color: #555;
	max-width: 56ch;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.fp-faqs__inner {
		gap: 56px;
	}
	.fp-faqs__header {
		position: static;
	}
}

@media (max-width: 768px) {
	.fp-faqs {
		padding: 72px 20px 88px;
	}
	.fp-faqs__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.fp-faqs__lede {
		max-width: none;
	}
	.fp-faqs__question {
		padding: 18px 22px;
	}
	.fp-faqs__panel {
		padding: 0 22px 20px;
	}
}

@media (max-width: 480px) {
	.fp-faqs__q-text {
		font-size: 14px;
	}
}
