/* ==========================================================================
   PrimeDrive — design system
   ========================================================================== */

:root {
	--pd-bg:          #08080a;
	--pd-bg-2:        #0d0d11;
	--pd-surface:     #131319;
	--pd-surface-2:   #1a1a22;
	--pd-line:        rgba(255, 255, 255, .09);
	--pd-line-strong: rgba(255, 255, 255, .18);

	--pd-red:         #d80014;
	--pd-red-2:       #ff2b3d;
	--pd-red-soft:    rgba(216, 0, 20, .14);

	--pd-text:        #f6f6f8;
	--pd-muted:       #9a9aa8;
	--pd-dim:         #6d6d7c;

	--pd-plate:       #f5d000;
	--pd-plate-blue:  #003399;

	--pd-radius:      18px;
	--pd-radius-lg:   26px;
	--pd-radius-sm:   10px;

	--pd-container:   1280px;
	--pd-gutter:      clamp(20px, 5vw, 48px);
	--pd-section:     clamp(72px, 9vw, 140px);

	--pd-font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
	--pd-font-body:    "Inter", "Helvetica Neue", Arial, sans-serif;

	--pd-ease:        cubic-bezier(.22, 1, .36, 1);
	--pd-shadow:      0 30px 80px -30px rgba(0, 0, 0, .9);
	--pd-header-h:    82px;
}

/* --- reset ---------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	margin: 0;
	background: var(--pd-bg);
	color: var(--pd-text);
	font-family: var(--pd-font-body);
	font-size: clamp(15px, .35vw + 14px, 17px);
	line-height: 1.65;
	font-weight: 350;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.pd-no-scroll { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
	font-family: var(--pd-font-display);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -.03em;
	margin: 0 0 .5em;
	text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6.4vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 1.9vw, 1.8rem); letter-spacing: -.02em; }
h4 { font-size: 1.12rem; letter-spacing: -.01em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }

::selection { background: var(--pd-red); color: #fff; }

:focus-visible {
	outline: 2px solid var(--pd-red-2);
	outline-offset: 3px;
	border-radius: 4px;
}

.pd-sr {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.pd-skip {
	position: absolute; left: 12px; top: -60px; z-index: 999;
	background: var(--pd-red); color: #fff; padding: 10px 18px;
	border-radius: 0 0 8px 8px; transition: top .2s;
}
.pd-skip:focus { top: 0; }

/* --- layout --------------------------------------------------------------- */

.pd-container {
	width: 100%;
	max-width: var(--pd-container);
	margin-inline: auto;
	padding-inline: var(--pd-gutter);
}
.pd-container--wide { max-width: 1560px; }
.pd-container--narrow { max-width: 900px; }

.pd-section { padding-block: var(--pd-section); position: relative; }
.pd-section[id], [id^="pd-"][id] { scroll-margin-top: calc(var(--pd-header-h) + 20px); }
.pd-section--tight { padding-block: clamp(48px, 6vw, 90px); }
.pd-section--alt { background: var(--pd-bg-2); }

.pd-grid { display: grid; gap: clamp(18px, 2.2vw, 30px); }
.pd-grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.pd-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.pd-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* --- headings block ------------------------------------------------------- */

.pd-head { max-width: 760px; margin-bottom: clamp(36px, 4vw, 62px); }
.pd-head--center { margin-inline: auto; text-align: center; }
.pd-head--center .pd-eyebrow { justify-content: center; }
.pd-head__title { margin-bottom: .35em; }
.pd-head__intro { color: var(--pd-muted); font-size: 1.05rem; }
.pd-head__title em { font-style: normal; color: var(--pd-red-2); }

.pd-eyebrow {
	display: inline-flex; align-items: center; gap: 12px;
	font-family: var(--pd-font-display);
	font-size: .74rem; font-weight: 700;
	letter-spacing: .22em; text-transform: uppercase;
	color: var(--pd-red-2);
	margin: 0 0 1.1em;
}
.pd-eyebrow__bar {
	width: 34px; height: 2px; background: currentColor; display: inline-block;
	border-radius: 2px;
}

/* --- buttons -------------------------------------------------------------- */

.pd-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 15px 28px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--pd-font-display);
	font-size: .92rem; font-weight: 700; letter-spacing: -.01em;
	cursor: pointer;
	transition: transform .35s var(--pd-ease), background .25s, border-color .25s, color .25s, box-shadow .35s;
	will-change: transform;
	text-align: center;
}
.pd-btn:hover { transform: translateY(-2px); }
.pd-btn__icon { transition: transform .35s var(--pd-ease); flex: none; }
.pd-btn:hover .pd-btn__icon { transform: translateX(4px); }

.pd-btn--primary {
	background: var(--pd-red);
	color: #fff;
	box-shadow: 0 12px 34px -12px rgba(216, 0, 20, .8);
}
.pd-btn--primary:hover { background: var(--pd-red-2); box-shadow: 0 18px 44px -12px rgba(255, 43, 61, .75); }

.pd-btn--ghost {
	background: rgba(255, 255, 255, .06);
	border-color: var(--pd-line-strong);
	color: var(--pd-text);
	backdrop-filter: blur(10px);
}
.pd-btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .3); }

