/* Base */
:root {
	--bg-gradient: #0076e2;
	--text-primary: #0f172a;
    --accent-color: #0076e2;
	--text-muted: #4b5563;
	--card-bg: #ffffff;
	--border-subtle: #e5e7eb;
}

body {
	font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
	color: var(--text-primary);
	background: #f8fafc;
}

.navbar {
	padding: 2rem 3rem;
	position: relative;
}

.navbar::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 6px;
	background: var(--accent-color);
}

.logo-img {
	height: 60px;
	width: auto;
	object-fit: contain;
}

.nav-link-primary {
	font-weight: 600;
	color: var(--text-primary);
}

.nav-link-primary:hover {
	color: #0d6efd;
}

/* Hero */
.hero {
	padding: 6rem 0;
	min-height: 80vh;
	display: flex;
	align-items: center;
	background: url("../img/banner.jpg") center/cover no-repeat;
	position: relative;
	overflow: hidden;
	color: #f8fafc;
}

.hero .container {
	position: relative;
	z-index: 1;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(5, 10, 22, 0.75) 0%, rgba(5, 10, 22, 0.55) 45%, rgba(5, 10, 22, 0.35) 100%);
	z-index: 0;
}

.hero-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
	align-items: center;
}

.hero-copy h1 {
	font-weight: 700;
	font-size: clamp(2rem, 3vw, 3rem);
	margin: 1rem 0 1rem;
}

.hero-copy .lead {
	color: #e2e8f0;
	font-size: 1.1rem;
	max-width: 640px;
}

.lead strong {
	font-weight: bold;
}

.kenteken-container {
    background-color: #ffffff;
    display: flex;
    padding: 0.5rem;
    width: fit-content;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
    gap: 0.5rem;
    align-items: center;
}

.kenteken {
	display: flex;
	align-items: center;
    border-radius: 8px;
}

.kenteken-img img {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 4px 0 0 4px;
}

.kenteken-input {
    background-color: rgb(244 190 4);
    border: none;
    border-radius: 0 4px 4px 0;
	height: 60px;
	padding: 0 0.75rem;
	box-sizing: border-box;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
}

.kenteken-btn {
	height: 60px;
	display: inline-flex;
	align-items: center;
	padding: 0 1.25rem;
	background-color: #0076e2;
	border-color: #005bb5;
}

.kenteken-input:focus,
.kenteken-input select:focus {
	outline: none;
	border: none;
	box-shadow: none;
}

.kenteken-input-container {
    
}

/* Info + process */
.info-section {
	padding: 4rem 0;
}

.info-section h2 {
	font-weight: 700;
	margin-bottom: 1rem;
}

.info-section p {
	max-width: 820px;
	color: var(--text-muted);
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.process-card {
	background: var(--card-bg);
	border: 1px solid var(--border-subtle);
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
	position: relative;
	overflow: hidden;
	transition: transform 120ms ease, box-shadow 120ms ease;
}

.process-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.process-step {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #0076e2;
	color: #ffffff;
	font-weight: 700;
	font-size: 1rem;
	display: grid;
	place-items: center;
	margin-bottom: 1rem;
	z-index: 1;
}

.process-body {
	z-index: 1;
	position: relative;
}

.process-body h3 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.process-body p {
	margin: 0;
	color: var(--text-muted);
	line-height: 1.6;
}

/* Compare */
.compare-section {
	padding: 4rem 0;
	background: #0076e2;
	color: #f8fafc;
}

.compare-section h2 {
	font-weight: 700;
	margin-bottom: 1rem;
	color: #f8fafc;
}

.compare-lead {
	max-width: 820px;
	color: #e6f1ff;
	margin-bottom: 1.5rem;
}

.compare-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.25rem;
}

.compare-card {
	background: var(--card-bg);
	border: 1px solid var(--border-subtle);
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
	position: relative;
	color: var(--text-primary);
}

.compare-card.highlight {
	border-color: #005bb5;
	box-shadow: 0 18px 36px rgba(0, 68, 150, 0.26);
}

.compare-card h3 {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.35rem;
}

.compare-card p {
	color: var(--text-muted);
	margin-bottom: 0.75rem;
}

.compare-list {
	padding-left: 1.1rem;
	margin: 0;
	color: var(--text-muted);
	line-height: 1.6;
}

