/*
Theme Name: laadpaal-laten-plaatsen-nl
Description: Laadpaal Laten Plaatsen – Nederland – Royal Purple #5B21B6 + Volt Yellow #FDE047
Version: 1.0.0
Author: Fleet Custom
*/

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	background: #FAFAF7;
	color: #1a1a2e;
	font-weight: 400;
	line-height: 1.65;
	-webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4 {
	font-weight: 700;
	line-height: 1.2;
	color: inherit;
}

a { color: #5B21B6; text-decoration: none; }
a:hover { text-decoration: underline; }

img { display: block; max-width: 100%; height: auto; }

ul { list-style: none; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.llpnl-hdr {
	background: #3b0f8e; /* darker purple */
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 0 1rem;
}

.llpnl-hdr__inner {
	max-width: 1140px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

/* Logo */
.llpnl-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
}
.llpnl-logo__img {
	height: 40px;
	width: auto;
}
.llpnl-logo__text {
	font-size: 1.05rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
	white-space: nowrap;
}

/* Nav */
.llpnl-nav ul {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}
.llpnl-nav a {
	color: #e8d9ff;
	font-size: 0.9rem;
	font-weight: 400;
	text-decoration: none;
}
.llpnl-nav a:hover { color: #fff; }

/* CTA button in header */
.llpnl-hdr__cta {
	background: #FDE047;
	color: #1a1a2e;
	font-weight: 700;
	font-size: 0.88rem;
	padding: 0.5rem 1.1rem;
	border-radius: 4px;
	text-decoration: none;
	white-space: nowrap;
}
.llpnl-hdr__cta:hover { background: #facc15; text-decoration: none; }

/* Hamburger CSS-only */
.llpnl-nav__toggle {
	display: none;
}
.llpnl-nav__hamburger {
	display: none;
	cursor: pointer;
	flex-direction: column;
	gap: 5px;
	width: 28px;
}
.llpnl-nav__hamburger span {
	display: block;
	height: 2px;
	background: #fff;
	border-radius: 2px;
}

@media (max-width: 768px) {
	.llpnl-nav__hamburger { display: flex; }
	.llpnl-hdr__cta { display: none; }

	.llpnl-nav ul {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: #3b0f8e;
		flex-direction: column;
		padding: 1.5rem;
		gap: 1rem;
		align-items: flex-start;
	}
	.llpnl-nav__toggle:checked ~ ul {
		display: flex;
	}
}

/* ==========================================================================
   HERO
   ========================================================================== */
.llpnl-hero {
	background: #5B21B6;
	position: relative;
	min-height: 640px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 4rem 1rem 0;
	overflow: hidden;
}

/* Background image overlay */
.llpnl-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('assets/img/hero.webp');
	background-size: cover;
	background-position: center;
	opacity: 0.18;
	pointer-events: none;
}

.llpnl-hero__top {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 820px;
	width: 100%;
}

.llpnl-hero h1 {
	font-size: 3.5rem;
	color: #fff;
	font-weight: 700;
	letter-spacing: -0.03em;
	margin-bottom: 1rem;
}

.llpnl-hero__sub {
	color: #ddd6fe;
	font-size: 1.15rem;
	margin-bottom: 1.75rem;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

/* Stats inline */
.llpnl-hero__stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.llpnl-hero__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 1.5rem;
}
.llpnl-hero__stat strong {
	font-size: 1.6rem;
	color: #FDE047;
	font-weight: 700;
}
.llpnl-hero__stat span {
	font-size: 0.8rem;
	color: #c4b5fd;
	text-align: center;
}

.llpnl-hero__sep {
	color: #FDE047;
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1;
	align-self: center;
}

/* Form card – bottom of hero, max-width 720px */
.llpnl-hero__form-wrap {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 720px;
	margin-top: auto;
	padding-top: 1rem;
}

/* ==========================================================================
   FORM CARD
   ========================================================================== */
.llpnl-form {
	background: #fff;
	border-radius: 12px 12px 0 0;
	box-shadow: 0 -8px 40px rgba(91,33,182,0.25);
	padding: 2rem 2rem 2.5rem;
}

.llpnl-form__title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #3b0f8e;
	margin-bottom: 0.25rem;
}

.llpnl-form__sub {
	font-size: 0.88rem;
	color: #6b7280;
	margin-bottom: 1.25rem;
}

.llpnl-form__msg {
	padding: 0.75rem 1rem;
	border-radius: 6px;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}
.llpnl-form__msg--ok { background: #d1fae5; color: #065f46; }
.llpnl-form__msg--err { background: #fee2e2; color: #991b1b; }

.llpnl-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.875rem;
}

/* Full-width items inside grid */
.llpnl-form__field--full {
	grid-column: 1 / -1;
}

.llpnl-form__field label {
	display: block;
	font-size: 0.82rem;
	font-weight: 700;
	color: #374151;
	margin-bottom: 0.3rem;
}

.llpnl-form__field input {
	width: 100%;
	padding: 0.65rem 0.9rem;
	border: 1.5px solid #d1d5db;
	border-radius: 6px;
	font-size: 0.95rem;
	font-family: inherit;
	color: #1a1a2e;
	background: #fff;
	font-weight: 400;
}
.llpnl-form__field input:focus {
	outline: none;
	border-color: #5B21B6;
	box-shadow: 0 0 0 3px rgba(91,33,182,0.15);
}

/* Honeypot */
.llpnl-form__honey {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
	height: 0;
	overflow: hidden;
}

/* Submit button */
.llpnl-form__btn {
	grid-column: 1 / -1;
	background: #FDE047;
	color: #1a1a2e;
	font-weight: 700;
	font-size: 1rem;
	border: none;
	border-radius: 6px;
	padding: 0.9rem 2rem;
	cursor: pointer;
	width: 100%;
	margin-top: 0.25rem;
}
.llpnl-form__btn:hover { background: #facc15; }

.llpnl-form__privacy {
	grid-column: 1 / -1;
	font-size: 0.78rem;
	color: #9ca3af;
	text-align: center;
}

@media (max-width: 560px) {
	.llpnl-form__grid { grid-template-columns: 1fr; }
	.llpnl-hero h1 { font-size: 2.2rem; }
	.llpnl-form { padding: 1.5rem 1rem 2rem; }
}

/* ==========================================================================
   MERKEN (brand carousel)
   ========================================================================== */
.llpnl-merken {
	background: #fff;
	padding: 2rem 0;
	border-top: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
}

.llpnl-merken__label {
	text-align: center;
	font-size: 0.78rem;
	font-weight: 700;
	color: #6b7280;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.llpnl-merken__scroll {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	gap: 0;
	padding: 0 1rem;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.llpnl-merken__scroll::-webkit-scrollbar { display: none; }

.llpnl-merken__item {
	flex: 0 0 160px;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 1.5rem;
	border-right: 1px solid #e5e7eb;
}
.llpnl-merken__item:last-child { border-right: none; }

.llpnl-merken__icon {
	width: 48px;
	height: 48px;
	background: #f3f0ff;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.llpnl-merken__icon svg { width: 28px; height: 28px; }

.llpnl-merken__name {
	font-size: 0.82rem;
	font-weight: 700;
	color: #3b0f8e;
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.llpnl-process {
	padding: 4rem 1rem;
	background: #FAFAF7;
}

.llpnl-process__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.llpnl-section-title {
	font-size: 2rem;
	font-weight: 700;
	color: #3b0f8e;
	text-align: center;
	margin-bottom: 0.5rem;
}

.llpnl-section-sub {
	text-align: center;
	color: #6b7280;
	margin-bottom: 3rem;
	font-size: 1rem;
}

.llpnl-process__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.llpnl-process__step {
	text-align: center;
	padding: 1.5rem 1rem;
	background: #fff;
	border-radius: 10px;
	border: 1px solid #ede9fe;
}

.llpnl-process__num {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #5B21B6;
	color: #FDE047;
	font-size: 1.2rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.llpnl-process__step h3 {
	font-size: 0.95rem;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 0.4rem;
}

.llpnl-process__step p {
	font-size: 0.85rem;
	color: #6b7280;
}

@media (max-width: 900px) { .llpnl-process__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .llpnl-process__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   CONTENT ARTICLE
   ========================================================================== */
.llpnl-content {
	background: #fff;
	padding: 4rem 1rem;
}

.llpnl-content__inner {
	max-width: 860px;
	margin: 0 auto;
}

.llpnl-content__inner h2 {
	font-size: 1.55rem;
	color: #3b0f8e;
	margin-bottom: 0.75rem;
	margin-top: 2rem;
}

.llpnl-content__inner h3 {
	font-size: 1.15rem;
	color: #1a1a2e;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}

.llpnl-content__inner p {
	margin-bottom: 1rem;
	color: #374151;
	line-height: 1.7;
}

.llpnl-content__inner ul {
	list-style: disc;
	padding-left: 1.5rem;
	margin-bottom: 1rem;
	color: #374151;
}
.llpnl-content__inner ul li { margin-bottom: 0.4rem; }

.llpnl-content__gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin: 2rem 0;
}
.llpnl-content__gallery img {
	border-radius: 8px;
	width: 100%;
	height: 200px;
	object-fit: cover;
}

@media (max-width: 600px) { .llpnl-content__gallery { grid-template-columns: 1fr; } }

/* ==========================================================================
   TARIEVEN
   ========================================================================== */
.llpnl-tarieven {
	background: #FAFAF7;
	padding: 4rem 1rem;
}

.llpnl-tarieven__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.llpnl-tarieven__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.llpnl-tarieven__card {
	background: #fff;
	border-radius: 12px;
	padding: 2rem 1.5rem;
	border: 2px solid #ede9fe;
	position: relative;
}

.llpnl-tarieven__card--featured {
	border-color: #5B21B6;
}

.llpnl-tarieven__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: #5B21B6;
	color: #FDE047;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.2rem 0.8rem;
	border-radius: 20px;
	white-space: nowrap;
	letter-spacing: 0.05em;
}

.llpnl-tarieven__type {
	font-size: 0.82rem;
	font-weight: 700;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 0.5rem;
}

.llpnl-tarieven__price {
	font-size: 2rem;
	font-weight: 700;
	color: #3b0f8e;
}

.llpnl-tarieven__price span {
	font-size: 0.9rem;
	font-weight: 400;
	color: #6b7280;
}

.llpnl-tarieven__desc {
	font-size: 0.88rem;
	color: #6b7280;
	margin: 0.5rem 0 1.25rem;
}

.llpnl-tarieven__feats {
	font-size: 0.85rem;
	color: #374151;
}

.llpnl-tarieven__feats li {
	padding: 0.3rem 0;
	border-bottom: 1px solid #f3f4f6;
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.llpnl-tarieven__feats li::before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	min-width: 14px;
	background: #5B21B6;
	border-radius: 50%;
	margin-top: 3px;
}

@media (max-width: 800px) { .llpnl-tarieven__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.llpnl-faq {
	background: #fff;
	padding: 4rem 1rem;
}

.llpnl-faq__inner {
	max-width: 800px;
	margin: 0 auto;
}

.llpnl-faq__list {
	margin-top: 2.5rem;
}

.llpnl-faq__item {
	border-bottom: 1px solid #e5e7eb;
}

.llpnl-faq__q {
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	font-family: inherit;
	font-size: 0.98rem;
	font-weight: 700;
	color: #1a1a2e;
	padding: 1.1rem 0;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.llpnl-faq__q::after {
	content: '+';
	font-size: 1.4rem;
	color: #5B21B6;
	font-weight: 400;
	flex-shrink: 0;
}

.llpnl-faq__item input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.llpnl-faq__a {
	display: none;
	padding-bottom: 1rem;
	font-size: 0.9rem;
	color: #4b5563;
	line-height: 1.7;
}

.llpnl-faq__item input:checked ~ .llpnl-faq__a { display: block; }
.llpnl-faq__item input:checked ~ .llpnl-faq__q::after { content: '-'; }

/* ==========================================================================
   CTA
   ========================================================================== */
.llpnl-cta {
	background: #5B21B6;
	padding: 4rem 1rem;
	text-align: center;
}

.llpnl-cta__inner {
	max-width: 700px;
	margin: 0 auto;
}

.llpnl-cta h2 {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.75rem;
}

.llpnl-cta p {
	color: #c4b5fd;
	font-size: 1.05rem;
	margin-bottom: 2rem;
}

.llpnl-cta__btn {
	display: inline-block;
	background: #FDE047;
	color: #1a1a2e;
	font-weight: 700;
	font-size: 1.05rem;
	padding: 1rem 2.5rem;
	border-radius: 6px;
	text-decoration: none;
}
.llpnl-cta__btn:hover { background: #facc15; text-decoration: none; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.llpnl-ftr {
	background: #1a0a3d;
	padding: 2.5rem 1rem;
}

.llpnl-ftr__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	text-align: center;
}

.llpnl-ftr__logo {
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
}

.llpnl-ftr__links {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.llpnl-ftr__links a {
	font-size: 0.82rem;
	color: #a78bfa;
	text-decoration: none;
}
.llpnl-ftr__links a:hover { color: #fff; }

.llpnl-ftr__copy {
	font-size: 0.78rem;
	color: #a0a0c0;
}