.pd-btn--light { background: #fff; color: #0b0b0d; }
.pd-btn--light:hover { background: #f0f0f2; }

.pd-btn--link {
	padding: 0; background: none; color: var(--pd-red-2);
	border-radius: 0;
}
.pd-btn--link:hover { transform: none; color: #fff; }

.pd-btn--sm { padding: 11px 20px; font-size: .82rem; }
.pd-btn--block { width: 100%; }

/* --- header --------------------------------------------------------------- */

.pd-header {
	position: fixed; inset: 0 0 auto 0; z-index: 100;
	transition: transform .45s var(--pd-ease), background .35s, backdrop-filter .35s, border-color .35s;
	border-bottom: 1px solid transparent;
}
.pd-header.is-stuck {
	background: rgba(8, 8, 10, .82);
	backdrop-filter: blur(18px) saturate(150%);
	border-bottom-color: var(--pd-line);
}
.pd-header.is-hidden { transform: translateY(-102%); }

.pd-header__inner {
	display: flex; align-items: center; gap: clamp(16px, 3vw, 40px);
	height: var(--pd-header-h);
}

.pd-logo { flex: none; display: block; }
.pd-logo img { height: clamp(34px, 3.4vw, 46px); width: auto; transition: height .35s var(--pd-ease); }
.pd-header.is-stuck .pd-logo img { height: clamp(30px, 3vw, 38px); }

.pd-nav { margin-left: auto; }
.pd-nav__list {
	display: flex; align-items: center; gap: clamp(4px, 1.4vw, 22px);
	list-style: none; margin: 0; padding: 0;
}
.pd-nav__link {
	position: relative;
	display: inline-flex; align-items: center; gap: 6px;
	padding: 10px 4px;
	font-family: var(--pd-font-display);
	font-size: .84rem; font-weight: 600;
	letter-spacing: .06em; text-transform: uppercase;
	color: rgba(246, 246, 248, .78);
	transition: color .25s;
	white-space: nowrap;
}
.pd-nav__link::after {
	content: ""; position: absolute; left: 4px; right: 4px; bottom: 4px;
	height: 2px; background: var(--pd-red-2);
	transform: scaleX(0); transform-origin: left;
	transition: transform .4s var(--pd-ease);
}
.pd-nav__item:hover > .pd-nav__link,
.pd-nav__item.is-current > .pd-nav__link { color: #fff; }
.pd-nav__item:hover > .pd-nav__link::after,
.pd-nav__item.is-current > .pd-nav__link::after { transform: scaleX(1); }
.pd-nav__chevron { transform: rotate(90deg); opacity: .6; }

.pd-nav__item--has-sub { position: relative; }
.pd-nav__sub {
	position: absolute; top: calc(100% - 2px); left: 50%;
	transform: translate(-50%, 10px);
	min-width: 260px;
	display: grid; gap: 2px;
	list-style: none; margin: 0; padding: 10px;
	background: rgba(19, 19, 25, .96);
	backdrop-filter: blur(20px);
	border: 1px solid var(--pd-line);
	border-radius: var(--pd-radius);
	box-shadow: var(--pd-shadow);
	opacity: 0; visibility: hidden; pointer-events: none;
	transition: opacity .3s, transform .35s var(--pd-ease), visibility .3s;
}
.pd-nav__item--has-sub:hover > .pd-nav__sub,
.pd-nav__item--has-sub:focus-within > .pd-nav__sub {
	opacity: 1; visibility: visible; pointer-events: auto;
	transform: translate(-50%, 0);
}
.pd-nav__sub .pd-nav__link {
	width: 100%; padding: 10px 14px; border-radius: 10px;
	text-transform: none; letter-spacing: 0; font-size: .9rem;
	font-weight: 500; font-family: var(--pd-font-body);
}
.pd-nav__sub .pd-nav__link::after { display: none; }
.pd-nav__sub .pd-nav__item:hover > .pd-nav__link { background: rgba(255, 255, 255, .07); }

.pd-header__actions { display: flex; align-items: center; gap: 10px; flex: none; }

.pd-burger {
	display: none;
	width: 46px; height: 46px;
	align-items: center; justify-content: center;
	background: rgba(255, 255, 255, .06);
	border: 1px solid var(--pd-line);
	border-radius: 12px; color: #fff; cursor: pointer;
}

@media (max-width: 1080px) {
	.pd-nav { display: none; }
	.pd-burger { display: inline-flex; }
	.pd-header__actions .pd-btn--primary { display: none; }
}

/* mobile drawer */
.pd-drawer {
	position: fixed; inset: 0; z-index: 120;
	background: rgba(8, 8, 10, .98);
	backdrop-filter: blur(24px);
	display: flex; flex-direction: column;
	padding: 22px var(--pd-gutter) 40px;
	transform: translateY(-100%);
	transition: transform .5s var(--pd-ease);
	overflow-y: auto;
}
.pd-drawer.is-open { transform: translateY(0); }
.pd-drawer__top { display: flex; align-items: center; justify-content: space-between; height: var(--pd-header-h); }
.pd-drawer__close {
	width: 46px; height: 46px; display: grid; place-items: center;
	background: rgba(255, 255, 255, .06); border: 1px solid var(--pd-line);
	border-radius: 12px; color: #fff; cursor: pointer;
}
.pd-drawer__list { list-style: none; margin: 24px 0 0; padding: 0; }
.pd-drawer__list .pd-nav__item { border-bottom: 1px solid var(--pd-line); }
.pd-drawer__list .pd-nav__link {
	font-size: 1.5rem; text-transform: none; letter-spacing: -.02em;
	padding: 18px 0; width: 100%; justify-content: space-between; color: #fff;
	font-weight: 700;
}
.pd-drawer__list .pd-nav__link::after { display: none; }
.pd-drawer__list .pd-nav__sub {
	position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
	background: none; border: 0; box-shadow: none; padding: 0 0 14px; min-width: 0;
}
.pd-drawer__list .pd-nav__sub .pd-nav__link { font-size: 1rem; padding: 9px 0; color: var(--pd-muted); font-weight: 400; }
.pd-drawer__foot { margin-top: auto; padding-top: 34px; display: grid; gap: 12px; }

/* --- hero ----------------------------------------------------------------- */

.pd-hero {
	position: relative;
	min-height: min(100svh, 900px);
	display: flex; align-items: flex-end;
	padding-top: calc(var(--pd-header-h) + 40px);
	padding-bottom: clamp(40px, 6vw, 90px);
	overflow: hidden;
	isolation: isolate;
}
.pd-hero__media { position: absolute; inset: 0; z-index: -2; }
.pd-hero__media img {
	width: 100%; height: 100%; object-fit: cover;
	transform: scale(1.06);
	animation: pd-kenburns 22s var(--pd-ease) forwards;
}
@keyframes pd-kenburns { to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .pd-hero__media img { animation: none; transform: none; } }

.pd-hero__scrim {
	position: absolute; inset: 0; z-index: -1;
	background:
		radial-gradient(80% 60% at 12% 100%, rgba(216, 0, 20, .16), transparent 60%),
		linear-gradient(to right, rgba(8, 8, 10, .92) 0%, rgba(8, 8, 10, .55) 46%, rgba(8, 8, 10, .12) 78%),
		linear-gradient(to top, var(--pd-bg) 3%, rgba(8, 8, 10, .78) 30%, rgba(8, 8, 10, .3) 62%, rgba(8, 8, 10, .68) 100%);
}
.pd-hero__grain {
	position: absolute; inset: 0; z-index: -1; opacity: .3; pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
	mix-blend-mode: overlay;
}

.pd-hero__inner { width: 100%; position: relative; z-index: 1; }
.pd-hero__title { margin-bottom: .3em; }
.pd-hero__title span { display: block; }
.pd-hero__title .pd-hero__accent { color: var(--pd-red-2); }
.pd-hero__lead { max-width: 560px; color: rgba(246, 246, 248, .82); font-size: 1.1rem; }
.pd-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.pd-hero__badges {
	display: flex; flex-wrap: wrap; gap: 10px 22px;
	margin-top: 40px; padding-top: 26px;
	border-top: 1px solid var(--pd-line);
	list-style: none; padding-left: 0;
}
.pd-hero__badges li {
	display: inline-flex; align-items: center; gap: 9px;
	font-size: .85rem; color: var(--pd-muted);
	font-family: var(--pd-font-display); font-weight: 600;
	letter-spacing: .04em; text-transform: uppercase;
}
.pd-hero__badges .pd-icon { color: var(--pd-red-2); }

.pd-hero--compact { min-height: min(64svh, 620px); align-items: center; }
.pd-hero--compact .pd-hero__title { font-size: clamp(2.2rem, 5vw, 4rem); }

/* --- ticker --------------------------------------------------------------- */

.pd-ticker {
	border-block: 1px solid var(--pd-line);
	background: var(--pd-bg-2);
	overflow: hidden;
	padding-block: 18px;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.pd-ticker__track { display: flex; width: max-content; animation: pd-marquee 42s linear infinite; }
.pd-ticker:hover .pd-ticker__track { animation-play-state: paused; }
.pd-ticker__group { display: flex; align-items: center; gap: 46px; padding-right: 46px; }
.pd-ticker__item {
	display: inline-flex; align-items: center; gap: 12px;
	font-family: var(--pd-font-display); font-weight: 700;
	font-size: clamp(.95rem, 1.4vw, 1.25rem);
	letter-spacing: .04em; text-transform: uppercase;
	color: rgba(246, 246, 248, .5);
	white-space: nowrap;
}
.pd-ticker__item .pd-icon { color: var(--pd-red); }
@keyframes pd-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .pd-ticker__track { animation: none; } }

/* --- kentekencheck -------------------------------------------------------- */

.pd-kenteken {
	position: relative;
	background: linear-gradient(160deg, var(--pd-surface), #0b0b0f 70%);
	border: 1px solid var(--pd-line);
	border-radius: var(--pd-radius-lg);
	padding: clamp(24px, 3.4vw, 46px);
	box-shadow: var(--pd-shadow);
	overflow: hidden;
}
.pd-kenteken::before {
	content: ""; position: absolute; inset: -1px -1px auto -1px; height: 3px;
	background: linear-gradient(90deg, transparent, var(--pd-red), var(--pd-red-2), transparent);
}
.pd-kenteken__glow {
	position: absolute; z-index: 0;
	width: 420px; height: 420px; right: -140px; top: -180px;
	background: radial-gradient(circle, rgba(216, 0, 20, .3), transparent 68%);
	pointer-events: none;
}
.pd-kenteken__head,
.pd-kenteken__form,
.pd-kenteken__hint,
.pd-kenteken__msg,
.pd-result { position: relative; z-index: 1; }

.pd-kenteken__head { display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: flex-end; justify-content: space-between; margin-bottom: 26px; }
.pd-kenteken__title { margin: 0; font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.pd-kenteken__sub { color: var(--pd-muted); font-size: .95rem; margin: .4em 0 0; }

.pd-kenteken__form { display: flex; flex-wrap: wrap; gap: 14px; align-items: stretch; }

/* Dutch licence plate */
.pd-plate {
	position: relative;
	display: flex; align-items: stretch;
	background: var(--pd-plate);
	border-radius: 10px;
	border: 2px solid #111;
	box-shadow: 0 10px 30px -10px rgba(245, 208, 0, .45), inset 0 0 0 1px rgba(0, 0, 0, .25);
	overflow: hidden;
	flex: 1 1 340px; min-width: 260px; max-width: 460px;
	transition: box-shadow .3s, transform .3s var(--pd-ease);
}
.pd-plate:focus-within { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(245, 208, 0, .6); }
.pd-plate__eu {
	flex: none; width: 44px;
	background: var(--pd-plate-blue);
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 6px; color: #fff; padding-block: 10px;
}
.pd-plate__stars { display: block; width: 22px; height: 22px; }
.pd-plate__nl { font: 700 .82rem/1 var(--pd-font-display); letter-spacing: .06em; }
.pd-plate__input {
	flex: 1 1 auto; min-width: 0;
	border: 0; background: none; outline: none;
	font-family: var(--pd-font-display);
	font-weight: 800;
	font-size: clamp(1.6rem, 3.6vw, 2.4rem);
	letter-spacing: .1em;
	text-transform: uppercase;
	text-align: center;
	color: #101014;
	padding: 14px 10px;
	width: 100%;
}
.pd-plate__input::placeholder { color: rgba(16, 16, 20, .32); }

.pd-kenteken__submit { flex: 0 0 auto; min-width: 190px; }
.pd-kenteken__hint { margin-top: 14px; font-size: .84rem; color: var(--pd-dim); display: flex; align-items: center; gap: 8px; }
.pd-kenteken__hint .pd-icon { flex: none; }

.pd-kenteken__msg {
	margin-top: 16px; padding: 13px 18px;
	border-radius: 12px; font-size: .92rem;
	background: rgba(216, 0, 20, .12);
	border: 1px solid rgba(216, 0, 20, .32);
	color: #ffb9bf;
	display: none;
}
.pd-kenteken__msg.is-visible { display: block; animation: pd-fade-up .45s var(--pd-ease) both; }

.pd-kenteken.is-loading .pd-kenteken__submit { opacity: .6; pointer-events: none; }

.pd-spinner {
	width: 17px; height: 17px; border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, .35);
	border-top-color: #fff;
	animation: pd-spin .7s linear infinite;
	display: none;
}
.pd-kenteken.is-loading .pd-spinner { display: block; }
.pd-kenteken.is-loading .pd-btn__icon { display: none; }
@keyframes pd-spin { to { transform: rotate(360deg); } }

/* result */
.pd-result { display: none; margin-top: 34px; }
.pd-result.is-visible { display: block; animation: pd-fade-up .6s var(--pd-ease) both; }

.pd-vehicle {
	display: flex; flex-wrap: wrap; gap: 18px 34px; align-items: center;
	padding: 22px 26px;
	background: rgba(255, 255, 255, .04);
	border: 1px solid var(--pd-line);
	border-radius: var(--pd-radius);
}
.pd-vehicle__id { display: flex; align-items: center; gap: 16px; }
.pd-vehicle__icon {
	width: 54px; height: 54px; flex: none;
	display: grid; place-items: center;
	border-radius: 14px;
	background: var(--pd-red-soft);
	border: 1px solid rgba(216, 0, 20, .34);
	color: var(--pd-red-2);
}
.pd-vehicle__name { display: block; font-family: var(--pd-font-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -.02em; line-height: 1.15; }
.pd-vehicle__plate {
	display: inline-block; margin-top: 5px;
	background: var(--pd-plate); color: #101014;
	font-family: var(--pd-font-display); font-weight: 800;
	font-size: .8rem; letter-spacing: .12em;
	padding: 3px 10px; border-radius: 5px;
}
.pd-vehicle__specs { display: flex; flex-wrap: wrap; gap: 10px 30px; margin-left: auto; list-style: none; padding: 0; }
.pd-vehicle__specs li { font-size: .8rem; }
.pd-vehicle__specs b { display: block; font-family: var(--pd-font-display); font-size: .98rem; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.pd-vehicle__specs span { color: var(--pd-dim); text-transform: uppercase; letter-spacing: .14em; font-size: .64rem; font-weight: 600; }

.pd-result__title {
	margin: 34px 0 20px;
	font-size: 1.15rem; font-family: var(--pd-font-display); font-weight: 700;
	display: flex; align-items: center; gap: 10px;
}
.pd-result__title .pd-icon { color: var(--pd-red-2); }
.pd-result__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.pd-result__more { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }

.pd-svc-card {
	position: relative; display: flex; flex-direction: column; gap: 10px;
	padding: 20px;
	background: var(--pd-surface-2);
	border: 1px solid var(--pd-line);
	border-radius: var(--pd-radius);
	overflow: hidden;
	transition: transform .4s var(--pd-ease), border-color .3s, background .3s;
}
.pd-svc-card:hover { transform: translateY(-4px); border-color: rgba(216, 0, 20, .5); background: #1e1e26; }
.pd-svc-card__top { display: flex; align-items: center; gap: 12px; }
.pd-svc-card__icon { color: var(--pd-red-2); flex: none; }
.pd-svc-card__title { font-family: var(--pd-font-display); font-weight: 700; font-size: 1.02rem; letter-spacing: -.01em; }
.pd-svc-card__reason { font-size: .85rem; color: var(--pd-muted); }
.pd-svc-card__meta { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid var(--pd-line); }
.pd-svc-card__price { font-family: var(--pd-font-display); font-weight: 700; font-size: .88rem; color: #fff; }
.pd-svc-card__go { color: var(--pd-red-2); display: inline-flex; }
.pd-svc-card::after { content: ""; position: absolute; inset: 0; }

/* --- stats ---------------------------------------------------------------- */

.pd-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(14px, 1.6vw, 22px); }
.pd-stat {
	position: relative; text-align: center;
	padding: clamp(26px, 3vw, 42px) 22px;
	background: var(--pd-surface);
	border: 1px solid var(--pd-line);
	border-radius: var(--pd-radius);
	overflow: hidden;
	transition: transform .45s var(--pd-ease), border-color .3s;
}
.pd-stat:hover { transform: translateY(-6px); border-color: rgba(216, 0, 20, .45); }
.pd-stat::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--pd-red), var(--pd-red-2)); }
.pd-stat__icon { color: var(--pd-red-2); margin: 0 auto 14px; }
.pd-stat__value {
	font-family: var(--pd-font-display); font-weight: 900;
	font-size: clamp(2.4rem, 4.6vw, 3.6rem); line-height: 1;
	letter-spacing: -.045em;
}
.pd-stat__value sup { color: var(--pd-red-2); font-size: .55em; vertical-align: super; margin-left: 2px; }
.pd-stat__label { margin-top: 10px; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--pd-muted); font-weight: 600; }

/* --- interactive service list --------------------------------------------- */

.pd-svclist { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(24px, 3vw, 56px); align-items: start; }
@media (max-width: 900px) { .pd-svclist { grid-template-columns: 1fr; } }

.pd-svclist__items { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--pd-line); }
.pd-svclist__row { border-bottom: 1px solid var(--pd-line); }
.pd-svclist__link {
	position: relative; display: flex; align-items: center; gap: 18px;
	padding: clamp(15px, 1.7vw, 21px) 18px;
	transition: color .3s, padding .4s var(--pd-ease);
}
.pd-svclist__link::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(90deg, rgba(216, 0, 20, .18), transparent 78%);
	opacity: 0; transition: opacity .4s;
}
.pd-svclist__row.is-active .pd-svclist__link::before { opacity: 1; }
.pd-svclist__row.is-active .pd-svclist__link { padding-left: 26px; }
.pd-svclist__num { font-family: var(--pd-font-display); font-size: .68rem; font-weight: 700; color: var(--pd-dim); letter-spacing: .14em; width: 22px; flex: none; }
.pd-svclist__row.is-active .pd-svclist__num { color: var(--pd-red-2); }
.pd-svclist__icon { color: var(--pd-dim); flex: none; transition: color .3s; }
.pd-svclist__row.is-active .pd-svclist__icon { color: var(--pd-red-2); }
.pd-svclist__name { font-family: var(--pd-font-display); font-weight: 700; font-size: clamp(1.05rem, 1.6vw, 1.3rem); letter-spacing: -.02em; }
.pd-svclist__row.is-active .pd-svclist__name { color: #fff; }
.pd-svclist__go {
	margin-left: auto; flex: none;
	width: 38px; height: 38px; display: grid; place-items: center;
	border-radius: 50%; border: 1px solid var(--pd-line);
	color: var(--pd-muted);
	transition: background .3s, color .3s, border-color .3s, transform .4s var(--pd-ease);
}
.pd-svclist__row.is-active .pd-svclist__go { background: var(--pd-red); border-color: var(--pd-red); color: #fff; transform: rotate(-45deg); }

.pd-svclist__stage {
	position: sticky; top: calc(var(--pd-header-h) + 26px);
	border-radius: var(--pd-radius-lg);
	overflow: hidden;
	aspect-ratio: 4 / 3.2;
	background: var(--pd-surface);
	border: 1px solid var(--pd-line);
}
.pd-svclist__panel {
	position: absolute; inset: 0;
	opacity: 0; visibility: hidden;
	transition: opacity .6s var(--pd-ease), visibility .6s;
}
.pd-svclist__panel.is-active { opacity: 1; visibility: visible; }
.pd-svclist__panel img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 1.2s var(--pd-ease); }
.pd-svclist__panel.is-active img { transform: scale(1); }
.pd-svclist__caption {
	position: absolute; inset: auto 0 0 0;
	padding: clamp(20px, 2.4vw, 32px);
	background: linear-gradient(to top, rgba(8, 8, 10, .94), rgba(8, 8, 10, .5) 55%, transparent);
}
.pd-svclist__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; list-style: none; padding: 0; }
.pd-svclist__tags li {
	font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
	padding: 5px 11px; border-radius: 999px;
	background: rgba(216, 0, 20, .2); border: 1px solid rgba(216, 0, 20, .4); color: #ff8b95;
}
.pd-svclist__caption h3 { margin-bottom: .35em; }
.pd-svclist__caption p { color: rgba(246, 246, 248, .78); font-size: .95rem; margin-bottom: 1em; }
.pd-svclist__price { font-family: var(--pd-font-display); font-weight: 700; color: #fff; }

/* --- service cards grid ---------------------------------------------------- */

.pd-card {
	position: relative; display: flex; flex-direction: column;
	border-radius: var(--pd-radius-lg);
	overflow: hidden;
	background: var(--pd-surface);
	border: 1px solid var(--pd-line);
	transition: transform .5s var(--pd-ease), border-color .35s, box-shadow .5s;
	isolation: isolate;
}
.pd-card:hover { transform: translateY(-6px); border-color: rgba(216, 0, 20, .5); box-shadow: 0 34px 70px -34px rgba(216, 0, 20, .55); }
.pd-card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--pd-bg-2); }
.pd-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--pd-ease); }
.pd-card:hover .pd-card__media img { transform: scale(1.07); }
.pd-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8, 8, 10, .85), transparent 62%); }
.pd-card__badge {
	position: absolute; z-index: 2; top: 14px; left: 14px;
	display: inline-flex; align-items: center; gap: 7px;
	padding: 7px 13px; border-radius: 999px;
	background: rgba(8, 8, 10, .7); backdrop-filter: blur(8px);
	border: 1px solid var(--pd-line-strong);
	font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.pd-card__badge .pd-icon { color: var(--pd-red-2); }
.pd-card__body { padding: clamp(20px, 2.2vw, 28px); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pd-card__title { margin: 0; font-size: 1.28rem; }
.pd-card__text { color: var(--pd-muted); font-size: .94rem; margin: 0; }
.pd-card__foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--pd-line); }
.pd-card__price { font-family: var(--pd-font-display); font-weight: 700; font-size: .95rem; }
.pd-card__price small { display: block; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--pd-dim); font-weight: 600; }
.pd-card__go {
	width: 42px; height: 42px; flex: none; display: grid; place-items: center;
	border-radius: 50%; background: rgba(255, 255, 255, .06); border: 1px solid var(--pd-line);
	color: #fff; transition: background .3s, transform .4s var(--pd-ease), border-color .3s;
}
.pd-card:hover .pd-card__go { background: var(--pd-red); border-color: var(--pd-red); transform: rotate(-45deg); }
.pd-card__link { position: absolute; inset: 0; z-index: 3; }