.compare-list li + li {
	margin-top: 0.35rem;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.85rem;
	margin-bottom: 0.75rem;
}

.pill-positive {
	background: rgba(0, 118, 226, 0.1);
	color: #005bb5;
	border: 1px solid rgba(0, 118, 226, 0.2);
}

.compare-example {
	margin-top: 2rem;
	background: #f1f5f9;
	border: 1px solid var(--border-subtle);
	border-radius: 14px;
	padding: 1.25rem;
	color: var(--text-primary);
}

.compare-note {
	margin: 0 0 0.75rem 0;
	color: var(--text-primary);
	font-weight: 600;
}

.bar-rows {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.bar-row {
	display: grid;
	grid-template-columns: 1fr 3fr auto;
	align-items: center;
	gap: 0.75rem;
}

.bar-label {
	font-weight: 600;
	color: var(--text-primary);
}

.bar-track {
	background: #e2e8f0;
	height: 12px;
	border-radius: 999px;
	overflow: hidden;
	position: relative;
}

.bar {
	display: block;
	height: 100%;
	border-radius: 999px;
}

.bar-primary {
	background: #0076e2;
}

.bar-muted {
	background: #94a3b8;
}

.bar-value {
	font-weight: 700;
	color: var(--text-primary);
}

.bar-footnote {
	margin: 0.5rem 0 0;
	color: var(--text-muted);
	font-size: 0.9rem;
}

.compare-card-single {
	padding: 1.75rem;
}

.compare-card-top {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.25rem;
	align-items: center;
}

.compare-card-copy h3 {
	margin-bottom: 0.25rem;
}

.compare-sub {
	color: var(--text-muted);
	margin: 0 0 0.75rem 0;
}

.compare-car-img {
	justify-self: end;
	max-width: 320px;
}

.compare-car-img img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

/* Trustpilot */
.trustpilot-section {
	padding: 4rem 0;
	background: transparent;
	color: var(--text-primary);
}

.trustpilot-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.75rem;
	align-items: center;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--accent-color);
	margin: 0 0 0.35rem;
}

.trustpilot-section h2 {
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.trustpilot-lead {
	color: var(--text-muted);
	max-width: 520px;
	margin-bottom: 1.1rem;
}

.trustpilot-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
}

.trustpilot-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 0.9rem;
	border-radius: 0.5rem;
	background: rgba(0, 118, 226, 0.08);
	border: 1px solid rgba(0, 118, 226, 0.15);
}

.btn-trustpilot {
    padding: 0.6rem 0.9rem;
}

.pill-label {
	font-weight: 600;
	color: var(--text-muted);
}

.pill-score {
	font-weight: 700;
	color: var(--text-primary);
}

.trustpilot-widget-wrapper {
	background: #ffffff;
	border: 1px solid var(--border-subtle);
	border-radius: 16px;
	padding: 1.25rem;
}

.trustpilot-widget-wrapper .trustpilot-widget {
	min-height: 160px;
}

@media (max-width: 576px) {
	.trustpilot-section {
		padding: 3rem 0;
	}

	.trustpilot-cta {
		flex-direction: column;
		align-items: flex-start;
	}

    .kenteken-input {
        padding: 0;
        font-size: 0.8rem;
    }

    .kenteken-container {
        width: fit-content;
    }

	.kenteken-btn {
		padding: 0 0.5rem !important;
	}
}

/* Footer */
.site-footer {
	background: #0076e2;
	color: #f8fafc;
	padding: 3rem 0 2.5rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.75rem;
	align-items: start;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.65rem;
}

.footer-logo {
	border-radius: 8px;
	height: 42px;
	width: auto;
	object-fit: contain;
}

.footer-tagline {
	margin: 0;
	color: #e6f1ff;
}

.footer-cta {
	align-self: flex-start;
	font-weight: 700;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-title {
	font-size: 1rem;
	font-weight: 700;
	margin: 0;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.footer-links a {
	color: #f8fafc;
	text-decoration: none;
}

.footer-links a:hover {
	text-decoration: underline;
}

.footer-bottom {
	margin-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 1.25rem;
}

.footer-bottom-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem;
	color: #e6f1ff;
}

.footer-meta {
	opacity: 0.9;
}

@media (max-width: 576px) {
	.site-footer {
		padding: 2.5rem 0 2rem;
	}

	.footer-logo {
		height: 36px;
	}
}
