/* Velisoft AI - pagina specifieke styles */
:root {
	--ai_color: #3363ab;
	--ai_color-dark: #203c6b;
	--ai_color-light: #f2f6fc;
	--ai_border: #e4e2db;
	--ai_grey: #6f7784;
	--font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.nums_number {
	color: var(--ai_color);
}

/* Merk / lockup */
.ai_lockup {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 28px;
}
.ai_lockup_mark {
	display: block;
	width: 34px;
	height: 34px;
	flex-shrink: 0;
}
.ai_lockup_name {
	font-family: var(--font-header);
	font-weight: 900;
	font-size: 24px;
	line-height: 1;
	letter-spacing: -0.5px;
	color: black;
}
.ai_lockup_name span {
	color: var(--ai_color);
}

/* Blauwe variant van de bestaande sectie-tag */
.main_content_tag.ai_tag {
	color: var(--ai_color);
}
.main_content_tag.ai_tag::before {
	background: var(--ai_color);
}

/* Hero */
.ai_anchor {
	scroll-margin-top: 110px;
}
.ai_hero {
	background: linear-gradient(180deg, var(--ai_color-light) 0%, white 78%);
	border-bottom: 1px solid var(--ai_border);
	color: inherit;
	padding-bottom: 88px;
}
.ai_hero .main_content_half h1 {
	color: inherit;
	font-size: 46px;
	line-height: 52px;
	margin-bottom: 24px;
}
.ai_col_text {
	padding-right: 50px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
p.ai_lead {
	font-size: 19px;
	line-height: 30px;
	max-width: 30em;
	margin-bottom: 20px;
}
p.ai_note {
	color: #565d68;
	max-width: 30em;
}
.ai_buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}
.ai_buttons .button {
	margin-right: 0;
}
p.ai_small {
	clear: both;
	padding-top: 14px;
	font-size: 14px;
	line-height: 22px;
	color: var(--ai_grey);
}

/* Chatdemo */
.ai_chat {
	background: white;
	border: 1px solid var(--ai_border);
	border-radius: var(--radius);
	box-shadow: 0 12px 28px rgba(32, 60, 107, 0.1), 0 2px 6px rgba(32, 60, 107, 0.05);
	overflow: hidden;
}
.ai_chat_head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	border-bottom: 1px solid var(--ai_border);
	background: linear-gradient(180deg, #fbfbfc 0%, white 100%);
}
.ai_chat_mark {
	display: inline-flex;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(51, 99, 171, 0);
	-webkit-transition: box-shadow ease 0.36s;
	-moz-transition: box-shadow ease 0.36s;
	transition: box-shadow ease 0.36s;
}
.ai_chat_mark img {
	display: block;
	width: 26px;
	height: 26px;
}
.ai_chat_mark.is_thinking {
	box-shadow: 0 0 0 5px rgba(51, 99, 171, 0.1), 0 0 20px rgba(51, 99, 171, 0.42);
}
.ai_chat_title {
	font-family: var(--font-header);
	font-weight: 900;
	font-size: 16px;
	line-height: 1;
	letter-spacing: -0.2px;
	color: black;
}
.ai_chat_meta {
	margin-left: auto;
	font-family: var(--font-mono);
	font-size: 12px;
	line-height: 1;
	color: #9aa2ae;
}
.ai_chat_body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 388px;
	padding: 20px;
}
.ai_chat_msg {
	display: flex;
}
.ai_chat_msg.is_hidden {
	display: none;
}
.ai_chat_msg_user {
	justify-content: flex-end;
}
.ai_chat_msg_ai {
	justify-content: flex-start;
}
.ai_chat_bubble {
	font-size: 15px;
	line-height: 22px;
	padding: 12px 16px;
}
.ai_chat_msg_user .ai_chat_bubble {
	max-width: 84%;
	background: var(--ai_color-dark);
	border-radius: 14px 14px 4px 14px;
	color: white;
}
.ai_chat_msg_ai .ai_chat_bubble {
	max-width: 88%;
	background: var(--ai_color-light);
	border: 1px solid #e2ebf7;
	border-radius: 14px 14px 14px 4px;
	color: black;
}
.ai_chat_actions {
	display: flex;
	gap: 8px;
	margin-top: 12px;
}
.ai_chat_actions.is_hidden {
	display: none;
}
.ai_chat_action {
	display: inline-flex;
	align-items: center;
	height: 30px;
	padding: 0 14px;
	border-radius: 999px;
	background: white;
	border: 1px solid #cbd0d8;
	color: black;
	font-size: 13px;
	font-weight: bold;
	line-height: 1;
}
.ai_chat_action_main {
	background: var(--ai_color);
	border-color: var(--ai_color);
	color: white;
}
.ai_chat_typing {
	display: none;
	align-items: center;
	gap: 6px;
	width: -moz-fit-content;
	width: fit-content;
	padding: 14px 16px;
	background: var(--ai_color-light);
	border: 1px solid #e2ebf7;
	border-radius: 14px 14px 14px 4px;
}
.ai_chat_typing.is_visible {
	display: flex;
}
.ai_chat_dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ai_color);
	animation: ai_dot 1.2s linear infinite;
}
.ai_chat_dot:nth-child(2) {
	animation-delay: 0.2s;
}
.ai_chat_dot:nth-child(3) {
	animation-delay: 0.4s;
}
@keyframes ai_dot {
	0%, 60%, 100% { opacity: 0.25; }
	30% { opacity: 1; }
}
.ai_chat_foot {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	border-top: 1px solid var(--ai_border);
	background: #f6f7f9;
}
.ai_chat_input {
	flex: 1 1 auto;
	font-size: 15px;
	line-height: 22px;
	color: #9aa2ae;
}
.ai_chat_send {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--ai_color);
	color: white;
	font-size: 14px;
	flex-shrink: 0;
}

