/* -----------------------------------------------------------
   KandidPulse — "The Reality" Section
   Enqueue this in your theme (or paste into Elementor's
   Custom CSS / Additional CSS panel).
----------------------------------------------------------- */

.kp-reality {
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 24px 120px;
}

/* --- Shared pill badge --- */

.kp-badge {
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: #6b7280;
	border: 1px solid #d8dae1;
	border-radius: 999px;
	padding: 6px 16px;
	margin-bottom: 20px;
}

.kp-badge--dark {
	color: rgba(255, 255, 255, 0.75);
	border-color: rgba(255, 255, 255, 0.25);
	margin-bottom: 18px;
}

/* --- Intro (badge / heading / subtext) --- */

.kp-reality__intro {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 48px;
}

.kp-reality__heading {
	font-size: clamp(32px, 4.5vw, 52px);
	line-height: 1.15;
	font-weight: 600;
	color: #0f1222;
	margin: 0 0 20px;
}

.kp-reality__subtext {
	font-size: 17px;
	line-height: 1.6;
	color: #6b7280;
	margin: 0;
}

/* --- Dark image panel --- */

.kp-reality__panel {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	min-height: 480px;
	background-color: #05070f;
}

.kp-reality__panel-media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Subtle left-side darkening so text stays legible regardless
   of the uploaded image — the design's own graphic is already
   near-black on the left, so this stays light-touch. */
.kp-reality__panel-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(2, 4, 12, 0.55) 0%,
		rgba(2, 4, 12, 0.25) 45%,
		rgba(2, 4, 12, 0) 70%
	);
}

/* Text block anchored bottom-left */
.kp-reality__panel-content {
	position: absolute;
	left: 40px;
	bottom: 40px;
	z-index: 2;
	max-width: 420px;
}

.kp-reality__panel-text {
	font-size: 16px;
	line-height: 1.6;
	color: #e7e9f2;
	margin: 0;
}

/* Button floats bottom-right, independent of the text block */
.kp-reality__btn {
	position: absolute;
	right: 40px;
	bottom: 40px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #ffffff;
	color: #0f1222;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 24px;
	border-radius: 999px;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 0.2s ease, background 0.2s ease;
}

.kp-reality__btn:hover {
	background: #e7e9f2;
	transform: translateY(-1px);
	color: #0f1222;
}

.kp-reality__btn-arrow {
	transition: transform 0.2s ease;
}

.kp-reality__btn:hover .kp-reality__btn-arrow {
	transform: translateX(2px);
}

/* --- Responsive --- */

@media (max-width: 768px) {
	.kp-reality {
		padding: 64px 20px 72px;
	}

	.kp-reality__panel {
		min-height: 560px;
	}

	.kp-reality__panel-overlay {
		background: linear-gradient(
			180deg,
			rgba(2, 4, 12, 0.15) 0%,
			rgba(2, 4, 12, 0.9) 65%
		);
	}

	.kp-reality__panel-content {
		left: 24px;
		right: 24px;
		bottom: 96px;
		max-width: 100%;
	}

	.kp-reality__btn {
		left: 24px;
		right: 24px;
		bottom: 28px;
		width: calc(100% - 48px);
		justify-content: center;
	}
}

/* -----------------------------------------------------------
   KandidPulse — "Fifteen Solutions" Section
----------------------------------------------------------- */

.kp-solutions {
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 24px 120px;
}

.kp-solutions__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	margin-bottom: 64px;
}

.kp-solutions__heading {
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.2;
	font-weight: 600;
	margin: 12px 0 0;
}

.kp-solutions__heading-bold {
	color: #0f1222;
}

.kp-solutions__heading-light {
	color: #9ca0ac;
}

.kp-solutions__intro {
	max-width: 320px;
	font-size: 15px;
	line-height: 1.6;
	color: #6b7280;
	text-align: right;
	margin: 6px 0 0;
}

.kp-solutions__body {
	display: flex;
	gap: 56px;
	align-items: flex-start;
}

.kp-solutions__tabs {
	display: flex;
	flex-direction: column;
	flex: 0 0 260px;
	position: sticky;
	top: 100px;
}

