/**
 * Inkomstenbelastingaangeven.nl — site styles (Arsha-based, UTF-8, geen BOM).
 */

:root {
	--default-font: "Open Sans", system-ui, sans-serif;
	--heading-font: "Jost", sans-serif;
	--nav-font: "Poppins", sans-serif;
	--background-color: #ffffff;
	--default-color: #444444;
	--heading-color: #2b3038;
	--accent-color: #ec0606;
	--surface-color: #ffffff;
	--contrast-color: #ffffff;
	--nav-color: #ffffff;
	--nav-hover-color: #ffffff;
	--nav-mobile-background-color: #ffffff;
	--nav-dropdown-color: #444444;
	--nav-dropdown-hover-color: #ec0606;
}

.light-background {
	--background-color: #f5f6f8;
	--surface-color: #ffffff;
}

.dark-background {
	--background-color: #2b3038;
	--default-color: #ffffff;
	--heading-color: #ffffff;
	--surface-color: #3d4450;
	--contrast-color: #ffffff;
}

html {
	scroll-behavior: smooth;
}

body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: var(--default-font);
}

a {
	color: var(--accent-color);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: color-mix(in srgb, var(--accent-color), black 15%);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
}

section,
.section {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 60px 0;
	scroll-margin-top: 88px;
	overflow: clip;
}

.section-title {
	text-align: center;
	padding-bottom: 60px;
}

.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	text-transform: uppercase;
	position: relative;
}

.section-title h2::before {
	content: "";
	position: absolute;
	width: 160px;
	height: 1px;
	background: color-mix(in srgb, var(--default-color), transparent 60%);
	left: 0;
	right: 0;
	bottom: 1px;
	margin: auto;
}

.section-title h2::after {
	content: "";
	position: absolute;
	width: 60px;
	height: 3px;
	background: var(--accent-color);
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.section-title p {
	margin-bottom: 0;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

/* --- Header --- */
.header {
	background-color: rgba(255, 255, 255, 0);
	padding: 15px 0;
	transition: all 0.5s;
	z-index: 997;
}

.index-page.scrolled .header {
	background-color: rgba(34, 34, 34, 0.92);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.header .logo {
	line-height: 1;
	color: #fff;
}

.header .logo:hover {
	color: #fff;
}

.iba-logo-icon {
	width: 42px;
	height: auto;
	flex-shrink: 0;
}

.iba-logo-text {
	font-family: var(--nav-font);
	font-size: clamp(0.95rem, 2.2vw, 1.15rem);
	font-weight: 600;
	color: #fff;
	line-height: 1.2;
	max-width: 14rem;
}

.header .btn-getstarted {
	color: var(--contrast-color);
	background: var(--accent-color);
	font-size: 14px;
	padding: 8px 22px;
	margin-left: 1rem;
	border-radius: 50px;
	white-space: nowrap;
}

.header .btn-getstarted:hover {
	color: var(--contrast-color);
	background: color-mix(in srgb, var(--accent-color), black 12%);
}

@media (min-width: 1200px) {
	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu a {
		color: var(--nav-color);
		padding: 18px 14px;
		font-size: 15px;
		font-family: var(--nav-font);
	}

	.navmenu a:hover,
	.navmenu a.active {
		color: rgba(255, 255, 255, 0.85);
	}

	.navmenu .nav-cta-item {
		margin-left: 4px;
	}

	.navmenu a.nav-cta {
		color: var(--contrast-color);
		background: var(--accent-color);
		padding: 8px 20px;
		border-radius: 50px;
		font-weight: 600;
		font-size: 14px;
		white-space: nowrap;
	}

	.navmenu a.nav-cta:hover,
	.navmenu a.nav-cta.active {
		color: var(--contrast-color);
		background: color-mix(in srgb, var(--accent-color), black 12%);
	}
}

@media (min-width: 1200px) and (max-width: 1499px) {
	.iba-logo-text {
		max-width: 10.5rem;
		font-size: 0.92rem;
	}

	.navmenu a.nav-anchor {
		padding: 18px 9px;
		font-size: 13px;
	}

	.navmenu a.nav-cta {
		padding: 8px 14px;
		font-size: 13px;
	}
}

@media (max-width: 1199px) {
	.mobile-nav-toggle {
		color: #fff;
		font-size: 28px;
		cursor: pointer;
	}

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px;
		padding: 10px 0;
		border-radius: 6px;
		background: #fff;
		overflow-y: auto;
		box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
	}

	.navmenu a {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		display: block;
		font-family: var(--nav-font);
		font-weight: 500;
	}

	.navmenu a:hover,
	.navmenu a.active {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .nav-cta-item {
		margin-top: 6px;
		padding-top: 14px;
		border-top: 1px solid rgba(0, 0, 0, 0.08);
	}

	.navmenu a.nav-cta {
		margin: 4px 16px 10px;
		padding: 12px 20px;
		text-align: center;
		border-radius: 50px;
		background: var(--accent-color);
		color: #fff;
		font-weight: 600;
	}

	.navmenu a.nav-cta:hover,
	.navmenu a.nav-cta.active {
		color: #fff;
		background: color-mix(in srgb, var(--accent-color), black 12%);
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		inset: 0;
		background: rgba(33, 37, 41, 0.85);
		z-index: 9997;
	}

	.mobile-nav-active .navmenu > ul {
		display: block;
		z-index: 9998;
	}

	.mobile-nav-active .mobile-nav-toggle {
		position: absolute;
		top: 15px;
		right: 15px;
		z-index: 9999;
	}
}

/* --- Hero --- */
.iba-hero {
	min-height: 88vh;
	padding: 130px 0 70px;
	display: flex;
	align-items: center;
	position: relative;
	background: url("../img/bg/bg-jakubzerdzicki-28176949.webp") center center / cover no-repeat;
}

.iba-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(20, 24, 30, 0.88) 0%, rgba(34, 34, 34, 0.78) 100%);
}

.iba-hero .container {
	position: relative;
	z-index: 2;
}

.iba-hero h1 {
	color: #fff;
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 1rem;
}

.iba-hero .lead {
	color: rgba(255, 255, 255, 0.94);
	font-size: 1.12rem;
	line-height: 1.65;
	margin-bottom: 1.5rem;
	max-width: 38rem;
}

.iba-hero .lead-note {
	display: block;
	margin-top: 0.75rem;
	font-size: 0.92rem;
	opacity: 0.85;
}

.hero .btn-get-started,
.iba-hero .btn-get-started {
	color: var(--contrast-color);
	background: var(--accent-color);
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 15px;
	padding: 11px 28px;
	border-radius: 50px;
	display: inline-block;
}

.hero .btn-get-started:hover,
.iba-hero .btn-get-started:hover {
	color: var(--contrast-color);
	background: color-mix(in srgb, var(--accent-color), black 10%);
}

.iba-hero .btn-outline-light-custom {
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.85);
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 15px;
	padding: 9px 26px;
	border-radius: 50px;
	display: inline-block;
	margin-left: 0.75rem;
}