/* --- usp list ------------------------------------------------------------- */

.pd-usp { display: grid; gap: 0; }
.pd-usp__row {
	display: grid; grid-template-columns: auto 60px 1fr auto; gap: clamp(16px, 2.4vw, 34px);
	align-items: center;
	padding: clamp(22px, 2.6vw, 34px) 0;
	border-top: 1px solid var(--pd-line);
	transition: padding-left .45s var(--pd-ease);
}
.pd-usp__row:last-child { border-bottom: 1px solid var(--pd-line); }
.pd-usp__row:hover { padding-left: 14px; }
.pd-usp__num { font-family: var(--pd-font-display); font-weight: 900; font-size: clamp(1.7rem, 3vw, 2.6rem); color: rgba(255, 255, 255, .1); letter-spacing: -.05em; transition: color .4s; }
.pd-usp__row:hover .pd-usp__num { color: rgba(216, 0, 20, .55); }
.pd-usp__icon {
	width: 56px; height: 56px; display: grid; place-items: center;
	border-radius: 16px; background: var(--pd-surface); border: 1px solid var(--pd-line);
	color: var(--pd-red-2); transition: background .35s, border-color .35s;
}
.pd-usp__row:hover .pd-usp__icon { background: var(--pd-red-soft); border-color: rgba(216, 0, 20, .45); }
.pd-usp__body h3 { margin: 0 0 .3em; font-size: 1.2rem; }
.pd-usp__body p { margin: 0; color: var(--pd-muted); font-size: .95rem; max-width: 60ch; }
.pd-usp__tag {
	font-family: var(--pd-font-display); font-weight: 800;
	font-size: clamp(1.3rem, 2.4vw, 2rem);
	color: rgba(255, 255, 255, .08); letter-spacing: -.04em; white-space: nowrap;
}
@media (max-width: 760px) {
	.pd-usp__row { grid-template-columns: auto 1fr; }
	.pd-usp__icon, .pd-usp__tag { display: none; }
}