.kp-solutions__tab {
	all: unset;
	display: block;
	cursor: pointer;
	font-size: 17px;
	font-weight: 400;
	color: #9ca0ac;
	background: transparent !important;
	padding: 16px 0;
	border: none;
	border-bottom: 1px solid #e7e9ee;
	transition: color 0.2s ease, font-weight 0.2s ease;
}

.kp-solutions__tab:hover,
.kp-solutions__tab:focus,
.kp-solutions__tab:active {
	color: #0f1222;
	background: transparent !important;
	outline: none;
	box-shadow: none;
}

.kp-solutions__tab.is-active {
	color: #0f1222;
	font-weight: 700;
	background: transparent !important;
	border-bottom: 2px solid #0f1222;
}

.kp-solutions__grid {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.kp-solutions__card--hidden {
	display: none !important;
}

.kp-solutions__card {
	display: flex;
	flex-direction: column;
}

.kp-solutions__card-media {
	background: #eef0f3;
	border-radius: 16px;
	padding: 24px;
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	overflow: hidden;
}

.kp-solutions__card-media img {
	width: 100%;
	height: auto;
	border-radius: 12px;
}

.kp-solutions__card-title {
	font-size: 20px;
	font-weight: 600;
	color: #0f1222;
	margin: 0 0 10px;
}

.kp-solutions__card-desc {
	font-size: 15px;
	line-height: 1.6;
	color: #6b7280;
	margin: 0 0 16px;
}

.kp-solutions__card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	font-weight: 600;
	color: #0f1222;
	text-decoration: none;
	width: fit-content;
}

.kp-solutions__card-link:hover .kp-solutions__card-arrow {
	transform: translate(2px, -2px);
}

.kp-solutions__card-arrow {
	display: inline-block;
	transition: transform 0.2s ease;
}

@media (max-width: 900px) {
	.kp-solutions__header {
		flex-direction: column;
	}

	.kp-solutions__intro {
		text-align: left;
		max-width: 100%;
	}

	.kp-solutions__body {
		flex-direction: column;
	}

	.kp-solutions__tabs {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 8px;
	}

	.kp-solutions__tab {
		padding: 8px 14px;
		border: 1px solid #e7e9ee;
		border-radius: 999px;
	}

	.kp-solutions__tab.is-active {
		border-color: #0f1222;
	}

	.kp-solutions__grid {
		grid-template-columns: 1fr;
	}
}

/* -----------------------------------------------------------
   KandidPulse — "Built For Your Industry" Section
----------------------------------------------------------- */

.kp-industries {
	margin: 0 auto;
	padding: 100px 60px 120px;
}

.kp-industries__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	margin-bottom: 32px;
}

.kp-industries__heading {
	font-size: clamp(28px, 3.6vw, 40px);
	line-height: 1.2;
	font-weight: 400;
	color: #0f1222;
	margin: 12px 0 0;
}

.kp-industries__header-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 20px;
}

.kp-industries__intro {
	max-width: 340px;
	font-size: 15px;
	line-height: 1.6;
	color: #6b7280;
	text-align: right;
	margin: 0;
}

.kp-industries__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #0f1222;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	padding: 14px 22px;
	border-radius: 999px;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease;
}

.kp-industries__cta:hover {
	background: #262a3d;
	color: #fff;
}

/* --- Arrows --- */

.kp-industries__nav {
	display: flex;
	gap: 12px;
	margin-bottom: 32px;
}

.kp-industries__arrow {
	all: unset;
	cursor: pointer;
	width: 44px;
	height: 44px;
	border: 1px solid #d8dae1;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #0f1222;
	background: transparent !important;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.kp-industries__arrow:hover,
.kp-industries__arrow:focus {
	border-color: #0f1222;
	background: transparent !important;
	outline: none;
	box-shadow: none;
}

/* --- Card track (horizontal scroll carousel) --- */

.kp-industries__track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.kp-industries__track::-webkit-scrollbar {
	display: none;
}

.kp-industries__card {
	position: relative;
	flex: 0 0 380px;
	height: 560px;
	border-radius: 20px;
	background-size: cover;
	background-position: center;
	background-color: #1a1d29;
	overflow: hidden;
	scroll-snap-align: start;
	display: flex;
	align-items: flex-end;
}

.kp-industries__card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(10, 12, 20, 0) 30%,
		rgba(10, 12, 20, 0.85) 100%
	);
}