.iba-hero .btn-outline-light-custom:hover {
	background: #fff;
	color: var(--heading-color);
}

.iba-hero-card {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	padding: 1.25rem;
	height: 100%;
	backdrop-filter: blur(4px);
}

.iba-hero-card-title {
	color: #fff;
	font-size: 1.05rem;
	margin-bottom: 0.5rem;
}

.iba-hero-card p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
	margin: 0;
}

.iba-hero-card i {
	color: var(--accent-color);
	font-size: 1.35rem;
}

/* --- About --- */
.about ul {
	list-style: none;
	padding: 0;
}

.about ul li {
	padding-bottom: 8px;
	display: flex;
	align-items: flex-start;
	gap: 0.35rem;
}

.about ul i {
	font-size: 20px;
	color: var(--accent-color);
	flex-shrink: 0;
	margin-top: 2px;
}

.about .iba-about-note {
	color: color-mix(in srgb, var(--default-color), transparent 15%);
	margin-top: 1.25rem;
}

.about .content ul {
	margin-bottom: 0;
}

.about .iba-about-visual {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
	background: var(--surface-color);
}

.about .iba-about-visual img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 9 / 16;
	object-fit: cover;
	object-position: center;
}

@media (min-width: 992px) {
	.about .iba-about-visual {
		position: sticky;
		top: 100px;
	}

	.about .iba-about-visual img {
		max-height: 440px;
	}
}

/* --- Impressie gallery --- */
.iba-impressie-gallery .iba-impressie-card {
	margin: 0;
	height: 100%;
}

.iba-impressie-gallery .iba-impressie-card img {
	display: block;
	width: 100%;
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
	aspect-ratio: 1600 / 896;
	object-fit: cover;
	object-position: center;
}

.iba-impressie-gallery--compact .iba-impressie-card img {
	max-height: 280px;
}