/* --- split / about -------------------------------------------------------- */

.pd-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(28px, 4vw, 70px); align-items: center; }
.pd-split__media { position: relative; border-radius: var(--pd-radius-lg); aspect-ratio: 4 / 3.4; }
.pd-split__media img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.pd-split__media--offset::after {
	content: ""; position: absolute; inset: auto auto -14px -14px; width: 120px; height: 120px;
	border-left: 3px solid var(--pd-red); border-bottom: 3px solid var(--pd-red);
	border-bottom-left-radius: var(--pd-radius-lg);
}
.pd-split__list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.pd-split__list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.pd-split__list .pd-icon { color: var(--pd-red-2); flex: none; margin-top: 3px; }

/* --- before / after ------------------------------------------------------- */

.pd-ba { position: relative; border-radius: var(--pd-radius-lg); overflow: hidden; aspect-ratio: 16 / 10; cursor: ew-resize; user-select: none; touch-action: none; }
.pd-ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pd-ba__after { clip-path: inset(0 0 0 50%); }
.pd-ba__handle {
	position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
	background: #fff; transform: translateX(-50%); pointer-events: none;
	box-shadow: 0 0 22px rgba(0, 0, 0, .6);
}
.pd-ba__knob {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 52px; height: 52px; border-radius: 50%;
	background: var(--pd-red); color: #fff;
	display: grid; place-items: center;
	box-shadow: 0 10px 30px -8px rgba(0, 0, 0, .8);
}
.pd-ba__label {
	position: absolute; bottom: 16px; padding: 6px 13px; border-radius: 999px;
	background: rgba(8, 8, 10, .72); backdrop-filter: blur(8px);
	font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
	pointer-events: none;
}
.pd-ba__label--before { left: 16px; }
.pd-ba__label--after { right: 16px; }