.kp-industries__card-content {
	position: relative;
	z-index: 2;
	padding: 32px;
}

.kp-industries__card-title {
	font-size: 26px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 12px;
}

.kp-industries__card-desc {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 24px;
}

.kp-industries__card-btn {
	display: inline-block;
	border: 1px solid rgba(255, 255, 255, 0.6);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	padding: 12px 22px;
	border-radius: 999px;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.kp-industries__card-btn:hover {
	background: #fff;
	color: #0f1222;
}

.kp-industries__carousel {
	padding-left: clamp(24px, 10vw, 140px);
}

.kp-industries__cta,
.kp-industries__cta:hover,
.kp-industries__cta:focus,
.kp-industries__cta:visited,
.kp-industries__card-btn,
.kp-industries__card-btn:hover,
.kp-industries__card-btn:focus,
.kp-industries__card-btn:visited {
	text-decoration: none !important;
}

/* --- Responsive --- */

@media (max-width: 768px) {
	.kp-industries__header {
		flex-direction: column;
	}

	.kp-industries__header-right {
		align-items: flex-start;
	}

	.kp-industries__intro {
		text-align: left;
	}

	.kp-industries__card {
		flex-basis: 300px;
		height: 480px;
	}
	
	.kp-industries {
	margin: 0 auto;
	padding:20px;
}
}

/* -----------------------------------------------------------
   KandidPulse — "Discover. Build. Operate." Section
----------------------------------------------------------- */

.kp-hww {
	background: #0d0f14;
	padding: 100px 24px 120px;
}

.kp-hww__header {
	max-width: 1200px;
	margin: 0 auto 56px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 40px;
}

.kp-hww__eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #8a8f9c;
	margin-bottom: 16px;
}

.kp-hww__heading {
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.15;
	font-weight: 400;
	color: #ffffff;
	margin: 0;
}

.kp-hww__intro {
	max-width: 360px;
	font-size: 15px;
	line-height: 1.6;
	color: #9096a3;
	margin: 0;
}

/* --- Steps row --- */

.kp-hww__steps {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid #262a35;
	border-radius: 16px;
	overflow: hidden;
}

.kp-hww__step {
	position: relative;
	padding: 64px 32px 48px;
	text-align: center;
	border-left: 1px solid #262a35;
	overflow: hidden;
}

.kp-hww__step:first-child {
	border-left: none;
}

.kp-hww__step--active {
	border: 1px solid #3b82f6;
	border-radius: 16px;
	margin: -1px;
	z-index: 1;
}