@media (max-width: 991px) {
	.iba-impressie-gallery--compact .iba-impressie-card img {
		max-height: none;
	}
}

.iba-impressie-gallery .iba-impressie-card figcaption {
	margin-top: 1rem;
	font-size: 0.95rem;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	line-height: 1.55;
	text-align: center;
}

/* --- Section visuals --- */
.iba-hero-visual {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.iba-hero-visual img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1600 / 896;
	object-fit: cover;
	object-position: center top;
}

.iba-section-visual {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
	background: var(--surface-color);
}

.iba-section-visual img {
	display: block;
	width: 100%;
	height: auto;
}

.iba-section-visual--portrait img {
	aspect-ratio: 2 / 3;
	object-fit: cover;
	object-position: center top;
}

.iba-section-visual--portrait-45 img {
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center top;
}

.iba-visual-banner {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.iba-visual-banner img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center;
}

.iba-visual-banner--photo-10 img {
	aspect-ratio: 1920 / 1246;
}

.iba-visual-banner--landscape-32 img {
	aspect-ratio: 3 / 2;
}

.iba-visual-banner--compact img {
	aspect-ratio: 16 / 9;
}

.iba-section-visual--landscape img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
	object-position: center;
}

.iba-visual-caption {
	font-size: 0.95rem;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	line-height: 1.55;
}

.work-process .steps-image--portrait {
	height: 260px;
}

.work-process .steps-image--portrait img {
	object-position: center 20%;
}

/* --- Work process --- */
.work-process .steps-item {
	background: var(--surface-color);
	border-radius: 20px;
	height: 100%;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-process .steps-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 30px rgba(236, 6, 6, 0.12);
}

.work-process .steps-image {
	height: 200px;
	overflow: hidden;
	border-radius: 20px 20px 0 0;
}

@media (min-width: 768px) {
	.work-process .steps-image {
		height: 220px;
	}
}

.work-process .steps-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.5s ease;
}

.work-process .steps-item:hover .steps-image img {
	transform: scale(1.06);
}

.work-process .steps-content {
	padding: 2.5rem 1.75rem 1.75rem;
	position: relative;
}