/* --- projects ------------------------------------------------------------- */

.pd-projects { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(12px, 1.4vw, 20px); }
.pd-project {
	position: relative; border-radius: var(--pd-radius); overflow: hidden;
	aspect-ratio: 3 / 4; background: var(--pd-surface);
}

.pd-project img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--pd-ease); }
.pd-project:hover img { transform: scale(1.06); }
.pd-project__body {
	position: absolute; inset: auto 0 0 0; padding: 22px;
	background: linear-gradient(to top, rgba(8, 8, 10, .92), transparent);
	transform: translateY(8px); opacity: .92;
	transition: transform .5s var(--pd-ease), opacity .5s;
}
.pd-project:hover .pd-project__body { transform: translateY(0); opacity: 1; }
.pd-project__title { font-family: var(--pd-font-display); font-weight: 700; font-size: 1.05rem; }
.pd-project__meta { font-size: .78rem; color: var(--pd-muted); margin-top: 3px; }
.pd-project__link { position: absolute; inset: 0; }

/* --- reviews -------------------------------------------------------------- */

.pd-reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(16px, 2vw, 26px); }
.pd-review {
	display: flex; flex-direction: column; gap: 16px;
	padding: clamp(24px, 2.6vw, 34px);
	background: var(--pd-surface); border: 1px solid var(--pd-line);
	border-radius: var(--pd-radius-lg);
	position: relative; overflow: hidden;
}
.pd-review::before {
	content: "“"; position: absolute; top: -34px; right: 10px;
	font-family: var(--pd-font-display); font-size: 9rem; font-weight: 900;
	color: rgba(255, 255, 255, .04); line-height: 1;
}
.pd-review__stars { display: flex; gap: 3px; color: var(--pd-red-2); }
.pd-review__stars .pd-icon { fill: currentColor; }
.pd-review__text { font-size: 1rem; color: rgba(246, 246, 248, .88); }
.pd-review__who { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.pd-review__avatar {
	width: 42px; height: 42px; flex: none; border-radius: 50%;
	background: var(--pd-red-soft); border: 1px solid rgba(216, 0, 20, .4);
	display: grid; place-items: center;
	font-family: var(--pd-font-display); font-weight: 800; color: var(--pd-red-2); font-size: .95rem;
}
.pd-review__name { font-family: var(--pd-font-display); font-weight: 700; font-size: .95rem; }
.pd-review__car { font-size: .8rem; color: var(--pd-dim); }

/* --- faq ------------------------------------------------------------------ */

.pd-faq { border-top: 1px solid var(--pd-line); }
.pd-faq__item { border-bottom: 1px solid var(--pd-line); }
.pd-faq__q {
	width: 100%; display: flex; align-items: center; gap: 20px;
	padding: clamp(20px, 2.2vw, 28px) 0;
	background: none; border: 0; color: inherit; cursor: pointer;
	font-family: var(--pd-font-display); font-weight: 700;
	font-size: clamp(1.02rem, 1.5vw, 1.22rem);
	letter-spacing: -.02em; text-align: left;
}
.pd-faq__q:hover { color: var(--pd-red-2); }
.pd-faq__mark {
	margin-left: auto; flex: none;
	width: 38px; height: 38px; display: grid; place-items: center;
	border-radius: 50%; border: 1px solid var(--pd-line);
	transition: transform .45s var(--pd-ease), background .3s, border-color .3s, color .3s;
}
.pd-faq__item.is-open .pd-faq__mark { transform: rotate(135deg); background: var(--pd-red); border-color: var(--pd-red); color: #fff; }
.pd-faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--pd-ease); }
.pd-faq__item.is-open .pd-faq__a { grid-template-rows: 1fr; }
.pd-faq__a > div { overflow: hidden; }
.pd-faq__a p { color: var(--pd-muted); max-width: 76ch; padding-bottom: 26px; }

