.kws-chat-choice {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin: 1.25rem 0 .35rem;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(65, 134, 198, .28);
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(65, 134, 198, .1), rgba(255, 255, 255, .94));
	box-shadow: 0 12px 32px rgba(22, 33, 61, .07);
	color: #16213d;
}

.kws-chat-choice__copy {
	display: grid;
	gap: .18rem;
	min-width: 0;
}

.kws-chat-choice__copy strong {
	font-size: .98rem;
	line-height: 1.35;
}

.kws-chat-choice__copy span {
	font-size: .88rem;
	line-height: 1.45;
	color: #43516d;
}

.kws-chat-choice__button {
	flex: 0 0 auto;
	min-height: 42px;
	padding: .65rem .95rem;
	border: 1px solid #1a2f5a;
	border-radius: 10px;
	background: #fff;
	color: #1a2f5a;
	font: inherit;
	font-size: .9rem;
	font-weight: 700;
	cursor: pointer;
	transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.kws-chat-choice__button:hover,
.kws-chat-choice__button:focus-visible {
	background: #1a2f5a;
	color: #fff;
	transform: translateY(-1px);
}

.kws-chat-choice__button:focus-visible {
	outline: 3px solid rgba(65, 134, 198, .32);
	outline-offset: 2px;
}

.kws-footer-chat {
	position: relative;
	z-index: 2;
	padding: 1.15rem clamp(1rem, 4vw, 3rem);
	border-top: 1px solid rgba(65, 134, 198, .24);
	background: linear-gradient(135deg, #f5f9ff 0%, #e9f4ff 100%);
	color: #16213d;
}

.kws-footer-chat__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	width: min(100%, 1180px);
	margin: 0 auto;
}

.kws-footer-chat__copy {
	display: grid;
	gap: .2rem;
}

.kws-footer-chat__copy strong {
	font-size: clamp(1rem, 1.5vw, 1.18rem);
	line-height: 1.3;
}

.kws-footer-chat__copy span {
	font-size: .92rem;
	line-height: 1.45;
	color: #43516d;
}

.kws-footer-chat__button {
	flex: 0 0 auto;
	min-height: 44px;
	padding: .7rem 1rem;
	border: 1px solid #1a2f5a;
	border-radius: 10px;
	background: #1a2f5a;
	color: #fff;
	font: inherit;
	font-size: .92rem;
	font-weight: 700;
	cursor: pointer;
	transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.kws-footer-chat__button:hover,
.kws-footer-chat__button:focus-visible {
	border-color: #4186c6;
	background: #4186c6;
	transform: translateY(-1px);
}

.kws-footer-chat__button:focus-visible {
	outline: 3px solid rgba(65, 134, 198, .32);
	outline-offset: 2px;
}

@media (max-width: 767px) {
	.kws-chat-choice {
		align-items: stretch;
		flex-direction: column;
		padding: .95rem;
	}

	.kws-chat-choice__button {
		width: 100%;
	}

	.kws-footer-chat__inner {
		align-items: stretch;
		flex-direction: column;
		gap: .85rem;
	}

	.kws-footer-chat__button {
		width: 100%;
	}
}