/* Animated blue trace on hover — draws top, right, bottom, left in sequence */
.kp-hww__step::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 16px;
	pointer-events: none;
	background:
		linear-gradient(90deg, #3b82f6, #3b82f6) top left / 0% 2px no-repeat,
		linear-gradient(180deg, #3b82f6, #3b82f6) top right / 2px 0% no-repeat,
		linear-gradient(90deg, #3b82f6, #3b82f6) bottom right / 0% 2px no-repeat,
		linear-gradient(180deg, #3b82f6, #3b82f6) bottom left / 2px 0% no-repeat;
	transition:
		background-size 0.2s linear,
		background-size 0.2s linear 0.2s,
		background-size 0.2s linear 0.4s,
		background-size 0.2s linear 0.6s;
}

.kp-hww__step:hover::before {
	background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
}

/* --- Scalloped number badge --- */

.kp-hww__badge {
	position: absolute;
	top: 32px;
	left: 32px;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	background: #1b1e27;
	clip-path: polygon(50.00% 0.00%, 59.84% 13.29%, 75.00% 6.70%, 76.87% 23.13%, 93.30% 25.00%, 86.71% 40.16%, 100.00% 50.00%, 86.71% 59.84%, 93.30% 75.00%, 76.87% 76.87%, 75.00% 93.30%, 59.84% 86.71%, 50.00% 100.00%, 40.16% 86.71%, 25.00% 93.30%, 23.13% 76.87%, 6.70% 75.00%, 13.29% 59.84%, 0.00% 50.00%, 13.29% 40.16%, 6.70% 25.00%, 23.13% 23.13%, 25.00% 6.70%, 40.16% 13.29%);
}

.kp-hww__step--active .kp-hww__badge {
	background: #ffffff;
	color: #3b82f6;
}

/* --- Step text --- */

.kp-hww__step-title {
	font-size: 22px;
	font-weight: 600;
	color: #ffffff;
	margin: 0 0 16px;
	transition: color 0.2s ease;
}

.kp-hww__step--active .kp-hww__step-title {
	color: #3b82f6;
}

.kp-hww__step:hover .kp-hww__step-title {
	color: #3b82f6;
}

.kp-hww__step-desc {
	font-size: 15px;
	line-height: 1.7;
	color: #9096a3;
	max-width: 280px;
	margin: 0 auto;
}

/* --- Responsive --- */

@media (max-width: 900px) {
	.kp-hww__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.kp-hww__steps {
		grid-template-columns: 1fr;
	}

	.kp-hww__step {
		border-left: none;
		border-top: 1px solid #262a35;
		padding: 56px 24px 40px;
	}

	.kp-hww__step:first-child {
		border-top: none;
	}

	.kp-hww__step--active {
		margin: -1px 0;
	}

	.kp-hww__badge {
		position: static;
		margin: 0 auto 24px;
	}
}

/* -----------------------------------------------------------
   KandidPulse — "Why Teams Choose KandidPulse" Section
----------------------------------------------------------- */

.kp-why {
	background: #0d0f14;
	padding: 100px 24px 120px;
}

/* --- Centered intro --- */

.kp-why__intro {
	max-width: 640px;
	margin: 0 auto 64px;
	text-align: center;
}

.kp-why__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #8a8f9c;
	border: 1px solid #2a2e3a;
	border-radius: 999px;
	padding: 8px 18px;
	margin-bottom: 28px;
}

.kp-why__heading {
	font-size: clamp(34px, 5vw, 54px);
	line-height: 1.2;
	font-weight: 400;
	margin: 0 0 24px;
}

.kp-why__heading-white {
	color: #ffffff;
}

.kp-why__heading-blue {
	color: #6b93f5;
}

.kp-why__subtext {
	font-size: 16px;
	line-height: 1.6;
	color: #9096a3;
	margin: 0;
}

/* --- Feature row with glowing gradient top/bottom border --- */

.kp-why__row {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	position: relative;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	border-image: linear-gradient(
		90deg,
		transparent 0%,
		#3b82f6 30%,
		#3b82f6 70%,
		transparent 100%
	) 1;
}

.kp-why__col {
	padding: 48px 32px;
	border-left: 1px solid #22252e;
}

.kp-why__col:first-child {
	border-left: none;
}

.kp-why__word {
	display: block;
	font-size: clamp(36px, 4vw, 56px);
	font-weight: 400;
	color: #6a6f7c;
	margin-bottom: 40px;
}

.kp-why__title {
	font-size: 17px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 14px;
	padding-top: 20px;
	border-top: 1px solid #22252e;
}

.kp-why__desc {
	font-size: 14px;
	line-height: 1.6;
	color: #8a8f9c;
	margin: 0;
}

/* --- Responsive --- */

@media (max-width: 900px) {
	.kp-why__row {
		grid-template-columns: 1fr;
	}

	.kp-why__col {
		border-left: none;
		border-top: 1px solid #22252e;
	}

	.kp-why__col:first-child {
		border-top: none;
	}
}

/* -----------------------------------------------------------
   KandidPulse — "Built On The Systems" Partner Logos Section
----------------------------------------------------------- */

.kp-partners {
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 24px 100px;
	overflow: hidden;
}

.kp-partners__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	margin-bottom: 80px;
}

.kp-partners__heading {
	font-size: clamp(26px, 3vw, 34px);
	line-height: 1.3;
	font-weight: 400;
	color: #0f1222;
	margin: 16px 0 0;
	max-width: 480px;
}

.kp-partners__header-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 20px;
}

.kp-partners__intro {
	font-size: 14px;
	color: #9096a3;
	text-align: right;
	margin: 0;
}

.kp-partners__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #0f1222;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	padding: 14px 22px;
	border-radius: 999px;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background 0.2s ease;
}