.work-process .steps-number {
	position: absolute;
	left: 1.75rem;
	top: -1.75rem;
	width: 56px;
	height: 56px;
	background: var(--accent-color);
	color: #fff;
	border-radius: 50%;
	font-family: var(--heading-font);
	font-size: 1.25rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.work-process .steps-content h3 {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

.work-process .steps-content p {
	font-size: 0.95rem;
	color: color-mix(in srgb, var(--default-color), transparent 15%);
	margin-bottom: 0;
}

/* --- Pricing --- */
.pricing .pricing-item {
	background: var(--surface-color);
	box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
	border-top: 4px solid var(--background-color);
	padding: 3rem 2.5rem;
	border-radius: 8px;
	height: 100%;
}

.pricing .pricing-item.featured {
	border-top-color: var(--accent-color);
}

.pricing h3 {
	font-weight: 600;
	margin-bottom: 1rem;
}

.pricing h4 {
	color: var(--accent-color);
	font-size: 3rem;
	font-family: var(--heading-font);
	margin-bottom: 0;
}

.pricing h4 sup {
	font-size: 1.75rem;
}

.pricing h4 span {
	color: color-mix(in srgb, var(--default-color), transparent 45%);
	font-size: 1rem;
}

.pricing ul {
	list-style: none;
	padding: 1.25rem 0;
	margin: 0;
}

.pricing ul li {
	padding: 0.55rem 0;
	display: flex;
	align-items: flex-start;
	gap: 0.35rem;
}

.pricing ul i {
	color: #059652;
	font-size: 1.25rem;
	flex-shrink: 0;
}

.pricing .buy-btn {
	color: var(--contrast-color);
	background: var(--accent-color);
	display: inline-block;
	padding: 10px 32px;
	border-radius: 50px;
	font-weight: 500;
	font-family: var(--heading-font);
}

.pricing .buy-btn:hover {
	color: var(--contrast-color);
	background: color-mix(in srgb, var(--accent-color), black 10%);
}

/* --- FAQ --- */
.faq-2 .faq-item {
	background: var(--surface-color);
	position: relative;
	padding: 20px;
	margin-bottom: 16px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.faq-2 .faq-item h3 {
	font-size: 1.05rem;
	font-weight: 600;
	margin: 0 2rem 0 2rem;
	cursor: pointer;
}

.faq-2 .faq-icon {
	position: absolute;
	top: 22px;
	left: 20px;
	color: var(--accent-color);
}

.faq-2 .faq-toggle {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
}

.faq-2 .faq-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: 0.3s ease;
	visibility: hidden;
	opacity: 0;
}

.faq-2 .faq-content p {
	margin: 0;
	overflow: hidden;
	font-size: 0.95rem;
	line-height: 1.6;
}

.faq-2 .faq-active .faq-content {
	grid-template-rows: 1fr;
	visibility: visible;
	opacity: 1;
	padding-top: 12px;
}

.faq-2 .faq-active h3 {
	color: var(--accent-color);
}

.faq-2 .faq-active .faq-toggle {
	transform: rotate(90deg);
	color: var(--accent-color);
}

/* --- VIA steps --- */
.iba-via-steps {
	counter-reset: via-step;
	list-style: none;
	padding: 0;
	margin: 0;
}

.iba-via-steps li {
	counter-increment: via-step;
	position: relative;
	padding: 0 0 1.25rem 2.75rem;
	margin-bottom: 0.5rem;
}

.iba-via-steps li::before {
	content: counter(via-step);
	position: absolute;
	left: 0;
	top: 0;
	width: 2rem;
	height: 2rem;
	background: var(--accent-color);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9rem;
}

/* --- CTA --- */
.call-to-action {
	padding: 100px 0;
	position: relative;
	clip-path: inset(0);
}

.call-to-action img {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.call-to-action::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(34, 34, 34, 0.72);
	z-index: 2;
}

.call-to-action .container {
	position: relative;
	z-index: 3;
}

.call-to-action h2,
.call-to-action p {
	color: #fff;
}

.call-to-action .cta-btn {
	display: inline-block;
	padding: 12px 36px;
	border-radius: 50px;
	border: 2px solid #fff;
	color: #fff;
	font-weight: 500;
	text-align: center;
}

.call-to-action .cta-btn:hover {
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: #fff;
}

.iba-cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.call-to-action .cta-btn--primary {
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: #fff;
	font-weight: 600;
}

.call-to-action .cta-btn--primary:hover {
	background: color-mix(in srgb, var(--accent-color), black 12%);
	border-color: color-mix(in srgb, var(--accent-color), black 12%);
}

.call-to-action .cta-btn--outline {
	background: transparent;
}

.iba-email-note {
	font-size: 0.85rem;
	color: #64748b;
	margin-top: 0.25rem;
}

.iba-contact-aanmelden {
	font-size: 0.92rem;
	margin-bottom: 1.25rem;
	padding: 0.75rem 1rem;
	background: color-mix(in srgb, var(--accent-color), transparent 94%);
	border-left: 3px solid var(--accent-color);
	border-radius: 0 6px 6px 0;
}

.iba-topic-hint {
	margin: 0.5rem 0 0;
	font-size: 0.88rem;
	color: #475569;
}

.iba-topic-hint[hidden] {
	display: none !important;
}

.iba-client-error {
	padding: 0.85rem 1rem;
	border-radius: 8px;
	font-weight: 600;
	margin-bottom: 1rem;
	font-size: 14px;
	color: #b71c1c;
	background: #ffebee;
	border: 1px solid #ef9a9a;
}

.iba-client-error[hidden] {
	display: none !important;
}

.contact .contact-form-wrapper .form-control.is-invalid {
	border-color: #c62828;
	box-shadow: 0 0 0 2px rgba(198, 40, 40, 0.15);
}

/* --- Contact --- */
.contact .info-wrap {
	background: var(--surface-color);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
	border-top: 3px solid var(--accent-color);
	border-bottom: 3px solid var(--accent-color);
	padding: 30px;
	height: 100%;
}

.contact .info-item {
	margin-bottom: 2rem;
}

.contact .info-item i {
	font-size: 20px;
	color: var(--accent-color);
	background: color-mix(in srgb, var(--accent-color), transparent 92%);
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-right: 12px;
	flex-shrink: 0;
}

.contact .info-item h3 {
	font-size: 1.05rem;
	margin-bottom: 0.25rem;
}

.contact .info-item p {
	margin: 0;
	font-size: 0.92rem;
}

.contact .php-email-form {
	background: var(--surface-color);
	padding: 30px;
	border-top: 3px solid var(--accent-color);
	border-bottom: 3px solid var(--accent-color);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
	height: 100%;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #cbd5e1;
	font-size: 14px;
}

.contact .php-email-form button[type="submit"] {
	background: var(--accent-color);
	color: #fff;
	border: 0;
	padding: 10px 30px;
	border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
	background: color-mix(in srgb, var(--accent-color), black 10%);
}

.contact .contact-form-wrapper {
	background: var(--surface-color);
	padding: 30px;
	border-top: 3px solid var(--accent-color);
	border-bottom: 3px solid var(--accent-color);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
	height: 100%;
}

.contact .contact-form-wrapper h3 {
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 0.75rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--accent-color);
	display: inline-block;
}

.iba-contact-intro {
	margin-bottom: 1.25rem;
	font-size: 0.95rem;
}

.iba-form-msg {
	padding: 0.85rem 1rem;
	border-radius: 8px;
	font-weight: 600;
	margin-bottom: 1.25rem;
	font-size: 14px;
}

.iba-form-msg--ok {
	color: #1b5e20;
	background: #e8f5e9;
	border: 1px solid #a5d6a7;
}

.iba-form-msg--err {
	color: #b71c1c;
	background: #ffebee;
	border: 1px solid #ef9a9a;
}

.contact .contact-form-wrapper label {
	display: block;
	font-weight: 600;
	font-size: 0.92rem;
	margin-bottom: 0.35rem;
}

.contact .contact-form-wrapper .form-control {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #cbd5e1;
	font-size: 14px;
	border-radius: 6px;
}

.contact .contact-form-wrapper select.form-control {
	height: auto;
}

.contact .contact-form-wrapper .form-control:focus {
	border-color: var(--accent-color);
	outline: none;
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.iba-hp {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

.iba-optional {
	font-weight: 400;
	color: #64748b;
	font-size: 0.92em;
}

.iba-captcha {
	margin: 1.25rem 0;
	padding: 1rem 1.1rem;
	background: color-mix(in srgb, var(--accent-color), transparent 94%);
	border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
	border-radius: 8px;
}

.iba-captcha__label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.5rem;
	font-size: 0.92rem;
}

.iba-captcha__items {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.iba-captcha__item {
	min-width: 0;
}

.iba-captcha__item + .iba-captcha__item {
	padding-top: 1rem;
	border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

@media (min-width: 768px) {
	.iba-captcha__items {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.25rem;
		align-items: start;
	}

	.iba-captcha__item + .iba-captcha__item {
		margin-top: 0;
		padding-top: 0;
		padding-left: 1.25rem;
		border-top: none;
		border-left: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
	}
}

.iba-captcha__question {
	margin: 0 0 0.75rem;
	font-size: 14px;
	line-height: 1.45;
}

.iba-captcha__num {
	font-weight: 600;
	color: var(--heading-color);
}

.iba-captcha__word {
	font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
	letter-spacing: 0.03em;
}

.iba-captcha__input {
	max-width: 8rem;
}

@media (min-width: 768px) {
	.iba-captcha__input {
		max-width: 100%;
	}
}

.iba-captcha__desc {
	margin: 0 0 1rem;
	font-size: 13px;
	color: #64748b;
}

.iba-contact-submit {
	background: var(--accent-color);
	color: #fff;
	border: 0;
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	margin-top: 0.5rem;
	transition: background 0.2s ease, transform 0.2s ease;
}

.iba-contact-submit:hover {
	background: color-mix(in srgb, var(--accent-color), black 10%);
	transform: translateY(-1px);
}

.iba-contact-submit.is-busy {
	opacity: 0.85;
	cursor: wait;
}

.iba-contact-submit__busy[hidden],
.iba-contact-submit__label[hidden] {
	display: none !important;
}

.php-email-form .error-message {
	display: none;
	background: #df1529;
	color: #fff;
	padding: 15px;
	margin-bottom: 1rem;
}

.php-email-form .sent-message {
	display: none;
	background: #059652;
	color: #fff;
	padding: 15px;
	margin-bottom: 1rem;
	text-align: center;
}

.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
	display: none;
}

.php-email-form .loading.d-block,
.php-email-form .error-message.d-block,
.php-email-form .sent-message.d-block {
	display: block;
}

.php-email-form .loading {
	text-align: center;
	padding: 15px;
	margin-bottom: 1rem;
}

.php-email-form .error-message.d-block {
	display: block;
}

.php-email-form .loading::before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	border: 3px solid var(--accent-color);
	border-top-color: transparent;
	border-radius: 50%;
	animation: iba-spin 1s linear infinite;
	vertical-align: middle;
	margin-right: 8px;
}

@keyframes iba-spin {
	to { transform: rotate(360deg); }
}

/* --- Footer --- */
.footer {
	background: #222;
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	padding-bottom: 40px;
}

.footer h4 {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
}

.footer a {
	color: rgba(255, 255, 255, 0.82);
}

.footer a:hover {
	color: #fff;
}

.footer .footer-newsletter {
	background: rgba(255, 255, 255, 0.04);
	padding: 50px 0;
}

.footer .newsletter-form {
	display: flex;
	border-radius: 50px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.15);
	margin-top: 1rem;
}

.footer .newsletter-form input[type="email"] {
	flex: 1;
	border: 0;
	padding: 10px 16px;
	background: transparent;
	color: #fff;
}

.footer .newsletter-form input[type="submit"] {
	border: 0;
	background: var(--accent-color);
	color: #fff;
	padding: 0 22px;
}

.footer .footer-links ul {
	list-style: none;
	padding: 0;
}

.footer .footer-links li {
	padding: 6px 0;
}

.footer .copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 1.5rem;
	margin-top: 2rem;
}