/* --- cta band ------------------------------------------------------------- */

.pd-cta {
	position: relative; overflow: hidden;
	border-radius: var(--pd-radius-lg);
	padding: clamp(36px, 5vw, 76px);
	background: linear-gradient(135deg, #16161d, #0b0b0f 60%);
	border: 1px solid var(--pd-line);
	text-align: center;
	isolation: isolate;
}
.pd-cta::before {
	content: ""; position: absolute; z-index: -1; inset: -40% -10% auto -10%; height: 130%;
	background: radial-gradient(50% 50% at 50% 0%, rgba(216, 0, 20, .35), transparent 70%);
}
.pd-cta__media { position: absolute; inset: 0; z-index: -2; opacity: .38; }
.pd-cta__media img { width: 100%; height: 100%; object-fit: cover; }
.pd-cta__media::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(8, 8, 10, .55), rgba(8, 8, 10, .88));
}
.pd-cta h2 { margin-bottom: .35em; }
.pd-cta p { color: var(--pd-muted); max-width: 58ch; margin-inline: auto; }
.pd-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

/* --- contact / forms ------------------------------------------------------ */

.pd-form { display: grid; gap: 16px; }
.pd-form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.pd-field { display: grid; gap: 7px; }
.pd-field label {
	font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
	font-weight: 700; color: var(--pd-muted);
	font-family: var(--pd-font-display);
}
.pd-field input, .pd-field textarea, .pd-field select {
	width: 100%;
	padding: 14px 16px;
	background: rgba(255, 255, 255, .04);
	border: 1px solid var(--pd-line);
	border-radius: 12px;
	color: var(--pd-text);
	font: inherit;
	transition: border-color .25s, background .25s, box-shadow .25s;
}
.pd-field textarea { min-height: 148px; resize: vertical; }
.pd-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%239a9aa8' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.pd-field input:focus, .pd-field textarea:focus, .pd-field select:focus {
	outline: none; border-color: var(--pd-red); background: rgba(255, 255, 255, .07);
	box-shadow: 0 0 0 3px rgba(216, 0, 20, .18);
}
.pd-field input::placeholder, .pd-field textarea::placeholder { color: var(--pd-dim); }
.pd-form__hp { position: absolute; left: -9999px; }
.pd-form__note { font-size: .8rem; color: var(--pd-dim); }