/* Kaarten: blauwe variant op de bestaande sector_card */
.ai_card {
	cursor: default;
}
.ai_card:hover {
	border-color: var(--ai_border);
	box-shadow: none;
	transform: none;
}
.ai_card .sector_icon {
	background: var(--ai_color-light);
	color: var(--ai_color);
	font-size: 20px;
}
.ai_card_soft {
	background: #f6f7f9;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.ai_card_soft:hover {
	border-color: var(--ai_color);
	box-shadow: 0 6px 24px rgba(51, 99, 171, 0.1);
}
.ai_card .sector_button, .ai_card_soft .sector_button {
	color: var(--ai_color);
}

/* Feitenlijst */
.ai_facts {
	display: flex;
	flex-direction: column;
}
.ai_fact {
	display: flex;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid var(--ai_border);
}
.ai_fact:last-child {
	border-bottom: none;
}
.ai_fact_icon {
	width: 24px;
	flex-shrink: 0;
	color: var(--ai_color);
	font-size: 19px;
	line-height: 26px;
	text-align: center;
}
.ai_fact_title {
	font-family: var(--font-header);
	font-weight: 900;
	font-size: 17px;
	line-height: 24px;
	letter-spacing: -0.2px;
	color: black;
	margin-bottom: 6px;
}
.ai_fact_desc {
	font-size: 15px;
	line-height: 24px;
	color: #454545;
}

/* Afsluitende call to action */
.ai_cta {
	background: linear-gradient(160deg, var(--ai_color) 0%, var(--ai_color-dark) 100%);
}
.ai_cta_mark {
	display: block;
	width: 44px;
	height: 44px;
	margin: 0 auto 24px;
}

@media only screen and (max-width: 1210px) {
	.ai_col_text {
		padding-right: 30px;
	}
}

@media only screen and (max-width: 959px) {
	.ai_col_text {
		padding-right: 0;
		margin-bottom: 50px;
	}
	p.ai_lead, p.ai_note {
		max-width: none;
	}
}

@media only screen and (max-width: 767px) {
	.ai_chat_body {
		min-height: 0;
	}
	.ai_chat_meta {
		display: none;
	}
}

@media only screen and (max-width: 479px) {
	.ai_hero .main_content_half h1 {
		font-size: 25px;
		line-height: 30px;
	}
	.ai_lockup_name {
		font-size: 20px;
	}
	p.ai_lead {
		font-size: 17px;
		line-height: 27px;
	}
	.ai_chat_head, .ai_chat_body, .ai_chat_foot {
		padding-left: 16px;
		padding-right: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ai_chat_dot {
		animation: none;
	}
	.ai_chat_mark {
		-webkit-transition: none;
		-moz-transition: none;
		transition: none;
	}
}