.kp-partners__cta:hover {
	background: #262a3d;
	color: #fff;
}

/* --- Marquee --- */

.kp-partners__marquee {
	position: relative;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(
		90deg,
		transparent 0%,
		#000 10%,
		#000 90%,
		transparent 100%
	);
	mask-image: linear-gradient(
		90deg,
		transparent 0%,
		#000 10%,
		#000 90%,
		transparent 100%
	);
}

.kp-partners__track {
	display: flex;
	align-items: center;
	width: max-content;
	gap: 72px;
	animation: kp-marquee-scroll 28s linear infinite;
}

.kp-partners__marquee:hover .kp-partners__track {
	animation-play-state: paused;
}

.kp-partners__logo {
	flex: none;
	display: flex;
	align-items: center;
	font-size: 32px;
	font-weight: 700;
	color: #9096a3;
	filter: grayscale(100%);
	opacity: 0.6;
	white-space: nowrap;
	transition: opacity 0.2s ease, filter 0.2s ease;
}

.kp-partners__logo:hover {
	opacity: 1;
	filter: grayscale(0%);
}

.kp-partners__logo img {
	height: 32px;
	width: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.6;
	transition: opacity 0.2s ease, filter 0.2s ease;
}

.kp-partners__logo:hover img {
	opacity: 1;
	filter: grayscale(0%);
}

@keyframes kp-marquee-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

/* --- Responsive --- */

@media (max-width: 768px) {
	.kp-partners__header {
		flex-direction: column;
	}

	.kp-partners__header-right {
		align-items: flex-start;
	}

	.kp-partners__intro {
		text-align: left;
	}
}

/* -----------------------------------------------------------
   KandidPulse — "Answered Before The Call" FAQ Section
----------------------------------------------------------- */

.kp-faq {
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 24px 120px;
}

.kp-faq__inner {
	display: flex;
	gap: 80px;
}

.kp-faq__col-left {
	flex: 0 0 340px;
}

.kp-faq__heading {
	font-size: clamp(32px, 4vw, 46px);
	line-height: 1.15;
	font-weight: 400;
	margin: 16px 0 0;
}

.kp-faq__heading-bold {
	color: #0f1222;
	font-weight: 600;
}

.kp-faq__heading-light {
	color: #9096a3;
}

.kp-faq__col-right {
	flex: 1;
}

/* --- Accordion item --- */

.kp-faq__item {
	border-bottom: 1px solid #e5e7ec;
}

.kp-faq__question {
	all: unset;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	cursor: pointer;
	padding: 28px 0;
	font-size: 18px;
	color: #0f1222;
	background: transparent !important;
}

.kp-faq__question:hover,
.kp-faq__question:focus {
	background: transparent !important;
	outline: none;
	box-shadow: none;
}

/* --- Plus / minus icon --- */

.kp-faq__icon {
	position: relative;
	flex: none;
	width: 16px;
	height: 16px;
	margin-left: 24px;
}

.kp-faq__icon::before,
.kp-faq__icon::after {
	content: "";
	position: absolute;
	background: #0f1222;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.kp-faq__icon::before {
	width: 16px;
	height: 1.5px;
}

.kp-faq__icon::after {
	width: 1.5px;
	height: 16px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.kp-faq__item.is-open .kp-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}
.kp-faq__question,
.kp-faq__question:hover,
.kp-faq__question:focus,
.kp-faq__question:active,
.kp-faq__question span {
	color: #0f1222 !important;
}

.kp-faq__item.is-open .kp-faq__question,
.kp-faq__item.is-open .kp-faq__question span {
	color: #0f1222 !important;
}
/* --- Answer panel (collapsible) --- */

.kp-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.kp-faq__answer p {
	font-size: 15px;
	line-height: 1.7;
	color: #6b7280;
	margin: 0;
	padding-bottom: 28px;
}

.kp-faq__item.is-open .kp-faq__answer {
	max-height: 200px;
}

/* --- Responsive --- */

@media (max-width: 900px) {
	.kp-faq__inner {
		flex-direction: column;
		gap: 40px;
	}

	.kp-faq__col-left {
		flex: none;
	}
}