/* ==================== FAQ Page ==================== */

:root {
	--gel-main: #28978a;
	--gel-main-dark: #1f766d;
	--gel-ink: #102629;
	--gel-text: #2c3d40;
	--gel-muted: #657477;
	--gel-soft: #f6f8f8;
	--gel-line: #e4ebea;
	--gel-white: #ffffff;
}

html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

.faq-page,
.faq-list-section,
.faq-inquiry {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.faq-page {
	background: #ffffff;
	color: var(--gel-text);
}

.faq-page a,
.faq-list-section a,
.faq-inquiry a {
	text-decoration: none;
}

.faq-container {
	width: 100%;
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: border-box;
}

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

/* ==================== FAQ List ==================== */

.faq-list-section {
	padding: 104px 0 108px;
	background: #ffffff;
	color: var(--gel-text);
}

.faq-layout {
	display: grid;
	grid-template-columns: 0.34fr 0.66fr;
	gap: 72px;
	align-items: start;
}

.faq-intro {
	position: sticky;
	top: 120px;
	min-width: 0;
}

.faq-intro > span {
	display: block;
	margin-bottom: 14px;
	color: var(--gel-main);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.faq-intro h1 {
	margin: 0;
	color: var(--gel-ink);
	font-size: 48px;
	line-height: 1.1;
	font-weight: 760;
	letter-spacing: -1.2px;
}

.faq-intro p {
	margin: 22px 0 0;
	color: var(--gel-muted);
	font-size: 16px;
	line-height: 1.82;
}

/* ==================== FAQ Category Navigation ==================== */

.faq-category-nav {
	display: grid;
	gap: 10px;
	margin-top: 30px;
}

.faq-category-btn {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	min-height: 42px;
	padding: 0 18px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	border: 1px solid #dfe8e7;
	border-radius: 999px;
	background: #f6f8f8;
	color: var(--gel-ink);
	font-size: 14px;
	line-height: 1.3;
	font-weight: 760;
	font-family: inherit;
	text-align: left;
	cursor: pointer;
	box-shadow: none;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-category-btn:hover,
.faq-category-btn.active {
	background: var(--gel-main);
	border-color: var(--gel-main);
	color: #ffffff;
	box-shadow: 0 12px 28px rgba(40, 151, 138, 0.2);
}

.faq-category-btn:focus,
.faq-category-btn:focus-visible,
.faq-category-btn:active {
	outline: none;
}

.faq-category-btn.active:focus,
.faq-category-btn.active:focus-visible,
.faq-category-btn.active:active {
	box-shadow: 0 12px 28px rgba(40, 151, 138, 0.2);
}

/* ==================== FAQ Contact Button ==================== */

.faq-contact-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 184px;
	min-height: 50px;
	margin-top: 30px;
	padding: 0 34px;
	border-radius: 999px;
	background: var(--gel-main);
	border: 1px solid var(--gel-main);
	color: #ffffff;
	font-size: 15px;
	font-weight: 760;
	box-shadow: 0 14px 32px rgba(40, 151, 138, 0.22);
	transition: all 0.25s ease;
}

.faq-contact-btn:hover {
	background: var(--gel-main-dark);
	border-color: var(--gel-main-dark);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(40, 151, 138, 0.3);
}

.faq-contact-btn:focus,
.faq-contact-btn:focus-visible,
.faq-contact-btn:active {
	outline: none;
}

/* ==================== FAQ Category Panels ==================== */

.faq-content-area {
	min-width: 0;
}

.faq-category-panel,
.faq-category-panel[hidden] {
	display: none !important;
}

.faq-category-panel.active {
	display: block !important;
}

.faq-category-head {
	margin-bottom: 22px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--gel-line);
}

.faq-category-head span {
	display: block;
	margin-bottom: 12px;
	color: var(--gel-main);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.faq-category-head h2 {
	margin: 0;
	color: var(--gel-ink);
	font-size: 34px;
	line-height: 1.16;
	font-weight: 760;
	letter-spacing: -0.8px;
}

.faq-category-head p {
	max-width: 820px;
	margin: 14px 0 0;
	color: #425154;
	font-size: 16px;
	line-height: 1.72;
}

/* ==================== FAQ Accordion ==================== */

.faq-accordion {
	border-top: none;
}

.faq-item {
	border-bottom: 1px solid var(--gel-line);
}

.faq-question {
	width: 100%;
	min-height: 76px;
	padding: 24px 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 34px;
	gap: 24px;
	align-items: center;
	border: none;
	background: transparent;
	text-align: left;
	cursor: pointer;
	font-family: inherit;
}

.faq-question span {
	min-width: 0;
	color: var(--gel-ink);
	font-size: 21px;
	line-height: 1.36;
	font-weight: 700;
	letter-spacing: -0.35px;
	overflow-wrap: break-word;
	transition: color 0.25s ease;
}

.faq-question:focus,
.faq-question:focus-visible,
.faq-question:active {
	outline: none;
	box-shadow: none;
}

.faq-question i {
	position: relative;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(40, 151, 138, 0.1);
	transition: all 0.25s ease;
}

.faq-question i::before,
.faq-question i::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 14px;
	height: 2px;
	border-radius: 999px;
	background: var(--gel-main);
	transform: translate(-50%, -50%);
	transition: all 0.25s ease;
}

.faq-question i::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-question span {
	color: var(--gel-main-dark);
}

.faq-item.active .faq-question i {
	background: var(--gel-main);
}

.faq-item.active .faq-question i::before,
.faq-item.active .faq-question i::after {
	background: #ffffff;
}

.faq-item.active .faq-question i::after {
	transform: translate(-50%, -50%) rotate(0deg);
	opacity: 0;
}

.faq-answer {
	display: none;
	padding: 0 58px 28px 0;
}

.faq-item.active .faq-answer {
	display: block;
}

.faq-answer-inner {
	max-width: 100%;
	color: #425154;
	font-size: 16px;
	line-height: 1.82;
	font-weight: 400;
	overflow-wrap: break-word;
}

.faq-answer-inner p {
	margin: 0 0 16px;
}

.faq-answer-inner p:last-child {
	margin-bottom: 0;
}

.faq-answer-inner ul,
.faq-answer-inner ol {
	margin: 0 0 16px;
	padding-left: 22px;
}

.faq-answer-inner li {
	margin-bottom: 8px;
}

/* ==================== FAQ Inquiry Form ==================== */

.faq-inquiry {
	padding: 94px 0 104px;
	background: #f6f8f8;
	color: var(--gel-text);
}

.faq-inquiry-layout {
	display: grid;
	grid-template-columns: 0.42fr 0.58fr;
	gap: 68px;
	align-items: start;
}

.faq-inquiry-content {
	padding-top: 8px;
}

.faq-inquiry-content span {
	display: block;
	margin-bottom: 14px;
	color: var(--gel-main);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.faq-inquiry-content h2 {
	margin: 0;
	color: var(--gel-ink);
	font-size: 42px;
	line-height: 1.14;
	font-weight: 760;
	letter-spacing: -1.1px;
}

.faq-inquiry-content p {
	margin: 22px 0 0;
	color: #425154;
	font-size: 16px;
	line-height: 1.82;
	font-weight: 400;
}

.faq-form-box {
	padding: 46px 44px 50px;
	background: #ffffff;
	box-shadow: 0 18px 46px rgba(16, 38, 41, 0.07);
}

.faq-field {
	margin-bottom: 20px;
}

.faq-field label {
	display: block;
	margin-bottom: 9px;
	color: var(--gel-ink);
	font-size: 14px;
	line-height: 1.4;
	font-weight: 700;
}

.faq-field input,
.faq-field textarea {
	width: 100%;
	border: 1px solid #dbe5e4;
	background: #ffffff;
	color: var(--gel-text);
	font-size: 15px;
	line-height: 1.5;
	font-family: inherit;
	box-sizing: border-box;
	transition: all 0.22s ease;
}

.faq-field input {
	height: 50px;
	padding: 0 16px;
}

.faq-field textarea {
	min-height: 170px;
	padding: 14px 16px;
	resize: vertical;
}

.faq-field input:focus,
.faq-field textarea:focus {
	outline: none;
	border-color: var(--gel-main);
	box-shadow: 0 0 0 3px rgba(40, 151, 138, 0.12);
}

.gel-message-result {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.5;
}

.faq-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 178px;
	min-height: 52px;
	border: 1px solid var(--gel-main);
	background: var(--gel-main);
	color: #ffffff;
	font-size: 15px;
	font-weight: 760;
	font-family: inherit;
	cursor: pointer;
	box-shadow: 0 14px 32px rgba(40, 151, 138, 0.22);
	transition: all 0.25s ease;
}

.faq-submit:hover {
	background: var(--gel-main-dark);
	border-color: var(--gel-main-dark);
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(40, 151, 138, 0.3);
}

.faq-submit:focus,
.faq-submit:focus-visible,
.faq-submit:active {
	outline: none;
}

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

@media (max-width: 991px) {
	.faq-list-section {
		padding: 84px 0 88px;
	}

	.faq-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 42px;
	}

	.faq-intro {
		position: relative;
		top: auto;
	}

	.faq-intro h1 {
		font-size: 38px;
	}

	.faq-category-nav {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px;
		width: 100%;
		max-width: 100%;
		margin-top: 28px;
		padding-bottom: 0;
		overflow: visible;
	}

	.faq-category-btn {
		width: 100%;
		min-width: 0;
		max-width: 100%;
		padding: 0 14px;
		justify-content: center;
		text-align: center;
		white-space: normal;
		overflow-wrap: break-word;
	}

	.faq-inquiry {
		padding: 74px 0 84px;
	}

	.faq-inquiry-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}

	.faq-inquiry-content h2 {
		font-size: 36px;
	}
}