.pd-alert { padding: 15px 20px; border-radius: 12px; font-size: .94rem; margin-bottom: 22px; }
.pd-alert--ok { background: rgba(30, 190, 120, .12); border: 1px solid rgba(30, 190, 120, .35); color: #7ee7b5; }
.pd-alert--err { background: rgba(216, 0, 20, .12); border: 1px solid rgba(216, 0, 20, .35); color: #ffb9bf; }

.pd-contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .8fr); gap: clamp(26px, 4vw, 64px); align-items: start; }
@media (max-width: 900px) { .pd-contact { grid-template-columns: 1fr; } }

.pd-contact__panel {
	background: var(--pd-surface); border: 1px solid var(--pd-line);
	border-radius: var(--pd-radius-lg); padding: clamp(24px, 3vw, 40px);
}
.pd-contact__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.pd-contact__list li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--pd-line); }
.pd-contact__list li:last-child { border-bottom: 0; }
.pd-contact__list .pd-icon { color: var(--pd-red-2); flex: none; margin-top: 2px; }
.pd-contact__list b { display: block; font-family: var(--pd-font-display); font-weight: 700; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--pd-dim); margin-bottom: 3px; }
.pd-contact__map { margin-top: 22px; border-radius: var(--pd-radius); overflow: hidden; border: 1px solid var(--pd-line); aspect-ratio: 16 / 11; }
.pd-contact__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.92) contrast(.85); }
.pd-hours { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.pd-hours li { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--pd-line); font-size: .92rem; }
.pd-hours li:last-child { border-bottom: 0; }
.pd-hours span:first-child { color: var(--pd-muted); }
.pd-hours span:last-child { font-family: var(--pd-font-display); font-weight: 600; }
.pd-hours li.is-closed span:last-child { color: var(--pd-dim); }

/* --- single dienst -------------------------------------------------------- */

.pd-single__layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: clamp(28px, 4vw, 60px); align-items: start; }
@media (max-width: 980px) { .pd-single__layout { grid-template-columns: 1fr; } }

.pd-prose { font-size: 1.03rem; color: rgba(246, 246, 248, .84); }
.pd-prose h2 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); margin-top: 1.6em; }
.pd-prose h3 { margin-top: 1.5em; }
.pd-prose ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.pd-prose ul li { position: relative; padding-left: 30px; }
.pd-prose ul li::before {
	content: ""; position: absolute; left: 0; top: .55em;
	width: 9px; height: 9px; border-radius: 2px;
	background: var(--pd-red); transform: rotate(45deg);
}
.pd-prose a { color: var(--pd-red-2); text-decoration: underline; text-underline-offset: 3px; }
.pd-prose img { border-radius: var(--pd-radius); margin-block: 1.6em; }
.pd-prose blockquote {
	margin: 1.8em 0; padding: 22px 26px;
	border-left: 3px solid var(--pd-red);
	background: var(--pd-surface); border-radius: 0 var(--pd-radius) var(--pd-radius) 0;
	font-size: 1.1rem;
}

.pd-aside { position: sticky; top: calc(var(--pd-header-h) + 24px); display: grid; gap: 18px; }
.pd-aside__box {
	background: var(--pd-surface); border: 1px solid var(--pd-line);
	border-radius: var(--pd-radius-lg); padding: clamp(22px, 2.4vw, 30px);
}
.pd-aside__title { font-family: var(--pd-font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 14px; }
.pd-specs { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 2px; }
.pd-specs li { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--pd-line); font-size: .9rem; }
.pd-specs li:last-child { border-bottom: 0; }
.pd-specs span { color: var(--pd-muted); }
.pd-specs b { font-family: var(--pd-font-display); font-weight: 700; text-align: right; }