.footer .footer-credit {
	font-size: 0.875rem;
	margin-top: 0.75rem;
	opacity: 0.85;
}

.footer .sitename {
	color: #fff;
}

.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: -15px;
	z-index: 99999;
	background: var(--accent-color);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.4s;
}

.scroll-top i {
	color: #fff;
	font-size: 24px;
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
	bottom: 15px;
}

#preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	background: #fff;
	transition: opacity 0.4s;
}

#preloader::before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #fff;
	border-color: var(--accent-color) transparent var(--accent-color) transparent;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: iba-spin 1.5s linear infinite;
}

@media (max-width: 991px) {
	.iba-hero .btn-outline-light-custom {
		margin-left: 0;
		margin-top: 0.75rem;
	}

	section, .section {
		scroll-margin-top: 72px;
	}
}

/* --- Subpagina's --- */
.sub-page.scrolled .header,
.index-page.scrolled .header {
	background-color: rgba(34, 34, 34, 0.92);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.sub-page .header .iba-logo-text,
.sub-page .navmenu a.nav-anchor {
	color: rgba(255, 255, 255, 0.88);
}

.sub-page .navmenu a.nav-anchor:hover,
.sub-page .navmenu a.nav-anchor.active {
	color: #fff;
}

@media (min-width: 1200px) {
	.sub-page .navmenu .nav-cta-item {
		border-left: 1px solid rgba(255, 255, 255, 0.15);
		margin-left: 6px;
		padding-left: 6px;
	}
}

.iba-page-hero {
	padding: 130px 0 50px;
	background: linear-gradient(135deg, rgba(20, 24, 30, 0.92) 0%, rgba(34, 34, 34, 0.88) 100%),
		url("../img/bg/bg-jakubzerdzicki-28176949.webp") center center / cover no-repeat;
}

.iba-page-hero h1 {
	color: #fff;
	font-size: clamp(1.85rem, 4vw, 2.5rem);
	margin-bottom: 0.75rem;
}

.iba-page-hero p {
	color: rgba(255, 255, 255, 0.92);
	max-width: 40rem;
	margin: 0;
}

.iba-checklist {
	list-style: none;
	padding: 0;
	margin: 0;
}

.iba-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 0.4rem;
	padding-bottom: 0.55rem;
}

.iba-checklist i {
	color: var(--accent-color);
	flex-shrink: 0;
	margin-top: 2px;
}

.iba-client-form label {
	display: block;
	font-weight: 600;
	font-size: 0.92rem;
	margin-bottom: 0.35rem;
}

.iba-client-form .form-control {
	margin-bottom: 0.15rem;
}

.iba-client-form button[type="submit"] {
	margin-top: 0.5rem;
	background: var(--accent-color);
	color: #fff;
	border: 0;
	padding: 10px 28px;
	border-radius: 50px;
	font-weight: 600;
}

.iba-client-form button[type="submit"]:hover {
	background: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 640px) {
	.iba-hero {
		min-height: auto;
		padding-top: 110px;
	}

	.iba-hero .d-flex.gap-2 {
		flex-direction: column;
		align-items: stretch !important;
	}

	.iba-hero .btn-get-started,
	.iba-hero .btn-outline-light-custom {
		text-align: center;
	}
}