@media (max-width: 575px) {
	.faq-list-section {
		padding: 54px 0 62px;
	}

	.faq-container {
		width: 100%;
		max-width: 100%;
		padding-left: 16px;
		padding-right: 16px;
	}

	.faq-layout {
		gap: 34px;
		width: 100%;
		max-width: 100%;
	}

	.faq-intro,
	.faq-content-area,
	.faq-category-panel {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.faq-intro > span {
		margin-bottom: 12px;
		font-size: 10px;
		letter-spacing: 1.8px;
	}

	.faq-intro h1 {
		max-width: 100%;
		font-size: 30px;
		line-height: 1.16;
		letter-spacing: -0.7px;
		overflow-wrap: break-word;
	}

	.faq-intro p {
		max-width: 100%;
		margin-top: 18px;
		font-size: 14.5px;
		line-height: 1.68;
		overflow-wrap: break-word;
	}

	.faq-category-nav {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		width: 100%;
		max-width: 100%;
		margin-top: 26px;
		padding-bottom: 0;
		overflow: visible;
	}

	.faq-category-btn {
		width: 100%;
		min-width: 0;
		min-height: 42px;
		padding: 0 12px;
		border-radius: 999px;
		font-size: 13.5px;
		line-height: 1.25;
		text-align: center;
		white-space: normal;
		justify-content: center;
		overflow-wrap: break-word;
	}

	.faq-category-btn:nth-child(5) {
		grid-column: 1 / -1;
		width: 58%;
		margin: 0 auto;
	}

	.faq-contact-btn {
		width: 100%;
		max-width: 100%;
		min-height: 50px;
		margin-top: 28px;
		padding: 0 18px;
		border-radius: 999px;
		font-size: 14.5px;
		box-sizing: border-box;
	}

	.faq-category-head {
		width: 100%;
		max-width: 100%;
		margin-bottom: 18px;
		padding-bottom: 18px;
	}

	.faq-category-head span {
		margin-bottom: 10px;
		font-size: 10px;
		letter-spacing: 1.7px;
	}

	.faq-category-head h2 {
		font-size: 27px;
		line-height: 1.2;
		letter-spacing: -0.5px;
		overflow-wrap: break-word;
	}

	.faq-category-head p {
		max-width: 100%;
		font-size: 14.5px;
		line-height: 1.66;
		overflow-wrap: break-word;
	}

	.faq-question {
		min-height: 64px;
		padding: 18px 0;
		grid-template-columns: minmax(0, 1fr) 30px;
		gap: 14px;
	}

	.faq-question span {
		font-size: 17px;
		line-height: 1.36;
	}

	.faq-question i {
		width: 30px;
		height: 30px;
	}

	.faq-answer {
		padding: 0 0 22px;
	}

	.faq-answer-inner {
		font-size: 14.5px;
		line-height: 1.72;
	}

	.faq-inquiry {
		padding: 56px 0 66px;
	}

	.faq-inquiry-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 34px;
		width: 100%;
		max-width: 100%;
	}

	.faq-inquiry-content h2 {
		font-size: 28px;
		line-height: 1.22;
		letter-spacing: -0.5px;
	}

	.faq-inquiry-content p {
		font-size: 14.5px;
		line-height: 1.68;
	}

	.faq-form-box {
		width: 100%;
		max-width: 100%;
		padding: 32px 22px 36px;
		box-sizing: border-box;
	}

	.faq-submit {
		width: 100%;
	}
}

/* ==================== /FAQ Page ==================== */