.pd-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; counter-reset: pd-step; }
.pd-steps li {
	position: relative; padding: 0 0 26px 46px; counter-increment: pd-step;
}
.pd-steps li::before {
	content: counter(pd-step, decimal-leading-zero);
	position: absolute; left: 0; top: 0;
	width: 32px; height: 32px; border-radius: 50%;
	display: grid; place-items: center;
	background: var(--pd-red-soft); border: 1px solid rgba(216, 0, 20, .4);
	color: var(--pd-red-2); font-family: var(--pd-font-display); font-weight: 800; font-size: .72rem;
}
.pd-steps li::after {
	content: ""; position: absolute; left: 16px; top: 36px; bottom: 4px; width: 1px;
	background: var(--pd-line);
}
.pd-steps li:last-child { padding-bottom: 0; }
.pd-steps li:last-child::after { display: none; }
.pd-steps h4 { margin: 4px 0 .3em; }
.pd-steps p { margin: 0; color: var(--pd-muted); font-size: .92rem; }

/* --- gallery -------------------------------------------------------------- */

.pd-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.pd-gallery figure { margin: 0; border-radius: var(--pd-radius); overflow: hidden; aspect-ratio: 4 / 3; }
.pd-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--pd-ease); }
.pd-gallery figure:hover img { transform: scale(1.06); }

/* --- breadcrumbs ---------------------------------------------------------- */

.pd-crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .78rem; color: var(--pd-dim); margin-bottom: 22px; }
.pd-crumbs a:hover { color: var(--pd-red-2); }
.pd-crumbs .pd-icon { opacity: .5; }

/* --- footer --------------------------------------------------------------- */

.pd-footer { background: var(--pd-bg-2); border-top: 1px solid var(--pd-line); padding-top: clamp(50px, 6vw, 88px); }
.pd-footer__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(160px, 1fr)); gap: clamp(28px, 3vw, 54px); }
.pd-footer__logo img { height: 46px; width: auto; margin-bottom: 20px; }
.pd-footer__about { color: var(--pd-muted); font-size: .94rem; max-width: 42ch; }
.pd-footer__title { font-family: var(--pd-font-display); font-weight: 700; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.pd-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.pd-footer__list a, .pd-footer__list li { color: var(--pd-muted); font-size: .93rem; transition: color .25s; }
.pd-footer__list a:hover { color: var(--pd-red-2); }
.pd-socials { display: flex; gap: 10px; margin-top: 22px; }
.pd-socials a {
	width: 42px; height: 42px; display: grid; place-items: center;
	border-radius: 12px; background: rgba(255, 255, 255, .05);
	border: 1px solid var(--pd-line); color: var(--pd-muted);
	transition: background .3s, color .3s, transform .35s var(--pd-ease), border-color .3s;
}
.pd-socials a:hover { background: var(--pd-red); border-color: var(--pd-red); color: #fff; transform: translateY(-3px); }
.pd-footer__bar {
	margin-top: clamp(38px, 4vw, 62px); padding-block: 24px;
	border-top: 1px solid var(--pd-line);
	display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; justify-content: space-between;
	font-size: .82rem; color: var(--pd-dim);
}
.pd-footer__legal { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; margin: 0; padding: 0; }
.pd-footer__legal a:hover { color: var(--pd-text); }

/* --- floating actions ------------------------------------------------------ */

.pd-fab {
	position: fixed; right: 18px; bottom: 18px; z-index: 90;
	display: grid; gap: 10px;
}
.pd-fab a {
	width: 54px; height: 54px; display: grid; place-items: center;
	border-radius: 50%; color: #fff;
	box-shadow: 0 14px 34px -10px rgba(0, 0, 0, .8);
	transition: transform .35s var(--pd-ease);
}
.pd-fab a:hover { transform: scale(1.08); }
.pd-fab__wa { background: #25d366; }
.pd-fab__tel { background: var(--pd-red); }
@media (min-width: 1080px) { .pd-fab { display: none; } }

/* --- automotive skin ------------------------------------------------------ */

body.pd-divisie-automotive {
	--pd-red: #1f6feb;
	--pd-red-2: #4c9aff;
	--pd-red-soft: rgba(31, 111, 235, .16);
}

/* --- reveal animation ------------------------------------------------------ */

[data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .8s var(--pd-ease), transform .8s var(--pd-ease);
	transition-delay: calc(var(--pd-reveal-delay, 0) * 90ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	[data-reveal] { opacity: 1; transform: none; transition: none; }
}

@keyframes pd-fade-up {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: none; }
}

/* --- star field (sterrenhemel accent) -------------------------------------- */

.pd-stars { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.pd-stars i {
	position: absolute; width: 2px; height: 2px; border-radius: 50%;
	background: #fff; opacity: .5;
	animation: pd-twinkle 4s ease-in-out infinite;
}
@keyframes pd-twinkle {
	0%, 100% { opacity: .15; transform: scale(.7); }
	50% { opacity: .95; transform: scale(1.25); }
}
@media (prefers-reduced-motion: reduce) { .pd-stars i { animation: none; } }

/* --- utilities ------------------------------------------------------------ */

.pd-mt-0 { margin-top: 0; }
.pd-center { text-align: center; }
.pd-muted { color: var(--pd-muted); }
.pd-divider { height: 1px; background: var(--pd-line); border: 0; margin-block: clamp(38px, 4vw, 60px); }

.pd-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 46px; }
.pd-pagination .page-numbers {
	min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0 12px;
	border-radius: 10px; border: 1px solid var(--pd-line); color: var(--pd-muted);
	font-family: var(--pd-font-display); font-weight: 600;
}
.pd-pagination .page-numbers.current, .pd-pagination .page-numbers:hover { background: var(--pd-red); border-color: var(--pd-red); color: #fff; }
