:root {
	--pd-orange: var(--pd-global-primary, #f47a00);
	--pd-orange-soft: var(--pd-global-secondary, #fff2e4);
	--pd-ink: var(--pd-global-text, #151515);
	--pd-ink-2: var(--pd-global-heading, #232323);
	--pd-muted: #6f6f67;
	--pd-line: var(--pd-global-border, #e5e1d9);
	--pd-bg: var(--pd-global-surface, #f4f3ef);
	--pd-surface: var(--pd-global-surface, #ffffff);
	--pd-dark: #181818;
	--pd-dark-2: #242424;
	--pd-dark-text: #f6f2eb;
	--pd-radius: 8px;
	--pd-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
	--pd-container: var(--pd-global-container-width, 1120px);
}

* {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
}

body {
	margin: 0;
	background: var(--pd-bg);
	color: var(--pd-ink);
	font-family: var(--pd-global-font-body, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
	font-size: 16px;
	font-weight: var(--pd-global-body-weight, 400);
	letter-spacing: var(--pd-global-body-letter-spacing, 0);
	line-height: var(--pd-global-body-line-height, 1.6);
	text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--pd-global-heading, inherit);
	font-weight: var(--pd-global-heading-weight, 700);
	letter-spacing: var(--pd-global-heading-letter-spacing, -0.01px);
	line-height: var(--pd-global-heading-line-height, 1.2);
	font-family: var(--pd-global-font-heading, var(--pd-global-font-body, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif));
}

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

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

button,
input,
textarea {
	font: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.pd-skip-link {
	position: fixed;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.pd-skip-link:focus {
	z-index: 1000;
	top: 16px;
	left: 16px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--pd-orange);
	color: #111;
}

.pd-container {
	width: min(100% - 40px, var(--pd-container));
	margin-inline: auto;
}

.pd-site-header-static {
	position: relative;
}

.pd-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 58px;
}

.pd-brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	white-space: nowrap;
}

.pd-brand-mark {
	width: 18px;
	height: 18px;
	display: inline-block;
	background: linear-gradient(135deg, var(--pd-orange), #ff9f2f);
	border-radius: 3px;
	box-shadow: 0 0 0 3px rgba(244, 122, 0, 0.16);
}

.pd-brand-name {
	font-size: 0.92rem;
	letter-spacing: 0;
}

.pd-brand-logo,
.custom-logo {
	width: auto;
	max-width: 190px;
	height: 34px;
	object-fit: contain;
}

.pd-primary-nav {
	margin-left: auto;
}

.pd-menu,
.pd-footer-menu {
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pd-menu a {
	color: var(--pd-global-nav-text, rgba(255, 255, 255, 0.72));
	font-family: var(--pd-global-font-navigation, var(--pd-global-font-header, var(--pd-global-font-body, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif)));
	font-weight: var(--pd-global-navigation-weight, 600);
	letter-spacing: var(--pd-global-navigation-letter-spacing, 0.2px);
	font-size: 0.82rem;
	transition: color 180ms ease;
}

.pd-menu a:hover,
.pd-menu a:focus {
	color: var(--pd-global-nav-hover, #fff);
}

.pd-menu .current-menu-item > a,
.pd-menu .current-menu-ancestor > a {
	color: var(--pd-global-nav-active, #fff);
}

.pd-header-cta,
.pd-footer-button,
.pd-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--pd-global-font-button, var(--pd-global-font-body, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif));
	font-weight: var(--pd-global-button-weight, 700);
	letter-spacing: var(--pd-global-button-letter-spacing, 0);
	min-height: 42px;
	padding: 0 18px;
	border-radius: var(--pd-global-radius-buttons, 4px);
	font-size: 0.85rem;
	line-height: 1;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.pd-header-cta,
.pd-footer-button,
.pd-button-primary {
	background: var(--pd-global-btn-primary-bg, var(--pd-orange));
	color: var(--pd-global-btn-primary-text, #151515);
}

.pd-header-cta:hover,
.pd-footer-button:hover,
.pd-button:hover {
	background: var(--pd-global-btn-primary-hover-bg, #fb923c);
	color: var(--pd-global-btn-primary-hover-text, #151515);
	transform: translateY(-2px);
}

.pd-button-ghost {
	color: var(--pd-global-btn-secondary-text, #fff);
	border: 1px solid var(--pd-global-btn-secondary-text, rgba(255, 255, 255, 0.26));
	background: var(--pd-global-btn-secondary-bg, rgba(255, 255, 255, 0.08));
}

.pd-button-ghost:hover {
	border-color: var(--pd-global-btn-secondary-hover-text, rgba(255, 255, 255, 0.44));
	background: var(--pd-global-btn-secondary-hover-bg, rgba(255, 255, 255, 0.13));
	color: var(--pd-global-btn-secondary-hover-text, #fff);
}

.pd-nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}

.pd-nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: currentColor;
}

.pd-site-header-modern {
	position: sticky;
	top: 0;
	z-index: 120;
	color: #f7f1e8;
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, var(--pd-header-border-opacity));
	transition: transform 320ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.pd-site-header-modern.pd-site-header-static {
	position: relative;
	top: auto;
}

.pd-site-header-modern.pd-site-header-static.pd-site-header--surface-floating {
	top: 0;
}

.pd-site-header-modern.is-hidden {
	transform: translateY(-120%);
}

.pd-site-header-modern::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(var(--pd-header-surface-rgb), var(--pd-header-surface-opacity));
	backdrop-filter: blur(var(--pd-header-blur));
	transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

.pd-transparent-on-load::before {
	background: transparent !important;
	backdrop-filter: none !important;
}

.pd-transparent-on-load.is-scrolled::before {
	background: rgba(var(--pd-header-surface-rgb), var(--pd-header-surface-opacity)) !important;
	backdrop-filter: blur(var(--pd-header-blur)) !important;
}

.pd-site-header-modern.pd-site-header--surface-transparent::before {
	background: rgba(var(--pd-header-surface-rgb), calc(var(--pd-header-surface-opacity) * 0.16));
	backdrop-filter: none;
}

.pd-site-header-modern.pd-site-header--surface-solid::before {
	background: rgba(var(--pd-header-surface-rgb), var(--pd-header-surface-opacity));
	backdrop-filter: none;
}

.pd-site-header-modern.pd-site-header--surface-gradient::before {
	background: var(--pd-header-gradient-css, linear-gradient(100deg, var(--pd-header-gradient-start), var(--pd-header-gradient-end)));
	backdrop-filter: none;
}

.pd-site-header-modern.pd-site-header--surface-floating {
	top: 0;
	border: 0;
}

.pd-site-header-modern.pd-site-header--surface-floating .pd-header-shell {
	padding: 0 14px;
}

.pd-site-header-modern.pd-site-header--surface-floating .pd-header-main {
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, var(--pd-header-border-opacity));
}

.pd-site-header-modern.is-scrolled {
	box-shadow: 0 12px 30px rgba(0, 0, 0, var(--pd-header-shadow-opacity));
}

.pd-site-header-modern .pd-header-shell {
	position: relative;
}

.pd-site-header-modern .pd-header-main {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 16px 24px;
	min-height: 82px;
	padding: 0;
}

.pd-site-header-modern .pd-primary-nav {
	margin-left: 0;
	position: static;
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.pd-site-header-modern .pd-header-logo-wrap {
	display: inline-flex;
	align-items: center;
}

.pd-site-header-modern .pd-brand-logo {
	width: min(var(--pd-header-logo-width), 100%);
	height: var(--pd-header-logo-height);
	max-width: none;
	object-fit: contain;
}

.pd-site-header-modern .pd-primary-nav-desktop {
	display: flex;
	align-items: center;
	justify-content: center;
}

.pd-site-header-modern .pd-menu-desktop {
	gap: var(--pd-header-menu-gap);
}

.pd-site-header-modern .pd-menu-desktop li {
	position: relative;
}

.pd-site-header-modern .pd-menu-desktop a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	color: rgba(255, 255, 255, 0.86);
	font-size: var(--pd-header-menu-font-size);
	font-weight: var(--pd-header-menu-font-weight);
	letter-spacing: var(--pd-header-menu-letter-spacing);
	transition: color 220ms ease, transform 220ms ease, text-shadow 220ms ease, background 220ms ease;
}

.pd-site-header-modern.pd-menu-uppercase .pd-menu-desktop a {
	text-transform: uppercase;
}

.pd-site-header-modern.pd-menu-hover-underline .pd-menu-desktop a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	transform: scaleX(0);
	transform-origin: 50% 50%;
	background: var(--pd-orange);
	transition: transform 220ms ease;
}

.pd-site-header-modern.pd-menu-hover-underline .pd-menu-desktop a:hover::after,
.pd-site-header-modern.pd-menu-hover-underline .pd-menu-desktop a:focus::after {
	transform: scaleX(1);
}

.pd-site-header-modern.pd-menu-hover-glow .pd-menu-desktop a:hover,
.pd-site-header-modern.pd-menu-hover-glow .pd-menu-desktop a:focus {
	text-shadow: 0 0 16px rgba(244, 122, 0, 0.72);
}

.pd-site-header-modern.pd-menu-hover-slide .pd-menu-desktop a:hover,
.pd-site-header-modern.pd-menu-hover-slide .pd-menu-desktop a:focus {
	transform: translateY(-2px);
}

.pd-site-header-modern.pd-menu-active-line .pd-menu-desktop .current-menu-item > a,
.pd-site-header-modern.pd-menu-active-line .pd-menu-desktop .current_page_item > a {
	color: #fff;
}

.pd-site-header-modern.pd-menu-active-line .pd-menu-desktop .current-menu-item > a::after,
.pd-site-header-modern.pd-menu-active-line .pd-menu-desktop .current_page_item > a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	background: var(--pd-orange);
}

.pd-site-header-modern.pd-menu-active-pill .pd-menu-desktop .current-menu-item > a,
.pd-site-header-modern.pd-menu-active-pill .pd-menu-desktop .current_page_item > a {
	padding-inline: 10px;
	border-radius: 999px;
	background: rgba(244, 122, 0, 0.2);
	color: #fff;
}

.pd-site-header-modern.pd-menu-active-block .pd-menu-desktop .current-menu-item > a,
.pd-site-header-modern.pd-menu-active-block .pd-menu-desktop .current_page_item > a {
	padding-inline: 10px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.pd-site-header-modern {
	--pd-dropdown-width: 280px;
	--pd-dropdown-mega-width: 980px;
	--pd-dropdown-radius: 12px;
	--pd-dropdown-shadow-opacity: 0.36;
	--pd-dropdown-bg: #11151b;
	--pd-dropdown-text: #f5f7fa;
	--pd-dropdown-hover-color: #ffad55;
	--pd-dropdown-hover-bg: #252a33;
	--pd-dropdown-transition-ms: 280ms;
	--pd-dropdown-enter-y: 12px;
	--pd-dropdown-enter-scale: 0.98;
	--pd-dropdown-enter-blur: 4px;
}

.pd-site-header-modern.pd-dropdown-anim-fade-in {
	--pd-dropdown-enter-y: 0px;
	--pd-dropdown-enter-scale: 1;
	--pd-dropdown-enter-blur: 0px;
}

.pd-site-header-modern.pd-dropdown-anim-slide-down {
	--pd-dropdown-enter-y: 16px;
	--pd-dropdown-enter-scale: 0.995;
	--pd-dropdown-enter-blur: 0px;
}

.pd-site-header-modern.pd-dropdown-anim-blur-reveal {
	--pd-dropdown-enter-y: 10px;
	--pd-dropdown-enter-scale: 1;
	--pd-dropdown-enter-blur: 8px;
}

.pd-site-header-modern.pd-dropdown-anim-scale-in {
	--pd-dropdown-enter-y: 6px;
	--pd-dropdown-enter-scale: 0.93;
	--pd-dropdown-enter-blur: 0px;
}

.pd-site-header-modern.pd-dropdown-anim-floating-reveal {
	--pd-dropdown-enter-y: 18px;
	--pd-dropdown-enter-scale: 0.97;
	--pd-dropdown-enter-blur: 5px;
}

.pd-site-header-modern.pd-dropdown-anim-soft-motion {
	--pd-dropdown-enter-y: 14px;
	--pd-dropdown-enter-scale: 0.985;
	--pd-dropdown-enter-blur: 2px;
}

.pd-site-header-modern .pd-menu-link-main {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.pd-site-header-modern .pd-menu-link-icon {
	width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 5px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.08);
	font-size: 0.56rem;
	font-weight: 760;
	line-height: 1;
	color: rgba(255, 255, 255, 0.96);
}

.pd-site-header-modern .pd-menu-link-text-wrap {
	display: grid;
	row-gap: 3px;
}

.pd-site-header-modern .pd-menu-link-label {
	display: block;
	line-height: 1.22;
}

.pd-site-header-modern .pd-menu-link-subtitle {
	display: block;
	line-height: 1.3;
	font-size: 0.69rem;
	font-weight: 520;
	color: rgba(245, 247, 250, 0.72);
	letter-spacing: 0;
}

.pd-site-header-modern .pd-menu-desktop > li > a .pd-menu-link-subtitle {
	display: none;
}

.pd-site-header-modern .pd-menu-caret {
	width: 8px;
	height: 8px;
	display: inline-flex;
	margin-left: 5px;
	flex-shrink: 0;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	transition: transform 200ms ease, opacity 200ms ease;
	opacity: 0.8;
}

.pd-site-header-modern .pd-menu-desktop > li:hover > a .pd-menu-caret,
.pd-site-header-modern .pd-menu-desktop > li.is-dropdown-open > a .pd-menu-caret,
.pd-site-header-modern .pd-menu-desktop > li:focus-within > a .pd-menu-caret {
	transform: rotate(225deg);
}

.pd-site-header-modern.pd-submenu-indicator-off .pd-menu-caret {
	display: none;
}

.pd-site-header-modern .pd-menu-desktop .sub-menu {
	position: absolute;
	top: calc(100% + 14px);
	left: 0;
	width: min(var(--pd-dropdown-width), calc(100vw - 40px));
	display: grid;
	gap: 2px;
	margin: 0;
	padding: 12px;
	list-style: none;
	border-radius: var(--pd-dropdown-radius);
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: var(--pd-dropdown-bg);
	color: var(--pd-dropdown-text);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	filter: blur(var(--pd-dropdown-enter-blur));
	transform: translateY(var(--pd-dropdown-enter-y)) scale(var(--pd-dropdown-enter-scale));
	transform-origin: top left;
	box-shadow:
		0 16px 34px rgba(0, 0, 0, var(--pd-dropdown-shadow-opacity)),
		0 4px 12px rgba(0, 0, 0, calc(var(--pd-dropdown-shadow-opacity) * 0.55));
	transition:
		opacity var(--pd-dropdown-transition-ms) ease,
		transform var(--pd-dropdown-transition-ms) cubic-bezier(0.2, 0.72, 0.2, 1),
		filter var(--pd-dropdown-transition-ms) ease,
		visibility var(--pd-dropdown-transition-ms) ease;
}

.pd-site-header-modern .pd-menu-desktop > li > .sub-menu {
	max-width: 92vw;
}

.pd-site-header-modern .pd-menu-desktop .sub-menu li {
	position: relative;
	margin: 0;
}

.pd-site-header-modern .pd-menu-desktop .sub-menu a {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	min-height: 0;
	padding: 10px 11px;
	border-radius: 8px;
	color: var(--pd-dropdown-text);
	background: transparent;
	text-shadow: none;
}

.pd-site-header-modern .pd-menu-desktop .sub-menu a::after {
	display: none;
}

.pd-site-header-modern .pd-menu-desktop .sub-menu a:hover,
.pd-site-header-modern .pd-menu-desktop .sub-menu a:focus {
	background: var(--pd-dropdown-hover-bg);
	color: var(--pd-dropdown-hover-color);
	transform: translateY(0);
}

.pd-site-header-modern .pd-menu-desktop .sub-menu .sub-menu {
	top: -8px;
	left: calc(100% + 10px);
}

.pd-site-header-modern .pd-menu-desktop > li:hover > .sub-menu,
.pd-site-header-modern .pd-menu-desktop > li.is-dropdown-open > .sub-menu,
.pd-site-header-modern .pd-menu-desktop > li:focus-within > .sub-menu,
.pd-site-header-modern .pd-menu-desktop .sub-menu li:hover > .sub-menu,
.pd-site-header-modern .pd-menu-desktop .sub-menu li.is-dropdown-open > .sub-menu,
.pd-site-header-modern .pd-menu-desktop .sub-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	filter: blur(0);
	transform: translateY(0) scale(1);
}

.pd-site-header-modern.pd-dropdown-align-center .pd-menu-desktop > li > .sub-menu {
	left: 50%;
	transform: translate(-50%, var(--pd-dropdown-enter-y)) scale(var(--pd-dropdown-enter-scale));
	transform-origin: top center;
}

.pd-site-header-modern.pd-dropdown-align-center .pd-menu-desktop > li:hover > .sub-menu,
.pd-site-header-modern.pd-dropdown-align-center .pd-menu-desktop > li.is-dropdown-open > .sub-menu,
.pd-site-header-modern.pd-dropdown-align-center .pd-menu-desktop > li:focus-within > .sub-menu {
	transform: translate(-50%, 0) scale(1);
}

.pd-site-header-modern.pd-dropdown-align-right .pd-menu-desktop > li > .sub-menu {
	left: auto;
	right: 0;
	transform-origin: top right;
}

.pd-site-header-modern.pd-dropdown-style-glassmorphism .pd-menu-desktop .sub-menu {
	background: rgba(17, 21, 27, 0.68);
	backdrop-filter: blur(14px);
	border-color: rgba(255, 255, 255, 0.18);
}

.pd-site-header-modern.pd-dropdown-style-mega-menu .pd-menu-desktop > li.pd-mega-menu > .sub-menu,
.pd-site-header-modern.pd-dropdown-style-mega-menu .pd-menu-desktop > li.mega-menu > .sub-menu,
.pd-site-header-modern.pd-dropdown-style-mega-menu .pd-menu-desktop > li.menu-mega > .sub-menu {
	width: min(var(--pd-dropdown-mega-width), calc(100vw - 40px));
	display: grid;
	grid-template-columns: repeat(3, minmax(180px, 1fr));
	gap: 10px 14px;
	padding: 18px;
}

.pd-site-header-modern.pd-dropdown-style-mega-menu .pd-menu-desktop > li.pd-mega-menu > .sub-menu > li > a,
.pd-site-header-modern.pd-dropdown-style-mega-menu .pd-menu-desktop > li.mega-menu > .sub-menu > li > a,
.pd-site-header-modern.pd-dropdown-style-mega-menu .pd-menu-desktop > li.menu-mega > .sub-menu > li > a {
	min-height: 54px;
}

.pd-site-header-modern .pd-menu-desktop .sub-menu .pd-dropdown-cta > a {
	background: var(--pd-orange);
	color: #111;
	font-weight: 700;
}

.pd-site-header-modern .pd-menu-desktop .sub-menu .pd-featured-link > a {
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.06);
}

.pd-site-header-modern .pd-menu-mobile .sub-menu {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0 0 0 14px;
	list-style: none;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-5px);
	transition: max-height 320ms ease, opacity 220ms ease, transform 220ms ease, margin 220ms ease;
}

.pd-site-header-modern .pd-menu-mobile li {
	position: relative;
}

.pd-site-header-modern .pd-menu-mobile li.is-submenu-open > .sub-menu {
	max-height: 700px;
	opacity: 1;
	transform: translateY(0);
	margin-top: 8px;
}

.pd-site-header-modern .pd-menu-mobile .pd-menu-caret {
	display: none;
}

.pd-site-header-modern .pd-mobile-submenu-toggle {
	position: absolute;
	top: 8px;
	right: 0;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}

.pd-site-header-modern .pd-mobile-submenu-toggle::before,
.pd-site-header-modern .pd-mobile-submenu-toggle::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 1.5px;
	background: currentColor;
	transform: translate(-50%, -50%);
	transition: transform 200ms ease, opacity 200ms ease;
}

.pd-site-header-modern .pd-mobile-submenu-toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.pd-site-header-modern .pd-menu-mobile li.is-submenu-open > .pd-mobile-submenu-toggle::after {
	transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
	opacity: 0;
}

.pd-site-header-modern:not(.pd-mobile-submenu-expand) .pd-mobile-submenu-toggle {
	display: none;
}

.pd-site-header-modern:not(.pd-mobile-submenu-expand) .pd-menu-mobile .sub-menu {
	max-height: none;
	opacity: 1;
	transform: none;
	margin-top: 8px;
}

.pd-site-header-modern .pd-header-actions {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 8px 10px;
}

.pd-site-header-modern .pd-header-chip,
.pd-site-header-modern .pd-header-icon,
.pd-site-header-modern .pd-header-social a {
	border-style: solid;
	border-width: var(--pd-opt-btn-bd-width, 1px);
	border-radius: var(--pd-opt-btn-radius, 999px);
	border-color: var(--pd-opt-btn-bd-color, rgba(255, 255, 255, 0.14));
	font-size: var(--pd-opt-btn-font-size, 0.75rem);
	font-weight: var(--pd-opt-btn-font-weight, 400);
	color: var(--pd-opt-btn-text-color, rgba(255, 255, 255, 0.92));
	background: var(--pd-opt-btn-bg-color, rgba(255, 255, 255, 0.05));
	transition: var(--pd-opt-btn-transition, 200ms ease);
	transition-property: background, border-color, color, box-shadow, transform;
}

.pd-site-header-modern .pd-header-chip {
	display: inline-flex;
	align-items: center;
	gap: var(--pd-opt-btn-gap, 6px);
	padding: var(--pd-opt-btn-padding-y, 7px) var(--pd-opt-btn-padding-x, 10px);
	position: relative;
}

.pd-site-header-modern .pd-header-icon {
	min-width: 34px;
	min-height: 34px;
	padding: var(--pd-opt-btn-padding-y, 0px) var(--pd-opt-btn-padding-x, 0px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--pd-opt-btn-gap, 0px);
	aspect-ratio: 1 / 1;
	position: relative;
}

/* Background type -- normal state. */
.pd-site-header-modern.pd-opt-btn-bg-solid .pd-header-chip,
.pd-site-header-modern.pd-opt-btn-bg-solid .pd-header-icon,
.pd-site-header-modern.pd-opt-btn-bg-solid .pd-header-social a {
	background: var(--pd-opt-btn-bg-color);
}

.pd-site-header-modern.pd-opt-btn-bg-gradient .pd-header-chip,
.pd-site-header-modern.pd-opt-btn-bg-gradient .pd-header-icon,
.pd-site-header-modern.pd-opt-btn-bg-gradient .pd-header-social a {
	background: var(--pd-opt-btn-gradient-css);
}

.pd-site-header-modern.pd-opt-btn-bg-glass .pd-header-chip,
.pd-site-header-modern.pd-opt-btn-bg-glass .pd-header-icon,
.pd-site-header-modern.pd-opt-btn-bg-glass .pd-header-social a {
	background: var(--pd-opt-btn-glass-bg);
	backdrop-filter: blur(var(--pd-opt-btn-blur, 0px));
	-webkit-backdrop-filter: blur(var(--pd-opt-btn-blur, 0px));
}

.pd-site-header-modern.pd-opt-btn-bg-transparent .pd-header-chip,
.pd-site-header-modern.pd-opt-btn-bg-transparent .pd-header-icon,
.pd-site-header-modern.pd-opt-btn-bg-transparent .pd-header-social a {
	background: transparent;
}

/* Background type -- hover / focus state. */
.pd-site-header-modern.pd-opt-btn-hover-bg-solid .pd-header-chip:hover,
.pd-site-header-modern.pd-opt-btn-hover-bg-solid .pd-header-icon:hover,
.pd-site-header-modern.pd-opt-btn-hover-bg-solid .pd-header-social a:hover,
.pd-site-header-modern.pd-opt-btn-hover-bg-solid .pd-header-chip:focus-visible,
.pd-site-header-modern.pd-opt-btn-hover-bg-solid .pd-header-icon:focus-visible,
.pd-site-header-modern.pd-opt-btn-hover-bg-solid .pd-header-social a:focus-visible {
	background: var(--pd-opt-btn-hover-bg-color);
	color: var(--pd-opt-btn-hover-text-color);
	border-color: var(--pd-opt-btn-hover-bd-color);
}

.pd-site-header-modern.pd-opt-btn-hover-bg-gradient .pd-header-chip:hover,
.pd-site-header-modern.pd-opt-btn-hover-bg-gradient .pd-header-icon:hover,
.pd-site-header-modern.pd-opt-btn-hover-bg-gradient .pd-header-social a:hover,
.pd-site-header-modern.pd-opt-btn-hover-bg-gradient .pd-header-chip:focus-visible,
.pd-site-header-modern.pd-opt-btn-hover-bg-gradient .pd-header-icon:focus-visible,
.pd-site-header-modern.pd-opt-btn-hover-bg-gradient .pd-header-social a:focus-visible {
	background: var(--pd-opt-btn-hover-gradient-css);
	color: var(--pd-opt-btn-hover-text-color);
	border-color: var(--pd-opt-btn-hover-bd-color);
}

.pd-site-header-modern.pd-opt-btn-hover-bg-glass .pd-header-chip:hover,
.pd-site-header-modern.pd-opt-btn-hover-bg-glass .pd-header-icon:hover,
.pd-site-header-modern.pd-opt-btn-hover-bg-glass .pd-header-social a:hover,
.pd-site-header-modern.pd-opt-btn-hover-bg-glass .pd-header-chip:focus-visible,
.pd-site-header-modern.pd-opt-btn-hover-bg-glass .pd-header-icon:focus-visible,
.pd-site-header-modern.pd-opt-btn-hover-bg-glass .pd-header-social a:focus-visible {
	background: var(--pd-opt-btn-hover-glass-bg);
	backdrop-filter: blur(var(--pd-opt-btn-hover-blur, 8px));
	-webkit-backdrop-filter: blur(var(--pd-opt-btn-hover-blur, 8px));
	color: var(--pd-opt-btn-hover-text-color);
	border-color: var(--pd-opt-btn-hover-bd-color);
}

.pd-site-header-modern.pd-opt-btn-hover-bg-transparent .pd-header-chip:hover,
.pd-site-header-modern.pd-opt-btn-hover-bg-transparent .pd-header-icon:hover,
.pd-site-header-modern.pd-opt-btn-hover-bg-transparent .pd-header-social a:hover,
.pd-site-header-modern.pd-opt-btn-hover-bg-transparent .pd-header-chip:focus-visible,
.pd-site-header-modern.pd-opt-btn-hover-bg-transparent .pd-header-icon:focus-visible,
.pd-site-header-modern.pd-opt-btn-hover-bg-transparent .pd-header-social a:focus-visible {
	background: transparent;
	color: var(--pd-opt-btn-hover-text-color);
	border-color: var(--pd-opt-btn-hover-bd-color);
}

/* Mouse-over animations -- independent of the hover background type above. */
.pd-site-header-modern.pd-opt-btn-anim-lift-up .pd-header-chip:hover,
.pd-site-header-modern.pd-opt-btn-anim-lift-up .pd-header-icon:hover,
.pd-site-header-modern.pd-opt-btn-anim-lift-up .pd-header-social a:hover,
.pd-site-header-modern.pd-opt-btn-anim-lift-up .pd-header-chip:focus-visible,
.pd-site-header-modern.pd-opt-btn-anim-lift-up .pd-header-icon:focus-visible,
.pd-site-header-modern.pd-opt-btn-anim-lift-up .pd-header-social a:focus-visible {
	transform: translateY(-2px);
}

.pd-site-header-modern.pd-opt-btn-anim-scale-up .pd-header-chip:hover,
.pd-site-header-modern.pd-opt-btn-anim-scale-up .pd-header-icon:hover,
.pd-site-header-modern.pd-opt-btn-anim-scale-up .pd-header-social a:hover,
.pd-site-header-modern.pd-opt-btn-anim-scale-up .pd-header-chip:focus-visible,
.pd-site-header-modern.pd-opt-btn-anim-scale-up .pd-header-icon:focus-visible,
.pd-site-header-modern.pd-opt-btn-anim-scale-up .pd-header-social a:focus-visible {
	transform: scale(1.06);
}

.pd-site-header-modern.pd-opt-btn-anim-slide .pd-header-chip:hover,
.pd-site-header-modern.pd-opt-btn-anim-slide .pd-header-icon:hover,
.pd-site-header-modern.pd-opt-btn-anim-slide .pd-header-social a:hover,
.pd-site-header-modern.pd-opt-btn-anim-slide .pd-header-chip:focus-visible,
.pd-site-header-modern.pd-opt-btn-anim-slide .pd-header-icon:focus-visible,
.pd-site-header-modern.pd-opt-btn-anim-slide .pd-header-social a:focus-visible {
	transform: translateX(3px);
}

.pd-site-header-modern.pd-opt-btn-anim-glow .pd-header-chip:hover,
.pd-site-header-modern.pd-opt-btn-anim-glow .pd-header-icon:hover,
.pd-site-header-modern.pd-opt-btn-anim-glow .pd-header-social a:hover,
.pd-site-header-modern.pd-opt-btn-anim-glow .pd-header-chip:focus-visible,
.pd-site-header-modern.pd-opt-btn-anim-glow .pd-header-icon:focus-visible,
.pd-site-header-modern.pd-opt-btn-anim-glow .pd-header-social a:focus-visible {
	box-shadow: 0 0 16px 1px var(--pd-opt-btn-hover-bd-color, var(--pd-opt-btn-bd-color));
}

@keyframes pdOptBtnPulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.06); }
}

.pd-site-header-modern.pd-opt-btn-anim-pulse .pd-header-chip:hover,
.pd-site-header-modern.pd-opt-btn-anim-pulse .pd-header-icon:hover,
.pd-site-header-modern.pd-opt-btn-anim-pulse .pd-header-social a:hover,
.pd-site-header-modern.pd-opt-btn-anim-pulse .pd-header-chip:focus-visible,
.pd-site-header-modern.pd-opt-btn-anim-pulse .pd-header-icon:focus-visible,
.pd-site-header-modern.pd-opt-btn-anim-pulse .pd-header-social a:focus-visible {
	animation: pdOptBtnPulse 1.1s ease-in-out infinite;
}

.pd-site-header-modern.pd-opt-btn-anim-underline .pd-header-chip::after {
	content: '';
	position: absolute;
	left: var(--pd-opt-btn-padding-x, 10px);
	right: var(--pd-opt-btn-padding-x, 10px);
	bottom: 4px;
	height: 2px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--pd-opt-btn-transition, 200ms ease);
}

.pd-site-header-modern.pd-opt-btn-anim-underline .pd-header-chip:hover::after,
.pd-site-header-modern.pd-opt-btn-anim-underline .pd-header-chip:focus-visible::after {
	transform: scaleX(1);
}

.pd-site-header-modern.pd-opt-btn-anim-icon-move-right .pd-header-chip > span:last-child,
.pd-site-header-modern.pd-opt-btn-anim-icon-move-right .pd-header-icon > span:last-child,
.pd-site-header-modern.pd-opt-btn-anim-icon-move-right .pd-header-social a > span:last-child {
	display: inline-block;
	transition: transform var(--pd-opt-btn-transition, 200ms ease);
}

.pd-site-header-modern.pd-opt-btn-anim-icon-move-right .pd-header-chip:hover > span:last-child,
.pd-site-header-modern.pd-opt-btn-anim-icon-move-right .pd-header-icon:hover > span:last-child,
.pd-site-header-modern.pd-opt-btn-anim-icon-move-right .pd-header-social a:hover > span:last-child,
.pd-site-header-modern.pd-opt-btn-anim-icon-move-right .pd-header-chip:focus-visible > span:last-child,
.pd-site-header-modern.pd-opt-btn-anim-icon-move-right .pd-header-icon:focus-visible > span:last-child,
.pd-site-header-modern.pd-opt-btn-anim-icon-move-right .pd-header-social a:focus-visible > span:last-child {
	transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
	.pd-site-header-modern .pd-header-chip,
	.pd-site-header-modern .pd-header-icon,
	.pd-site-header-modern .pd-header-social a,
	.pd-site-header-modern .pd-header-chip::after,
	.pd-site-header-modern .pd-header-chip > span:last-child,
	.pd-site-header-modern .pd-header-icon > span:last-child,
	.pd-site-header-modern .pd-header-social a > span:last-child {
		transition: none !important;
		animation: none !important;
	}
}

.pd-site-header-modern .pd-header-cart-icon {
	position: relative;
	font-size: 1rem;
}

.pd-site-header-modern .pd-header-cart-count {
	position: absolute;
	top: -6px;
	right: -6px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--pd-orange, #f47a00);
	color: #ffffff;
	font-size: 0.62rem;
	font-weight: 700;
	line-height: 1;
}

.pd-site-header-modern .pd-header-cart-count--empty {
	display: none;
}

.pd-site-header-modern .pd-header-social {
	display: inline-flex;
	gap: 6px;
}

/* Box layout only -- border/background/colors/typography come from the
   Optional Header Button Style rules above (this rule sits later in the file
   at equal specificity, so restating them here would override the controls). */
.pd-site-header-modern .pd-header-social a {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.pd-site-header-modern .pd-header-cta {
	min-height: 38px;
	padding-inline: 14px;
	border-radius: 6px;
}

.pd-site-header-modern .pd-header-cta-secondary {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.pd-site-header-modern.pd-site-header--layout-classic-enterprise .pd-primary-nav-desktop {
	justify-content: flex-end;
}

.pd-site-header-modern.pd-site-header--layout-split-navigation .pd-header-main {
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.pd-site-header-modern.pd-site-header--layout-split-navigation .pd-primary-nav-desktop {
	order: -1;
	justify-content: flex-start;
}

.pd-site-header-modern.pd-site-header--layout-split-navigation .pd-header-logo-wrap {
	justify-self: center;
}

.pd-site-header-modern.pd-site-header--layout-centered-corporate .pd-header-main {
	grid-template-columns: 1fr;
	grid-template-areas:
		"logo"
		"nav"
		"actions";
	justify-items: center;
	padding-block: 14px 16px;
}

.pd-site-header-modern.pd-site-header--layout-centered-corporate .pd-header-logo-wrap {
	grid-area: logo;
}

.pd-site-header-modern.pd-site-header--layout-centered-corporate .pd-primary-nav-desktop {
	grid-area: nav;
}

.pd-site-header-modern.pd-site-header--layout-centered-corporate .pd-header-actions {
	grid-area: actions;
	justify-content: center;
}

/* --------------------------------------------------------------------------
   Sticky Navbar (Scroll Effect) -- reference is a SOLID indigo bar at all
   times (bg-indigo-500 is the base class, never removed); isScrolled only
   *adds* a white/blurred look on top. So this preset's background is driven
   independently of the generic Header Surface / Transparent-on-load fields
   via its own ::before override (which the .is-scrolled toggle from the
   existing scroll-state engine in theme.js switches -- no new JS needed).
   -------------------------------------------------------------------------- */

.pd-site-header-modern.pd-site-header--layout-sticky-scroll-navbar::before {
	background: #6366f1 !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}

.pd-site-header-modern.pd-site-header--layout-sticky-scroll-navbar.is-scrolled::before {
	background: rgba(255, 255, 255, 0.8) !important;
	backdrop-filter: blur(var(--pd-header-blur)) !important;
	-webkit-backdrop-filter: blur(var(--pd-header-blur)) !important;
}

.pd-site-header-modern.pd-site-header--layout-sticky-scroll-navbar,
.pd-site-header-modern.pd-site-header--layout-sticky-scroll-navbar .pd-menu-desktop a,
.pd-site-header-modern.pd-site-header--layout-sticky-scroll-navbar .pd-brand-name,
.pd-site-header-modern.pd-site-header--layout-sticky-scroll-navbar .pd-header-chip,
.pd-site-header-modern.pd-site-header--layout-sticky-scroll-navbar .pd-header-icon,
.pd-site-header-modern.pd-site-header--layout-sticky-scroll-navbar .pd-nav-toggle {
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.32);
	transition: color 0.4s ease, border-color 0.4s ease;
}

.pd-site-header-modern.pd-site-header--layout-sticky-scroll-navbar.is-scrolled,
.pd-site-header-modern.pd-site-header--layout-sticky-scroll-navbar.is-scrolled .pd-menu-desktop a,
.pd-site-header-modern.pd-site-header--layout-sticky-scroll-navbar.is-scrolled .pd-brand-name,
.pd-site-header-modern.pd-site-header--layout-sticky-scroll-navbar.is-scrolled .pd-header-chip,
.pd-site-header-modern.pd-site-header--layout-sticky-scroll-navbar.is-scrolled .pd-header-icon,
.pd-site-header-modern.pd-site-header--layout-sticky-scroll-navbar.is-scrolled .pd-nav-toggle {
	color: #1f2937;
	border-color: rgba(31, 41, 55, 0.16);
}

/* --------------------------------------------------------------------------
   Navbar Gradient Colored -- static (non-sticky by default) indigo/violet
   gradient bar with a white pill CTA, matching the reference exactly.
   -------------------------------------------------------------------------- */

.pd-site-header-modern.pd-site-header--layout-gradient-colored-navbar,
.pd-site-header-modern.pd-site-header--layout-gradient-colored-navbar .pd-menu-desktop a,
.pd-site-header-modern.pd-site-header--layout-gradient-colored-navbar .pd-brand-name,
.pd-site-header-modern.pd-site-header--layout-gradient-colored-navbar .pd-header-chip,
.pd-site-header-modern.pd-site-header--layout-gradient-colored-navbar .pd-nav-toggle {
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.3);
}

.pd-site-header-modern.pd-site-header--layout-gradient-colored-navbar .pd-header-cta {
	background: #ffffff;
	color: #374151;
}

.pd-site-header-modern.pd-site-header--layout-gradient-colored-navbar .pd-header-cta:hover {
	background: #f4f4f5;
	color: #374151;
}

/* --------------------------------------------------------------------------
   E-commerce Navbar with Cart Icon -- clean white bar, left-aligned nav
   (the "All Pages" hover dropdown reuses the existing native .sub-menu +
   initDesktopDropdowns() engine, no new markup/JS needed), gradient CTA,
   and the new Cart Icon optional element (see .pd-header-cart-icon below).
   -------------------------------------------------------------------------- */

.pd-site-header-modern.pd-site-header--layout-ecommerce-cart-navbar .pd-primary-nav-desktop {
	justify-content: flex-start;
}

.pd-site-header-modern.pd-site-header--layout-ecommerce-cart-navbar .pd-header-cta {
	background: linear-gradient(90deg, #18181b, #71717a);
	color: #fafafa;
	border-radius: 999px;
}

.pd-site-header-modern.pd-site-header--layout-ecommerce-cart-navbar .pd-header-cta:hover {
	color: #e4e4e7;
}

/* --------------------------------------------------------------------------
   Navbar Light with Shadow -- plain white bar with an always-on soft shadow
   (the shared .is-scrolled shadow only fires for sticky headers, and this
   preset defaults to static/non-sticky, so the shadow needs to be explicit).
   -------------------------------------------------------------------------- */

.pd-site-header-modern.pd-site-header--layout-light-shadow-navbar .pd-header-main {
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

/* --------------------------------------------------------------------------
   Responsive Navigation Bar With Mobile Menu -- desktop nav links sit inside
   a rounded pill-group container with individual pill hover/active states,
   built entirely on the existing flat .pd-menu-desktop markup.
   -------------------------------------------------------------------------- */

.pd-site-header-modern.pd-site-header--layout-responsive-pill-navbar .pd-menu-desktop {
	background: #fafafa;
	border: 1px solid #e4e4e7;
	border-radius: 999px;
	padding: 4px;
}

.pd-site-header-modern.pd-site-header--layout-responsive-pill-navbar .pd-menu-desktop > li > a {
	padding: 8px 16px;
	border-radius: 999px;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

.pd-site-header-modern.pd-site-header--layout-responsive-pill-navbar .pd-menu-desktop > li > a:hover,
.pd-site-header-modern.pd-site-header--layout-responsive-pill-navbar .pd-menu-desktop > li.current-menu-item > a,
.pd-site-header-modern.pd-site-header--layout-responsive-pill-navbar .pd-menu-desktop > li.current_page_item > a {
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
}

.pd-site-header-modern.pd-site-header--layout-responsive-pill-navbar .pd-header-cta {
	background: linear-gradient(90deg, #18181b, #71717a);
	color: #fafafa;
	border-radius: 999px;
}

/* --------------------------------------------------------------------------
   Dark Navbar with Hover Effect -- header shell constrained to a bordered,
   floating capsule (not full width) instead of the usual edge-to-edge bar.
   Defaults header_menu_hover_style to "text-swap" (see below).
   -------------------------------------------------------------------------- */

.pd-site-header-modern.pd-site-header--layout-dark-hover-capsule-navbar .pd-header-shell {
	padding: 14px 20px;
}

.pd-site-header-modern.pd-site-header--layout-dark-hover-capsule-navbar .pd-header-main {
	max-width: 960px;
	margin: 0 auto;
	min-height: 64px;
	padding-inline: 24px;
	border: 1px solid #3f3f46;
	border-radius: 999px;
}

/* --------------------------------------------------------------------------
   Menu hover style: text-swap -- current label slides up out of view while
   a duplicate (CSS-generated from data-label, no markup duplication) slides
   up into view from below. data-label is written by Cessto_Header_Menu_Walker.
   -------------------------------------------------------------------------- */

.pd-site-header-modern.pd-menu-hover-text-swap .pd-menu-desktop .pd-menu-link-text-wrap {
	display: inline-block;
	overflow: hidden;
	position: relative;
}

.pd-site-header-modern.pd-menu-hover-text-swap .pd-menu-link-label {
	display: block;
	transition: transform 0.3s ease;
}

.pd-site-header-modern.pd-menu-hover-text-swap .pd-menu-link-label::after {
	content: attr(data-label);
	position: absolute;
	top: 100%;
	left: 0;
}

.pd-site-header-modern.pd-menu-hover-text-swap .pd-menu-desktop a:hover .pd-menu-link-label,
.pd-site-header-modern.pd-menu-hover-text-swap .pd-menu-desktop a:focus .pd-menu-link-label {
	transform: translateY(-100%);
}

.pd-site-header-modern .pd-mobile-panel {
	position: fixed;
	inset: 0;
	z-index: 140;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 260ms ease, visibility 260ms ease;
}

.pd-site-header-modern .pd-mobile-panel.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.pd-site-header-modern .pd-mobile-panel-backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(4, 5, 8, 0.62);
}

.pd-site-header-modern.pd-mobile-overlay-blur .pd-mobile-panel-backdrop {
	backdrop-filter: blur(8px);
}

.pd-site-header-modern .pd-mobile-panel-inner {
	position: absolute;
	right: 0;
	top: 0;
	width: min(88vw, 400px);
	height: 100%;
	padding: 98px 26px 28px;
	background: rgba(16, 18, 20, 0.96);
	transform: translateX(108%);
	transition: transform 300ms ease;
	overflow-y: auto;
}

.pd-site-header-modern.pd-mobile-style-fullscreen .pd-mobile-panel-inner {
	inset: 0;
	width: 100%;
	height: 100%;
	padding-top: 112px;
	transform: translateY(-6%);
}

.pd-site-header-modern.pd-mobile-style-dropdown .pd-mobile-panel-inner {
	top: 76px;
	right: 18px;
	left: 18px;
	width: auto;
	height: auto;
	max-height: calc(100vh - 96px);
	border-radius: 10px;
	padding-top: 26px;
	transform: translateY(-18px);
}

.pd-site-header-modern .pd-mobile-panel.is-open .pd-mobile-panel-inner {
	transform: translateX(0);
}

.pd-site-header-modern.pd-mobile-style-fullscreen .pd-mobile-panel.is-open .pd-mobile-panel-inner,
.pd-site-header-modern.pd-mobile-style-dropdown .pd-mobile-panel.is-open .pd-mobile-panel-inner {
	transform: translateY(0);
}

.pd-site-header-modern .pd-primary-nav-mobile .pd-menu-mobile {
	display: grid;
	gap: 14px;
}

.pd-site-header-modern .pd-primary-nav-mobile .pd-menu-mobile a {
	color: #fff;
	font-size: 1.1rem;
	font-weight: 640;
	padding-right: 44px;
}

.pd-site-header-modern .pd-mobile-meta {
	margin-top: 22px;
	display: grid;
	gap: 10px;
}

.pd-site-header-modern .pd-mobile-meta a {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.92rem;
}

.pd-site-header-modern .pd-nav-toggle {
	display: none;
}

body.pd-menu-open {
	overflow: hidden;
}

@media (max-width: 1100px) {
	.pd-site-header-modern .pd-header-actions {
		display: none;
	}
}

@media (max-width: 980px) {
	.pd-site-header-modern {
		top: 0;
	}

	.pd-site-header-modern .pd-header-main {
		min-height: 74px;
		grid-template-columns: auto 1fr auto;
		padding: 0;
	}

	.pd-site-header-modern .pd-brand-logo {
		width: min(var(--pd-header-logo-mobile-width), 100%);
		height: auto;
	}

	.pd-site-header-modern .pd-primary-nav-desktop {
		display: none;
	}

	.pd-site-header-modern.pd-site-header--layout-dark-hover-capsule-navbar .pd-header-shell {
		padding: 8px 12px;
	}

	.pd-site-header-modern.pd-site-header--layout-dark-hover-capsule-navbar .pd-header-main {
		max-width: none;
		border-radius: 18px;
		padding-inline: 14px;
	}

	.pd-site-header-modern .pd-nav-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		border: 1px solid rgba(255, 255, 255, 0.22);
		border-radius: 6px;
		background: rgba(255, 255, 255, 0.06);
		color: #fff;
	}

	.pd-site-header-modern.pd-site-header--layout-ecommerce-cart-navbar .pd-nav-toggle,
	.pd-site-header-modern.pd-site-header--layout-light-shadow-navbar .pd-nav-toggle,
	.pd-site-header-modern.pd-site-header--layout-responsive-pill-navbar .pd-nav-toggle {
		color: #1f2937;
		border-color: rgba(15, 23, 42, 0.14);
		background: rgba(15, 23, 42, 0.05);
	}

	.pd-site-header-modern .pd-nav-toggle span:not(.screen-reader-text) {
		transition: transform 220ms ease, opacity 220ms ease;
	}

	.pd-site-header-modern.menu-open .pd-nav-toggle span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.pd-site-header-modern.menu-open .pd-nav-toggle span:nth-child(2) {
		opacity: 0;
	}

	.pd-site-header-modern.menu-open .pd-nav-toggle span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.pd-site-header-modern.pd-site-header--layout-centered-corporate .pd-header-main,
	.pd-site-header-modern.pd-site-header--layout-split-navigation .pd-header-main {
		grid-template-columns: auto 1fr auto;
	}
}

.pd-site-main {
	min-height: 60vh;
    margin-top: -85px;	
}

.pd-hero {
	position: relative;
	min-height: 560px;
	display: grid;
	align-items: center;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.84) 45%, rgba(0, 0, 0, 0.42) 100%),
		var(--pd-hero-image) center right / cover no-repeat,
		#080808;
	color: #fff;
}

.pd-hero::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 130px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
	pointer-events: none;
}

.pd-hero-overlay {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 70px 70px;
	mask-image: linear-gradient(90deg, black, transparent 80%);
	opacity: 0.28;
}

.pd-hero-pattern {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-image: var(--pd-hero-pattern-bg, none);
	background-repeat: repeat;
	opacity: var(--pd-hero-pattern-opacity, 0);
}

.pd-page-hero-normal .pd-hero-pattern {
	z-index: 0;
	background-image: var(--pd-page-hero-pattern-bg, none);
	opacity: var(--pd-page-hero-pattern-opacity, 0);
}

.pd-hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 640px) 1fr;
	padding-block: 96px 82px;
}

.pd-hero-copy h1 {
	max-width: 640px;
	margin: 0;
	font-size: clamp(2.3rem, 4vw, 4.35rem);
	line-height: 1.02;
	font-weight: 650;
	letter-spacing: 0;
}

.pd-hero-copy > p:not(.pd-eyebrow) {
	max-width: 560px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 1.03rem;
}

.pd-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	padding: 5px 9px;
	border-radius: 3px;
	background: var(--pd-orange-soft);
	color: #b35400;
	font-size: 0.7rem;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0;
}

.pd-eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 2px;
	background: currentColor;
}

.pd-eyebrow-dark {
	background: rgba(244, 122, 0, 0.14);
	color: #ff9d32;
}

.pd-action-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.pd-action-row-center {
	justify-content: center;
}

.pd-stat-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(90px, 1fr));
	gap: 20px;
	max-width: 620px;
	margin-top: 50px;
}

.pd-stat {
	position: relative;
	padding-top: 14px;
	color: rgba(255, 255, 255, 0.68);
}

.pd-stat::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 34px;
	height: 2px;
	background: var(--pd-orange);
}

.pd-stat strong {
	display: block;
	color: #fff;
	font-size: 1.45rem;
	font-weight: 650;
	line-height: 1;
}

.pd-stat span {
	display: block;
	margin-top: 8px;
	font-size: 0.76rem;
	line-height: 1.35;
}

.pd-trust-strip {
	padding: 46px 0;
	background: #f0efeb;
	color: #77736b;
	text-align: center;
	font-size: 0.86rem;
}

.pd-section {
	padding: 92px 0;
	background: var(--pd-surface);
}

.pd-muted-section {
	background: var(--pd-bg);
}

.pd-dark-section {
	background: var(--pd-dark);
	color: var(--pd-dark-text);
}

.pd-split {
	display: grid;
	grid-template-columns: minmax(0, 1.03fr) minmax(0, 1fr);
	gap: 46px;
	align-items: center;
}

.pd-image-panel {
	overflow: hidden;
	border-radius: var(--pd-radius);
	background: #ddd;
	box-shadow: var(--pd-shadow);
}

.pd-image-panel img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.pd-copy-panel h2,
.pd-section-heading h2,
.pd-final-cta h2,
.pd-page-hero h1 {
	margin: 0;
	color: var(--pd-ink);
	font-size: clamp(1.85rem, 3vw, 2.7rem);
	line-height: 1.13;
	font-weight: 650;
	letter-spacing: 0;
}

.pd-copy-panel p,
.pd-section-heading p,
.pd-final-cta p {
	color: var(--pd-muted);
}

.pd-copy-panel p {
	margin: 14px 0 0;
}

.pd-feature-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 18px;
	margin-top: 28px;
}

.pd-feature-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	font-weight: 700;
	color: #2b2b2b;
}

.pd-feature-item span,
.pd-contact-list span {
	width: 20px;
	height: 20px;
	display: inline-block;
	flex: 0 0 auto;
	border-radius: 4px;
	background:
		linear-gradient(135deg, transparent 42%, #fff 43%, #fff 57%, transparent 58%),
		var(--pd-orange);
}

.pd-section-heading {
	max-width: 660px;
	margin: 0 auto 42px;
	text-align: center;
}

.pd-section-heading p:not(.pd-eyebrow) {
	margin: 12px auto 0;
	max-width: 560px;
}

.pd-section-heading-dark h2,
.pd-section-heading-dark p:not(.pd-eyebrow) {
	color: var(--pd-dark-text);
}

.pd-section-heading-dark p:not(.pd-eyebrow) {
	color: rgba(246, 242, 235, 0.68);
}

.pd-card-grid {
	display: grid;
	gap: 18px;
}

.pd-card-grid-four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pd-card-grid-three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pd-service-card,
.pd-dark-card,
.pd-testimonial-card,
.pd-post-card {
	min-height: 220px;
	padding: 24px;
	border-radius: var(--pd-radius);
	background: var(--pd-surface);
	border: 1px solid var(--pd-line);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pd-service-card:hover,
.pd-dark-card:hover,
.pd-testimonial-card:hover,
.pd-post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.09);
	border-color: rgba(244, 122, 0, 0.4);
}

.pd-card-icon {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	border-radius: 5px;
	background: var(--pd-orange-soft);
	color: var(--pd-orange);
	font-size: 0.68rem;
	font-weight: 800;
}

.pd-service-card h3,
.pd-dark-card h3,
.pd-operation-card h3,
.pd-process-step h3,
.pd-testimonial-card h3,
.pd-post-card h2 {
	margin: 0;
	color: var(--pd-ink);
	font-size: 1rem;
	line-height: 1.3;
	font-weight: 750;
}

.pd-service-card p,
.pd-dark-card p,
.pd-operation-card p,
.pd-process-step p,
.pd-post-excerpt {
	margin: 10px 0 0;
	color: var(--pd-muted);
	font-size: 0.9rem;
	line-height: 1.55;
}

.pd-service-card a {
	display: inline-flex;
	margin-top: 16px;
	color: var(--pd-orange);
	font-size: 0.82rem;
	font-weight: 800;
}

.pd-sector-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.pd-sector-card {
	position: relative;
	min-height: 190px;
	overflow: hidden;
	border-radius: var(--pd-radius);
	background: #111;
}

.pd-sector-card img {
	width: 100%;
	height: 100%;
	min-height: 190px;
	object-fit: cover;
	transition: transform 400ms ease;
}

.pd-sector-card:hover img {
	transform: scale(1.05);
}

.pd-sector-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.78));
}

.pd-sector-card div {
	position: absolute;
	z-index: 2;
	right: 18px;
	bottom: 16px;
	left: 18px;
}

.pd-sector-card h3 {
	margin: 0;
	color: #fff;
	font-size: 1rem;
}

.pd-dark-card {
	background: var(--pd-dark-2);
	border-color: rgba(255, 255, 255, 0.08);
}

.pd-dark-card .pd-card-icon {
	background: rgba(244, 122, 0, 0.13);
}

.pd-dark-card .pd-card-icon::before {
	content: "";
	width: 13px;
	height: 13px;
	border: 2px solid var(--pd-orange);
	border-radius: 50%;
}

.pd-dark-card h3 {
	color: #fff;
}

.pd-dark-card p {
	color: rgba(246, 242, 235, 0.65);
}

.pd-operation-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.pd-operation-card {
	overflow: hidden;
	border: 1px solid var(--pd-line);
	border-radius: var(--pd-radius);
	background: var(--pd-surface);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.pd-operation-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.pd-operation-card div {
	padding: 18px;
}

.pd-process-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.pd-process-step {
	text-align: center;
}

.pd-process-step span {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 76px;
	height: 76px;
	margin-bottom: 18px;
	border: 2px solid var(--pd-orange);
	border-radius: 50%;
	color: var(--pd-orange);
	font-size: 1.15rem;
	font-weight: 800;
}

.pd-process-step span::after {
	content: "";
	position: absolute;
	top: 10px;
	right: -4px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--pd-orange);
}

.pd-process-step p {
	max-width: 190px;
	margin-inline: auto;
	font-size: 0.82rem;
}

.pd-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.pd-testimonial-card {
	min-height: 260px;
}

.pd-testimonial-card > span {
	display: block;
	color: var(--pd-orange);
	font-size: 3.2rem;
	line-height: 0.8;
	font-weight: 800;
}

.pd-testimonial-card blockquote {
	margin: 18px 0;
	color: #343434;
	font-size: 0.94rem;
}

.pd-testimonial-card cite {
	display: block;
	font-style: normal;
}

.pd-testimonial-card cite strong,
.pd-testimonial-card cite small {
	display: block;
}

.pd-testimonial-card cite small {
	margin-top: 3px;
	color: var(--pd-orange);
	font-size: 0.78rem;
	font-weight: 800;
}

.pd-final-cta {
	position: relative;
	overflow: hidden;
	padding: 72px 0;
	background:
		linear-gradient(90deg, rgba(24, 24, 24, 0.98), rgba(24, 24, 24, 0.86)),
		radial-gradient(circle at 50% 50%, rgba(244, 122, 0, 0.26), transparent 32%),
		var(--pd-dark);
	color: #fff;
	text-align: center;
}

.pd-final-cta h2 {
	color: #fff;
}

.pd-final-cta p {
	max-width: 620px;
	margin: 14px auto 0;
	color: rgba(255, 255, 255, 0.72);
}

.pd-site-footer {
	padding: 56px 0 24px;
	background: #1b1b1b;
	color: rgba(255, 255, 255, 0.72);
}

.pd-footer-grid {
	display: grid;
	grid-template-columns: 1.35fr 0.8fr 1fr 1fr;
	gap: 44px;
}

.pd-footer-brand p {
	max-width: 280px;
	margin: 18px 0 0;
	font-size: 0.9rem;
}

.pd-social-links {
	display: flex;
	gap: 8px;
	margin-top: 20px;
}

.pd-social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 4px;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
}

.pd-site-footer h2 {
	margin: 0 0 16px;
	color: #fff;
	font-size: 0.95rem;
}

.pd-footer-menu,
.pd-footer-list,
.pd-contact-list {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pd-footer-menu a,
.pd-footer-list li,
.pd-contact-list li {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.86rem;
}

.pd-contact-list li {
	display: flex;
	align-items: center;
	gap: 9px;
}

.pd-contact-list span {
	width: 16px;
	height: 16px;
}

.pd-footer-button {
	min-height: 36px;
	margin-top: 18px;
	padding-inline: 18px;
	font-size: 0.78rem;
}

.pd-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 52px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.78rem;
}

.pd-footer-system {
	padding: 0;
	background: transparent;
	color: #cbd5e1;
}

.pd-footer-system .pd-footer-main {
	padding: 72px 0;
	background-color: #111827;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.pd-footer-system.pd-footer-surface-light .pd-footer-main {
	color: #475569;
}

.pd-footer-system.pd-footer-surface-dark .pd-footer-main {
	color: #cbd5e1;
}

.pd-footer-shell {
	position: relative;
	z-index: 1;
}

.pd-footer-block-grid {
	display: grid;
	grid-template-columns: repeat(var(--pd-footer-columns, 4), minmax(0, 1fr));
	gap: var(--pd-footer-gap, 32px);
	align-items: start;
}

.pd-footer-main.pd-footer-layout-minimal-inline {
	padding: 24px 0;
}

.pd-footer-minimal-row,
.pd-footer-app-layout,
.pd-footer-modern-footer-layout,
.pd-footer-modern-dark-layout,
.pd-footer-newsletter-layout,
.pd-footer-newsletter-social-layout,
.pd-footer-contact-rich-top,
.pd-footer-saas-grid {
	display: grid;
	gap: var(--pd-footer-gap, 32px);
	align-items: start;
}

.pd-footer-minimal-row {
	grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.3fr);
	align-items: center;
}

.pd-footer-minimal-links,
.pd-footer-centered-links {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	justify-content: flex-end;
}

.pd-footer-minimal-links .pd-footer-links,
.pd-footer-centered-links .pd-footer-links {
	min-width: 0;
}

.pd-footer-minimal-links .pd-footer-links h2,
.pd-footer-centered-links .pd-footer-links h2 {
	display: none;
}

.pd-footer-minimal-links .pd-footer-menu,
.pd-footer-centered-links .pd-footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}

.pd-footer-newsletter-layout {
	grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.6fr);
}

.pd-footer-newsletter-content {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1.1fr);
	gap: var(--pd-footer-gap, 32px);
	align-items: start;
}

.pd-footer-newsletter-social-layout {
	grid-template-columns: minmax(280px, 1fr) minmax(0, 1fr);
}

.pd-footer-newsletter-social-lead {
	display: grid;
	gap: 28px;
}

.pd-footer-menu-columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: var(--pd-footer-gap, 32px);
	align-items: start;
}

.pd-footer-contact-rich-layout {
	display: grid;
	gap: 40px;
}

.pd-footer-contact-rich-top {
	grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.25fr);
}

.pd-footer-contact-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	padding-top: 32px;
	border-top: 1px solid rgba(148, 163, 184, 0.28);
}

.pd-footer-contact-card {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	min-width: 0;
}

.pd-footer-contact-card > span {
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	border: 1px solid rgba(148, 163, 184, 0.35);
	border-radius: 8px;
	background: rgba(148, 163, 184, 0.12);
}

.pd-footer-contact-card strong {
	display: block;
	margin-bottom: 4px;
	color: inherit;
	font-size: 0.92rem;
	font-weight: 800;
}

.pd-footer-contact-card p,
.pd-footer-contact-card a {
	margin: 0;
	color: inherit;
	font-size: 0.9rem;
	line-height: 1.6;
	opacity: 0.78;
	text-decoration: none;
}

.pd-footer-contact-card-cta {
	align-items: center;
}

.pd-footer-centered-layout {
	display: grid;
	gap: 24px;
	justify-items: center;
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.pd-footer-centered-layout .pd-footer-company {
	max-width: 640px;
}

.pd-footer-centered-layout .pd-footer-brand-link,
.pd-footer-centered-layout .pd-footer-social-links {
	justify-content: center;
}

.pd-footer-centered-layout .pd-footer-company p {
	margin-right: auto;
	margin-left: auto;
}

.pd-footer-saas-panel {
	overflow: hidden;
	padding: clamp(32px, 5vw, 56px) clamp(22px, 5vw, 64px) 0;
	border-radius: 28px 28px 0 0;
	background: #fff;
	color: #262626;
}

.pd-footer-template-dark-gradient-saas .pd-footer-saas-panel {
	background: #131314;
	color: #fff;
}

.pd-footer-template-light-minimal-saas .pd-footer-main,
.pd-footer-template-dark-gradient-saas .pd-footer-main {
	padding-top: 72px;
	padding-bottom: 0;
}

.pd-footer-saas-grid {
	grid-template-columns: minmax(280px, 1fr) minmax(0, 1fr);
}

.pd-footer-saas-wordmark {
	margin-top: clamp(34px, 6vw, 72px);
	color: transparent;
	font-size: clamp(3rem, 14vw, 12rem);
	font-weight: 900;
	line-height: 0.74;
	text-align: center;
	-webkit-text-stroke: 1px rgba(148, 163, 184, 0.55);
}

.pd-footer-app-layout {
	grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.35fr);
}

.pd-footer-app-brand {
	display: grid;
	gap: 22px;
}

.pd-footer-app-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.pd-footer-app-buttons a {
	display: inline-flex;
	flex-direction: column;
	min-width: 148px;
	padding: 9px 14px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 6px;
	color: inherit;
	line-height: 1.2;
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease;
}

.pd-footer-app-buttons a:hover,
.pd-footer-app-buttons a:focus {
	border-color: currentColor;
	transform: translateY(-1px);
}

.pd-footer-app-buttons span {
	font-size: 0.68rem;
	opacity: 0.72;
}

.pd-footer-app-buttons strong {
	font-size: 0.9rem;
	font-weight: 850;
}

.pd-footer-modern-dark-layout {
	grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.75fr);
}

.pd-footer-modern-dark-links {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(28px, 5vw, 80px);
}

.pd-footer-modern-dark-brand {
	text-align: right;
}

.pd-footer-modern-dark-brand .pd-footer-brand-link,
.pd-footer-modern-dark-brand .pd-footer-social-links {
	justify-content: flex-end;
}

.pd-footer-modern-footer-layout {
	grid-template-columns: minmax(280px, 1fr) minmax(0, 1.15fr);
}

.pd-footer-extra-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--pd-footer-gap, 32px);
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.pd-footer-block {
	min-width: 0;
}

.pd-footer-company.is-colspan {
	grid-column: span 2;
}

.pd-footer-brand-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: inherit;
	text-decoration: none;
}

.pd-footer-brand-link img {
	display: block;
	max-width: min(220px, 100%);
	max-height: 70px;
	object-fit: contain;
}

.pd-footer-brand-link strong {
	color: inherit;
	font-size: 1.08rem;
	font-weight: 850;
}

.pd-footer-block p {
	margin: 14px 0 0;
	color: inherit;
	font-size: 0.92rem;
	line-height: 1.7;
	opacity: 0.78;
}

.pd-footer-system .pd-footer-block h2 {
	margin: 0 0 16px;
	color: inherit;
	font-size: 0.92rem;
	font-weight: 850;
	letter-spacing: 0;
}

.pd-footer-system.pd-footer-surface-light .pd-footer-block h2,
.pd-footer-system.pd-footer-surface-light .pd-footer-brand-link strong {
	color: #111827;
}

.pd-footer-system.pd-footer-surface-dark .pd-footer-block h2,
.pd-footer-system.pd-footer-surface-dark .pd-footer-brand-link strong {
	color: #fff;
}

.pd-footer-system .pd-footer-saas-panel .pd-footer-block h2,
.pd-footer-system .pd-footer-saas-panel .pd-footer-brand-link strong,
.pd-footer-system .pd-footer-contact-card strong {
	color: inherit;
}

.pd-footer-system .pd-footer-menu,
.pd-footer-system .pd-contact-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pd-footer-system .pd-footer-menu a,
.pd-footer-system .pd-contact-list a,
.pd-footer-system .pd-contact-list li {
	color: inherit;
	font-size: 0.9rem;
	line-height: 1.55;
	opacity: 0.78;
	text-decoration: none;
	transition: color 180ms ease, opacity 180ms ease;
}

.pd-footer-system .pd-footer-menu a:hover,
.pd-footer-system .pd-footer-menu a:focus,
.pd-footer-system .pd-contact-list a:hover,
.pd-footer-system .pd-contact-list a:focus {
	color: #f97316;
	opacity: 1;
}

.pd-footer-system .pd-contact-list li {
	align-items: flex-start;
}

.pd-footer-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}

.pd-footer-social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid currentColor;
	border-radius: 6px;
	color: inherit;
	font-size: 0.72rem;
	font-weight: 850;
	line-height: 1;
	opacity: 0.72;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.pd-footer-social-links a:hover,
.pd-footer-social-links a:focus {
	background: #f97316;
	border-color: #f97316;
	color: #111827;
	opacity: 1;
	transform: translateY(-1px);
}

.pd-footer-newsletter form {
	display: flex;
	gap: 8px;
	margin-top: 18px;
}

.pd-footer-newsletter input {
	min-width: 0;
	width: 100%;
	height: 42px;
	border: 1px solid rgba(148, 163, 184, 0.34);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.92);
	color: #111827;
	padding: 0 12px;
}

.pd-footer-newsletter button,
.pd-footer-cta-block .pd-footer-button,
.pd-footer-contact .pd-footer-button,
.pd-footer-contact-card .pd-footer-button {
	flex: 0 0 auto;
	min-height: 42px;
	margin-top: 0;
	border: 0;
	border-radius: 6px;
	background: #f97316;
	color: #111827;
	font-size: 0.8rem;
	font-weight: 850;
	padding: 0 16px;
	text-decoration: none;
}

.pd-footer-contact .pd-footer-button,
.pd-footer-cta-block .pd-footer-button,
.pd-footer-contact-card .pd-footer-button {
	display: inline-flex;
	align-items: center;
	margin-top: 18px;
}

.pd-footer-contact-card .pd-footer-button {
	margin-top: 0;
}

.pd-footer-facebook iframe,
.pd-footer-map iframe {
	display: block;
	width: 100%;
	max-width: 100%;
	margin-top: 16px;
	border: 0;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.14);
}

.pd-footer-facebook iframe {
	max-width: 340px;
}

.pd-footer-bottom-bar {
	background: var(--pd-footer-bottom-bg, #0f172a);
	color: var(--pd-footer-bottom-text, #cbd5e1);
	font-size: var(--pd-footer-bottom-font, 13px);
	opacity: var(--pd-footer-bottom-opacity, 1);
}

.pd-footer-bottom-bar.has-border {
	border-top: 1px solid var(--pd-footer-bottom-border, #334155);
}

.pd-footer-bottom-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	gap: 20px;
	align-items: center;
	padding-top: var(--pd-footer-bottom-padding, 18px);
	padding-bottom: var(--pd-footer-bottom-padding, 18px);
}

.pd-footer-bottom-section {
	min-width: 0;
	line-height: 1.55;
}

.pd-footer-bottom-powered {
	display: flex;
	justify-content: center;
}

.pd-footer-bottom-powered-left {
	justify-content: flex-start;
}

.pd-footer-bottom-powered-right {
	justify-content: flex-end;
}

.pd-footer-bottom-powered a,
.pd-footer-powered-static {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--pd-footer-bottom-link, #f8fafc);
	text-decoration: none;
}

.pd-footer-bottom-powered img {
	display: block;
	height: auto;
	max-height: 32px;
	object-fit: contain;
}

.pd-footer-bottom-legal {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.pd-footer-bottom-legal a {
	position: relative;
	color: var(--pd-footer-bottom-link, #f8fafc);
	text-decoration: none;
	transition: color 180ms ease;
}

.pd-footer-bottom-legal a:hover,
.pd-footer-bottom-legal a:focus,
.pd-footer-bottom-powered a:hover,
.pd-footer-bottom-powered a:focus {
	color: var(--pd-footer-bottom-link-hover, #f97316);
}

.pd-footer-bottom-bar.has-dividers .pd-footer-bottom-legal a + a {
	margin-left: 10px;
}

.pd-footer-bottom-bar.has-dividers .pd-footer-bottom-legal a + a::before {
	position: absolute;
	left: -10px;
	color: var(--pd-footer-bottom-divider, #475569);
	content: "|";
}

.pd-footer-bottom-layout-centered-inline .pd-footer-bottom-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
}

.pd-footer-bottom-layout-centered-inline .pd-footer-bottom-legal,
.pd-footer-bottom-layout-centered-inline .pd-footer-bottom-powered {
	justify-content: center;
}

.pd-footer-bottom-layout-stacked .pd-footer-bottom-inner {
	display: grid;
	grid-template-columns: 1fr;
	text-align: center;
}

.pd-footer-bottom-layout-stacked .pd-footer-bottom-legal,
.pd-footer-bottom-layout-stacked .pd-footer-bottom-powered {
	justify-content: center;
}

.pd-page-hero {
	padding: 96px 0 70px;
	background: var(--pd-dark);
	color: #fff;
}

.pd-page-hero h1 {
	color: #fff;
}

.pd-page-hero-normal {
	position: relative;
	min-height: var(--pd-page-hero-height, 420px);
	padding: 0;
	overflow: hidden;
	background-color: var(--pd-page-hero-bg-color, var(--pd-dark));
	background-image: var(--pd-page-hero-bg-image, none);
	background-position: var(--pd-page-hero-bg-position, center center);
	background-repeat: var(--pd-page-hero-bg-repeat, no-repeat);
	background-size: var(--pd-page-hero-bg-size, cover);
	color: #fff;
}

.pd-page-hero-normal::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--pd-page-hero-overlay, rgba(0, 0, 0, 0.58));
	content: "";
	pointer-events: none;
}

.pd-page-hero-normal.no-overlay::before {
	display: none;
}

.pd-page-hero-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	min-height: var(--pd-page-hero-height, 420px);
	padding-top: var(--pd-page-hero-content-padding-y, 24px);
	padding-bottom: var(--pd-page-hero-content-padding-y, 24px);
}

.pd-page-hero-normal.is-vertical-top .pd-page-hero-inner {
	justify-content: flex-start;
}

.pd-page-hero-normal.is-vertical-center .pd-page-hero-inner {
	justify-content: center;
}

.pd-page-hero-normal.is-vertical-bottom .pd-page-hero-inner {
	justify-content: flex-end;
}

.pd-page-hero-normal.is-horizontal-left .pd-page-hero-inner {
	align-items: flex-start;
}

.pd-page-hero-normal.is-horizontal-center .pd-page-hero-inner {
	align-items: center;
}

.pd-page-hero-normal.is-horizontal-right .pd-page-hero-inner {
	align-items: flex-end;
}

.pd-page-hero-normal.is-text-left {
	text-align: left;
}

.pd-page-hero-normal.is-text-center {
	text-align: center;
}

.pd-page-hero-normal.is-text-right {
	text-align: right;
}

.pd-page-hero-content {
	width: min(100%, var(--pd-page-hero-content-max, 760px));
	padding-right: var(--pd-page-hero-content-padding-x, 0);
	padding-left: var(--pd-page-hero-content-padding-x, 0);
}

.pd-page-hero-normal h1 {
	max-width: 100%;
	margin: 0;
	color: var(--pd-page-hero-heading-color, #fff);
	font-size: var(--pd-page-hero-heading-size, 58px);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.02;
	text-wrap: balance;
}

.pd-page-hero-normal p {
	max-width: 760px;
	margin: 18px 0 0;
	color: var(--pd-page-hero-subheading-color, #e5e7eb);
	font-size: var(--pd-page-hero-subheading-size, 18px);
	line-height: 1.7;
}

.pd-page-hero-normal.is-text-center p {
	margin-right: auto;
	margin-left: auto;
}

.pd-page-hero-normal.is-text-right p {
	margin-left: auto;
}

.pd-page-hero-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	margin-top: 26px;
	border: 1px solid transparent;
	border-radius: 6px;
	background: var(--pd-page-hero-button-bg, var(--pd-orange));
	color: var(--pd-page-hero-button-text, #111827);
	font-size: 0.88rem;
	font-weight: 850;
	line-height: 1;
	padding: 0 20px;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.pd-page-hero-button:hover,
.pd-page-hero-button:focus {
	background: var(--pd-page-hero-button-hover, #ffad55);
	color: var(--pd-page-hero-button-text, #111827);
	transform: translateY(-1px);
}

.pd-page-hero-button-outline {
	border-color: var(--pd-page-hero-button-bg, var(--pd-orange));
	background: transparent;
	color: var(--pd-page-hero-button-bg, var(--pd-orange));
}

.pd-page-hero-button-outline:hover,
.pd-page-hero-button-outline:focus {
	border-color: var(--pd-page-hero-button-hover, #ffad55);
	background: var(--pd-page-hero-button-hover, #ffad55);
	color: var(--pd-page-hero-button-text, #111827);
}

.pd-page-hero-button-ghost {
	border-color: rgba(255, 255, 255, 0.26);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.pd-page-hero-button-ghost:hover,
.pd-page-hero-button-ghost:focus {
	border-color: rgba(255, 255, 255, 0.44);
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
}

.pd-dynamic-hero {
	position: relative;
	min-height: var(--pd-dynamic-hero-height, 360px);
	padding: 0;
	overflow: hidden;
	background-color: var(--pd-dynamic-hero-bg-color, var(--pd-dark));
	background-image: var(--pd-dynamic-hero-bg-image, none);
	background-position: var(--pd-dynamic-hero-bg-position, center center);
	background-repeat: var(--pd-dynamic-hero-bg-repeat, no-repeat);
	background-size: var(--pd-dynamic-hero-bg-size, cover);
	color: #fff;
}

.pd-dynamic-hero::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--pd-dynamic-hero-overlay, rgba(0, 0, 0, 0.55));
	content: "";
	pointer-events: none;
}

/* Pattern Overlay layer (Post Hero). Rendered after the ::before overlay in
   paint order so the pattern sits on top of the color/gradient overlay but
   below the hero content (z-index 1 on .pd-dynamic-hero-inner). */
.pd-dynamic-hero .pd-dynamic-hero-pattern {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image: var(--pd-dynamic-hero-pattern-bg, none);
	background-repeat: repeat;
	opacity: var(--pd-dynamic-hero-pattern-opacity, 0);
}

.pd-dynamic-hero-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	min-height: var(--pd-dynamic-hero-height, 360px);
	padding-top: var(--pd-dynamic-hero-padding-y, 20px);
	padding-bottom: var(--pd-dynamic-hero-padding-y, 20px);
}

.pd-dynamic-hero.is-vertical-top .pd-dynamic-hero-inner {
	justify-content: flex-start;
}

.pd-dynamic-hero.is-vertical-center .pd-dynamic-hero-inner {
	justify-content: center;
}

.pd-dynamic-hero.is-vertical-bottom .pd-dynamic-hero-inner {
	justify-content: flex-end;
}

.pd-dynamic-hero.is-horizontal-left .pd-dynamic-hero-inner {
	align-items: flex-start;
}

.pd-dynamic-hero.is-horizontal-center .pd-dynamic-hero-inner {
	align-items: center;
}

.pd-dynamic-hero.is-horizontal-right .pd-dynamic-hero-inner {
	align-items: flex-end;
}

.pd-dynamic-hero.is-text-left {
	text-align: left;
}

.pd-dynamic-hero.is-text-center {
	text-align: center;
}

.pd-dynamic-hero.is-text-right {
	text-align: right;
}

.pd-dynamic-hero-content {
	width: min(100%, var(--pd-dynamic-hero-content-max, 760px));
	padding-right: var(--pd-dynamic-hero-padding-x, 0);
	padding-left: var(--pd-dynamic-hero-padding-x, 0);
}

.pd-dynamic-hero-content h1 {
	margin: 0;
	color: var(--pd-dynamic-hero-heading-color, #fff);
	font-size: var(--pd-dynamic-hero-heading-size-desktop, 52px);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.04;
	text-wrap: balance;
}

.pd-dynamic-hero-content p {
	margin: 18px 0 0;
	max-width: 760px;
	color: var(--pd-dynamic-hero-subheading-color, #e5e7eb);
	font-size: var(--pd-dynamic-hero-subheading-size, 18px);
	line-height: 1.7;
}

.pd-dynamic-hero.is-text-center .pd-dynamic-hero-content p {
	margin-right: auto;
	margin-left: auto;
}

.pd-dynamic-hero.is-text-right .pd-dynamic-hero-content p {
	margin-left: auto;
}

.pd-single-post-page {
	background: var(--pd-bg);
}

.pd-post-content-section {
	padding-top: var(--pd-post-content-spacing-top, 52px);
	padding-bottom: var(--pd-post-content-spacing-bottom, 62px);
}

.pd-post-content-inner {
	max-width: var(--pd-post-content-width, 860px);
}

.pd-post-content-section .pd-content {
	max-width: 100%;
	font-size: var(--pd-post-content-font-size, 18px);
	line-height: var(--pd-post-content-line-height, 1.72);
}

.pd-post-meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}

.pd-post-meta-row li {
	position: relative;
	color: var(--pd-muted);
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0;
}

.pd-post-meta-row li + li {
	padding-left: 10px;
}

.pd-post-meta-row li + li::before {
	position: absolute;
	left: 0;
	color: #94a3b8;
	content: "/";
}

.pd-post-inline-featured {
	margin-bottom: 24px;
}

.pd-post-inline-featured img {
	width: 100%;
	border-radius: 8px;
}

.pd-post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 26px;
}

.pd-post-tags a {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	border-radius: 999px;
	background: #e2e8f0;
	color: #334155;
	font-size: 0.78rem;
	font-weight: 700;
	text-decoration: none;
}

.pd-post-share {
	padding: 18px 0 8px;
}

.pd-post-share h2 {
	margin: 0 0 14px;
	font-size: 1.15rem;
	font-weight: 850;
}

.pd-post-share-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pd-post-share.is-align-center .pd-post-share-links {
	justify-content: center;
}

.pd-post-share.is-align-right .pd-post-share-links {
	justify-content: flex-end;
}

.pd-share-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 36px;
	padding: 0 12px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background: #fff;
	color: #1e293b;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0;
	text-decoration: none;
	cursor: pointer;
	transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.pd-share-link:hover,
.pd-share-link:focus {
	border-color: var(--pd-orange);
	color: #111827;
	transform: translateY(-1px);
}

.pd-share-symbol {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	font-size: 0.68rem;
	font-weight: 850;
	line-height: 1;
	text-transform: uppercase;
}

.pd-post-share.is-icons-only .pd-share-label {
	display: none;
}

.pd-post-share.is-circle .pd-share-link,
.pd-post-share.is-square .pd-share-link {
	justify-content: center;
	width: 38px;
	min-width: 38px;
	padding: 0;
}

.pd-post-share.is-circle .pd-share-link {
	border-radius: 999px;
}

.pd-post-share.is-circle .pd-share-label,
.pd-post-share.is-square .pd-share-label {
	display: none;
}

.pd-post-share.is-minimal-inline .pd-share-link {
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.pd-post-share.is-minimal-inline .pd-share-symbol {
	opacity: 0.8;
}

.pd-post-related {
	padding: 26px 0 10px;
}

.pd-post-related-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 16px;
}

.pd-post-related-head h2 {
	margin: 0;
	font-size: 1.22rem;
	font-weight: 850;
}

.pd-post-related-arrows {
	display: inline-flex;
	gap: 6px;
}

.pd-related-arrow {
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background: #fff;
	color: #0f172a;
	cursor: pointer;
}

.pd-related-arrow::before {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 900;
	line-height: 1;
	content: ">";
}

[data-related-prev]::before {
	content: "<";
}

.pd-post-related-scroll {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - (var(--pd-related-desktop, 5) - 1) * 18px) / var(--pd-related-desktop, 5));
	gap: 18px;
	overflow-x: auto;
	scrollbar-width: thin;
	scroll-snap-type: x mandatory;
	padding-bottom: 8px;
}

.pd-post-related-card {
	min-width: 0;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	scroll-snap-align: start;
}

.pd-post-related-thumb {
	display: block;
	background: #e2e8f0;
	aspect-ratio: 16 / 9;
}

.pd-post-related-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pd-post-related-thumb span {
	display: block;
	width: 100%;
	height: 100%;
	background: #cbd5e1;
}

.pd-post-related-body {
	padding: 14px;
}

.pd-related-category {
	margin: 0 0 8px;
	color: #f97316;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
}

.pd-post-related-body h3 {
	margin: 0;
	font-size: 1rem;
	line-height: 1.4;
}

.pd-post-related-body h3 a {
	color: #0f172a;
	text-decoration: none;
}

.pd-related-date {
	margin: 8px 0 0;
	color: #64748b;
	font-size: 0.76rem;
	font-weight: 700;
}

.pd-post-related-body p {
	margin: 10px 0 0;
	color: #475569;
	font-size: 0.84rem;
	line-height: 1.6;
}

.pd-related-read-more {
	display: inline-flex;
	margin-top: 12px;
	color: var(--pd-orange);
	font-size: 0.78rem;
	font-weight: 800;
	text-decoration: none;
}

.pd-post-related-dots {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
	margin-top: 14px;
}

.pd-post-related-dots button {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #cbd5e1;
	cursor: pointer;
}

.pd-post-related-dots button.is-active {
	background: var(--pd-orange);
}

.pd-post-cta,
.pd-blog-cta {
	margin-top: 20px;
	padding: 42px 0;
	background: var(--pd-post-cta-bg, #0f172a);
	color: #f8fafc;
}

.pd-post-cta h2,
.pd-blog-cta h2 {
	margin: 0;
	font-size: 1.85rem;
	font-weight: 850;
	line-height: 1.22;
	color: var(--pd-post-cta-heading, inherit);
}

.pd-post-cta p,
.pd-blog-cta p {
	margin: 14px 0 0;
	max-width: 780px;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--pd-post-cta-desc, rgba(248, 250, 252, 0.9));
}

/* Fallbacks mirror .pd-button-primary / .pd-button:hover exactly, so a CTA
   whose style string doesn't emit these vars (e.g. the Blog CTA) renders
   identically to before these controls existed. */
.pd-post-cta .pd-button,
.pd-blog-cta .pd-button {
	margin-top: 22px;
	background: var(--pd-post-cta-btn-bg, var(--pd-global-btn-primary-bg, var(--pd-orange)));
	color: var(--pd-post-cta-btn-text, var(--pd-global-btn-primary-text, #151515));
}

.pd-post-cta .pd-button:hover,
.pd-post-cta .pd-button:focus-visible,
.pd-blog-cta .pd-button:hover,
.pd-blog-cta .pd-button:focus-visible {
	background: var(--pd-post-cta-btn-hover-bg, var(--pd-global-btn-primary-hover-bg, #fb923c));
	color: var(--pd-post-cta-btn-hover-text, var(--pd-global-btn-primary-hover-text, #151515));
}

.pd-post-cta.align-center,
.pd-blog-cta.align-center {
	text-align: center;
}

.pd-post-cta.align-center p,
.pd-blog-cta.align-center p {
	margin-right: auto;
	margin-left: auto;
}

.pd-post-cta.align-right,
.pd-blog-cta.align-right {
	text-align: right;
}

.pd-post-cta.align-right p,
.pd-blog-cta.align-right p {
	margin-left: auto;
}

.pd-post-cta.style-card .pd-container,
.pd-post-cta.style-gradient-banner .pd-container {
	padding: 28px;
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.46);
}

.pd-post-cta.style-minimal {
	background: transparent;
	color: #0f172a;
}

.pd-post-cta.style-minimal p {
	color: #334155;
}

.pd-post-cta.style-full-width {
	border-top: 1px solid rgba(148, 163, 184, 0.3);
	border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.pd-blog-archive-section {
	padding: 40px 0 12px;
}

.pd-blog-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 22px;
}

.pd-blog-filters.align-center {
	justify-content: center;
}

.pd-blog-filters.align-right {
	justify-content: flex-end;
}

.pd-blog-filters select,
.pd-blog-filters input,
.pd-blog-filters button {
	height: 38px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background: #fff;
	color: #0f172a;
	padding: 0 12px;
}

.pd-blog-filters button {
	font-weight: 700;
	cursor: pointer;
}

.pd-blog-listing {
	display: grid;
	grid-template-columns: repeat(var(--pd-blog-columns-desktop, 3), minmax(0, 1fr));
	gap: 22px;
}

.pd-blog-listing.has-border .pd-blog-card {
	border: 1px solid #dbe4ee;
}

.pd-blog-listing.no-border .pd-blog-card {
	border: 0;
}

.pd-blog-listing.has-shadow .pd-blog-card {
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.pd-blog-listing .pd-blog-card {
	min-width: 0;
	border-radius: var(--pd-blog-card-radius, 8px);
	background: var(--pd-blog-card-bg, #fff);
	overflow: hidden;
}

.pd-blog-card-image {
	display: block;
	background: #e2e8f0;
	aspect-ratio: var(--pd-blog-image-ratio, 16/9);
}

.pd-blog-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pd-blog-card-image span {
	display: block;
	width: 100%;
	height: 100%;
	background: #cbd5e1;
}

.pd-blog-card.image-pos-left,
.pd-blog-card.image-pos-right {
	display: grid;
	grid-template-columns: minmax(180px, 34%) minmax(0, 1fr);
}

.pd-blog-card.image-pos-right .pd-blog-card-image {
	order: 2;
}

.pd-blog-card-body {
	padding: var(--pd-blog-card-padding, 22px);
	text-align: inherit;
}

.pd-blog-card.align-center .pd-blog-card-body {
	text-align: center;
}

.pd-blog-card.align-right .pd-blog-card-body {
	text-align: right;
}

.pd-blog-card.card-style-minimal {
	background: transparent;
	border: 0;
	box-shadow: none;
}

.pd-blog-card.card-style-shadow {
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.pd-blog-card.card-style-border {
	border: 1px solid #dbe4ee;
}

.pd-blog-card-category {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 0 9px;
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0;
	text-transform: uppercase;
}

.pd-blog-card-category.badge-pill {
	background: #ffedd5;
	color: #c2410c;
}

.pd-blog-card-category.badge-solid {
	background: #f97316;
	color: #fff;
}

.pd-blog-card-category.badge-outline {
	border: 1px solid #f97316;
	color: #c2410c;
}

.pd-blog-card-category.badge-minimal {
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: #c2410c;
}

.pd-blog-card-meta {
	margin: 9px 0 0;
	color: #64748b;
	font-size: 0.74rem;
	font-weight: 700;
}

.pd-blog-card h2 {
	margin: 10px 0 0;
	font-size: 1.16rem;
	line-height: 1.4;
}

.pd-blog-card h2 a {
	color: #0f172a;
	text-decoration: none;
}

.pd-blog-card-excerpt {
	margin: 12px 0 0;
	color: #475569;
	font-size: 0.92rem;
	line-height: 1.7;
}

.pd-blog-read-more {
	display: inline-flex;
	margin-top: 14px;
	font-size: 0.82rem;
	font-weight: 800;
	text-decoration: none;
}

.pd-blog-read-more.style-link {
	color: var(--pd-orange);
}

.pd-blog-read-more.style-button,
.pd-blog-read-more.style-ghost {
	min-height: 36px;
	padding: 0 12px;
	border-radius: 6px;
}

.pd-blog-read-more.style-button {
	background: var(--pd-orange);
	color: #111827;
}

.pd-blog-read-more.style-ghost {
	border: 1px solid #cbd5e1;
	color: #0f172a;
}

.pd-blog-card.card-style-image-overlay {
	position: relative;
	color: #fff;
}

.pd-blog-card.card-style-image-overlay .pd-blog-card-image {
	aspect-ratio: 16 / 10;
}

.pd-blog-card.card-style-image-overlay .pd-blog-card-body {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.2));
}

.pd-blog-card.card-style-image-overlay h2 a,
.pd-blog-card.card-style-image-overlay .pd-blog-card-meta,
.pd-blog-card.card-style-image-overlay .pd-blog-card-excerpt {
	color: #f8fafc;
}

.pd-blog-listing.layout-modern-card-grid .pd-blog-card {
	border-radius: 12px;
}

.pd-blog-listing.layout-image-overlay-cards .pd-blog-card {
	position: relative;
	color: #fff;
}

.pd-blog-listing.layout-image-overlay-cards .pd-blog-card .pd-blog-card-body {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.24));
}

.pd-blog-listing.layout-image-overlay-cards .pd-blog-card h2 a,
.pd-blog-listing.layout-image-overlay-cards .pd-blog-card .pd-blog-card-meta,
.pd-blog-listing.layout-image-overlay-cards .pd-blog-card .pd-blog-card-excerpt {
	color: #f8fafc;
}

.pd-blog-listing.layout-horizontal-media-cards {
	grid-template-columns: 1fr;
}

.pd-blog-listing.layout-horizontal-media-cards .pd-blog-card {
	display: grid;
	grid-template-columns: minmax(180px, 35%) minmax(0, 1fr);
}

.pd-blog-listing.layout-horizontal-media-cards .pd-blog-card-image {
	height: 100%;
	aspect-ratio: auto;
}

.pd-blog-listing.layout-featured-plus-grid .pd-blog-card.is-first,
.pd-blog-listing.layout-magazine .pd-blog-card.is-first,
.pd-blog-listing.layout-large-first-post .pd-blog-card.is-first {
	grid-column: span 2;
}

.pd-blog-listing.layout-bento-grid .pd-blog-card:nth-child(1),
.pd-blog-listing.layout-bento-grid .pd-blog-card:nth-child(4) {
	grid-column: span 2;
}

.pd-blog-listing.layout-minimal-editorial-list {
	grid-template-columns: 1fr;
}

.pd-blog-listing.layout-minimal-editorial-list .pd-blog-card {
	background: transparent;
	border: 0;
	border-bottom: 1px solid #dbe4ee;
	border-radius: 0;
}

.pd-blog-listing.layout-minimal-editorial-list .pd-blog-card-body {
	padding-right: 0;
	padding-left: 0;
}

.pd-blog-listing.layout-sidebar-blog {
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.pd-blog-listing.layout-two-column-editorial {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pd-blog-listing.layout-compact-news .pd-blog-card-body {
	padding: 14px 16px;
}

.pd-blog-listing.layout-compact-news .pd-blog-card h2 {
	font-size: 1.02rem;
}

.pd-blog-listing.layout-category-sections .pd-blog-card-category {
	font-size: 0.66rem;
}

.pd-blog-listing.layout-masonry {
	display: block;
	column-count: var(--pd-blog-columns-desktop, 3);
	column-gap: 22px;
}

.pd-blog-listing.layout-masonry .pd-blog-card {
	display: inline-block;
	width: 100%;
	margin: 0 0 22px;
}

.pd-blog-listing.layout-alternating-media {
	grid-template-columns: 1fr;
}

.pd-blog-listing.layout-alternating-media .pd-blog-card {
	display: grid;
	grid-template-columns: minmax(220px, 36%) minmax(0, 1fr);
}

.pd-blog-listing.layout-alternating-media .pd-blog-card:nth-child(even) .pd-blog-card-image {
	order: 2;
}

.pd-blog-pagination {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

.pd-blog-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pd-blog-pagination a,
.pd-blog-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	padding: 0 10px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background: #fff;
	color: #0f172a;
	font-size: 0.8rem;
	text-decoration: none;
}

.pd-blog-load-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 16px;
	border-radius: 8px;
	background: var(--pd-orange);
	color: #111827;
	font-size: 0.82rem;
	font-weight: 800;
	text-decoration: none;
}

.pd-blog-pagination.is-loading .pd-blog-load-more {
	opacity: 0.5;
	pointer-events: none;
}

.pd-blog-infinite-sentinel {
	width: 1px;
	height: 1px;
}

.pd-blog-empty {
	margin: 0;
	color: #64748b;
}

@media (max-width: 980px) {
	.pd-dynamic-hero,
	.pd-dynamic-hero-inner {
		min-height: var(--pd-dynamic-hero-height-tablet, 300px);
	}

	.pd-dynamic-hero-content h1 {
		font-size: var(--pd-dynamic-hero-heading-size-tablet, 40px);
	}

	.pd-post-related-scroll {
		grid-auto-columns: calc((100% - (var(--pd-related-tablet, 3) - 1) * 16px) / var(--pd-related-tablet, 3));
	}

	.pd-blog-listing {
		grid-template-columns: repeat(var(--pd-blog-columns-tablet, 2), minmax(0, 1fr));
	}

	.pd-blog-listing.layout-sidebar-blog {
		grid-template-columns: 1fr;
	}

.pd-blog-listing.layout-horizontal-media-cards .pd-blog-card,
.pd-blog-listing.layout-alternating-media .pd-blog-card {
		grid-template-columns: 1fr;
	}

	.pd-blog-card.image-pos-left,
	.pd-blog-card.image-pos-right {
		grid-template-columns: 1fr;
	}

	.pd-blog-listing.layout-masonry {
		column-count: var(--pd-blog-columns-tablet, 2);
	}

	.pd-blog-listing.layout-featured-plus-grid .pd-blog-card.is-first,
	.pd-blog-listing.layout-magazine .pd-blog-card.is-first,
	.pd-blog-listing.layout-large-first-post .pd-blog-card.is-first,
	.pd-blog-listing.layout-bento-grid .pd-blog-card:nth-child(1),
	.pd-blog-listing.layout-bento-grid .pd-blog-card:nth-child(4) {
		grid-column: span 1;
	}
}

@media (max-width: 680px) {
	.pd-dynamic-hero,
	.pd-dynamic-hero-inner {
		min-height: var(--pd-dynamic-hero-height-mobile, 260px);
	}

	.pd-dynamic-hero-content h1 {
		font-size: var(--pd-dynamic-hero-heading-size-mobile, 32px);
	}

	.pd-dynamic-hero-content p {
		font-size: max(0.95rem, calc(var(--pd-dynamic-hero-subheading-size, 18px) - 2px));
	}

	.pd-post-meta-row {
		gap: 8px;
	}

	.pd-post-related-scroll {
		grid-auto-columns: calc((100% - (var(--pd-related-mobile, 1) - 1) * 14px) / var(--pd-related-mobile, 1));
		gap: 14px;
	}

	.pd-post-cta h2,
	.pd-blog-cta h2 {
		font-size: 1.46rem;
	}

	.pd-blog-listing {
		grid-template-columns: repeat(var(--pd-blog-columns-mobile, 1), minmax(0, 1fr));
	}

	.pd-blog-listing.layout-masonry {
		column-count: var(--pd-blog-columns-mobile, 1);
	}
}

.pd-content {
	max-width: 780px;
}

.pd-content a {
	color: var(--pd-orange);
	font-weight: 700;
}

.pd-content img {
	border-radius: var(--pd-radius);
}

.pd-post-list {
	display: grid;
	gap: 18px;
}

.pd-post-card h2 a {
	color: var(--pd-ink);
}

.pd-post-meta {
	margin: 8px 0 0;
	color: var(--pd-orange);
	font-size: 0.8rem;
	font-weight: 800;
}

.js [data-animate] {
	opacity: 0;
	transform: translateY(24px);
}

.js [data-animate="image"] {
	transform: translateY(18px) scale(0.98);
}

.js .pd-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 600ms ease, transform 600ms ease;
}

@media (max-width: 980px) {
	.pd-site-header:not(.pd-site-header-modern) .pd-header-inner {
		min-height: 64px;
	}

	.pd-site-header:not(.pd-site-header-modern) .pd-primary-nav {
		position: absolute;
		top: 64px;
		right: 20px;
		left: 20px;
		display: none;
		padding: 18px;
		border-radius: var(--pd-radius);
		background: #202020;
		box-shadow: var(--pd-shadow);
	}

	.pd-site-header:not(.pd-site-header-modern) .pd-primary-nav.is-open {
		display: block;
	}

	.pd-site-header:not(.pd-site-header-modern) .pd-menu {
		display: grid;
		gap: 14px;
	}

	.pd-site-header:not(.pd-site-header-modern) .pd-header-cta {
		display: none;
	}

	.pd-site-header:not(.pd-site-header-modern) .pd-nav-toggle {
		display: inline-block;
	}

	.pd-hero-grid {
		grid-template-columns: 1fr;
		padding-block: 80px;
	}

	.pd-page-hero-normal,
	.pd-page-hero-normal .pd-page-hero-inner {
		min-height: var(--pd-page-hero-height-tablet, 360px);
	}

	.pd-page-hero-normal h1 {
		font-size: var(--pd-page-hero-heading-size-tablet, 46px);
	}

	.pd-stat-row,
	.pd-card-grid-four,
	.pd-card-grid-three,
	.pd-sector-grid,
	.pd-operation-grid,
	.pd-testimonial-grid,
	.pd-footer-grid,
	.pd-footer-block-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pd-footer-newsletter-layout,
	.pd-footer-newsletter-content,
	.pd-footer-newsletter-social-layout,
	.pd-footer-contact-rich-top,
	.pd-footer-saas-grid,
	.pd-footer-app-layout,
	.pd-footer-modern-footer-layout,
	.pd-footer-modern-dark-layout {
		grid-template-columns: 1fr;
	}

	.pd-footer-company.is-colspan {
		grid-column: span 2;
	}

	.pd-split {
		grid-template-columns: 1fr;
	}

	.pd-process-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.pd-container {
		width: min(100% - 28px, var(--pd-container));
	}

	.pd-hero {
		min-height: auto;
	}

	.pd-hero-copy h1 {
		font-size: 2.38rem;
	}

	.pd-page-hero-normal,
	.pd-page-hero-normal .pd-page-hero-inner {
		min-height: var(--pd-page-hero-height-mobile, 300px);
	}

	.pd-page-hero-normal h1 {
		font-size: var(--pd-page-hero-heading-size-mobile, 34px);
	}

	.pd-page-hero-normal p {
		font-size: max(0.95rem, calc(var(--pd-page-hero-subheading-size, 18px) - 2px));
	}

	.pd-page-hero-content {
		padding-right: min(var(--pd-page-hero-content-padding-x, 0), 18px);
		padding-left: min(var(--pd-page-hero-content-padding-x, 0), 18px);
	}

	.pd-stat-row,
	.pd-card-grid-four,
	.pd-card-grid-three,
	.pd-sector-grid,
	.pd-operation-grid,
	.pd-process-grid,
	.pd-testimonial-grid,
	.pd-footer-grid,
	.pd-footer-block-grid,
	.pd-feature-grid {
		grid-template-columns: 1fr;
	}

	.pd-footer-system .pd-footer-main {
		padding: 56px 0;
	}

	.pd-footer-main.pd-footer-layout-minimal-inline {
		padding: 28px 0;
	}

	.pd-footer-minimal-row {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.pd-footer-minimal-links,
	.pd-footer-centered-links,
	.pd-footer-minimal-links .pd-footer-menu,
	.pd-footer-centered-links .pd-footer-menu,
	.pd-footer-app-buttons,
	.pd-footer-modern-dark-links {
		justify-content: center;
	}

	.pd-footer-modern-dark-brand {
		text-align: center;
	}

	.pd-footer-modern-dark-brand .pd-footer-brand-link,
	.pd-footer-modern-dark-brand .pd-footer-social-links {
		justify-content: center;
	}

	.pd-footer-contact-cards {
		grid-template-columns: 1fr;
	}

	.pd-footer-saas-panel {
		padding-right: 18px;
		padding-left: 18px;
		border-radius: 20px 20px 0 0;
	}

	.pd-footer-saas-wordmark {
		font-size: clamp(2.8rem, 18vw, 6rem);
	}

	.pd-footer-company.is-colspan {
		grid-column: auto;
	}

	.pd-footer-mobile-center .pd-footer-block,
	.pd-footer-mobile-center .pd-footer-company p {
		text-align: center;
	}

	.pd-footer-mobile-center .pd-footer-brand-link,
	.pd-footer-mobile-center .pd-footer-social-links,
	.pd-footer-mobile-center .pd-footer-newsletter form,
	.pd-footer-mobile-center .pd-footer-contact .pd-footer-button,
	.pd-footer-mobile-center .pd-footer-cta-block .pd-footer-button,
	.pd-footer-mobile-center .pd-footer-contact-card .pd-footer-button {
		justify-content: center;
	}

	.pd-footer-newsletter form {
		flex-direction: column;
	}

	.pd-footer-newsletter button {
		width: 100%;
	}

	.pd-footer-bottom-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.pd-footer-bottom-legal,
	.pd-footer-bottom-powered {
		justify-content: center;
	}

	.pd-section {
		padding: 68px 0;
	}

	.pd-process-step {
		text-align: left;
		display: grid;
		grid-template-columns: 76px minmax(0, 1fr);
		column-gap: 18px;
		align-items: center;
	}

	.pd-process-step p {
		grid-column: 2;
		max-width: none;
		margin-inline: 0;
	}

	.pd-footer-bottom {
		display: grid;
	}
}

/* Universal Front Page Hero min-height override -- wraps whichever hero
   renders (Legacy Premium Hero or a TWIC plugin template) when the "Hero
   Dimensions" setting on the Front Page Hero tab is non-zero. Centers the
   wrapped hero vertically in case its natural height is shorter than the
   enforced minimum. */
.cessto-fp-hero-height-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.pd-hero-premium {
	position: relative;
	min-height: max(720px, calc(var(--pd-hero-height-vh, 100vh) - 58px));
	display: block;
	isolation: isolate;
	background: #050505;
	color: #fff;
}

.pd-hero-backgrounds,
.pd-hero-slide,
.pd-hero-layer,
.pd-hero-particles,
.pd-hero-glow,
.pd-hero-premium .pd-hero-overlay {
	position: absolute;
	inset: 0;
}

.pd-hero-backgrounds {
	z-index: 0;
	overflow: hidden;
}

/* ---------------------------------------------------------------------------
   Premium Hero slide state machine. Each slide is in exactly one of three
   states, driven by theme.js:
     (base)      = waiting, hidden, holding its mode's "enter from" pose
     .is-active  = visible; mode's resting/drift pose; always stacked on top
     .is-leaving = the slide that just deactivated; fades out UNDER the
                   incoming slide while playing its mode's exit pose, then
                   theme.js strips the class after the fade completes so the
                   slide returns to base with no leftover transform/filter/
                   clip-path/z-index state.
   Transition speeds: opacity/filter/clip-path are transition effects (1.2s);
   transform defaults to the full slide interval (slow drift for the zoom/
   Ken Burns family) and is overridden to 1.2s for the push modes
   (Horizontal/Vertical) where movement IS the transition.
--------------------------------------------------------------------------- */
.pd-hero-slide {
	background-position: center;
	background-size: cover;
	opacity: 0;
	z-index: 0;
	transform: scale(1.04);
	transition: opacity 1200ms ease, transform var(--pd-hero-slide-interval, 6500ms) linear, filter 1200ms ease, clip-path 1200ms ease;
	will-change: opacity, transform, filter;
}

/* Active matches the base transform exactly: modes without their own motion
   (Fade, Parallax) must not run a pointless sub-percent scale drift that only
   produces subpixel shimmer. Motion modes below define their own transforms. */
.pd-hero-slide.is-active {
	opacity: 1;
	z-index: 2;
	transform: scale(1.04);
}

.pd-hero-slide.is-leaving {
	z-index: 1;
}

/* Zoom In: enters near-normal, drifts into a clear zoom while active. */
.pd-hero-slide-zoom-in .pd-hero-slide.is-active {
	transform: scale(1.14);
}

/* Ken Burns = continuous slow zoom + diagonal pan while active (distinct
   from plain Zoom In). Travel stays well inside the scale overscan so image
   edges can never show. */
.pd-hero-slide-ken-burns .pd-hero-slide {
	transform: scale(1.06) translate(1.5%, 1%);
}

.pd-hero-slide-ken-burns .pd-hero-slide.is-active {
	transform: scale(1.16) translate(-1.5%, -1%);
}

/* Zoom Out: enters zoomed, settles back toward normal while active. */
.pd-hero-slide-zoom-out .pd-hero-slide {
	transform: scale(1.16);
}

.pd-hero-slide-zoom-out .pd-hero-slide.is-active {
	transform: scale(1.05);
}

/* Horizontal/Vertical are PUSH transitions: the movement happens during the
   1.2s crossfade (transform transition overridden below), entering from one
   side, resting at center, and exiting out the opposite side via .is-leaving.
   scale(1.06) overscan + the outgoing slide still covering the frame beneath
   the incoming one means no background band can ever show. */
.pd-hero-slide-horizontal .pd-hero-slide,
.pd-hero-slide-vertical .pd-hero-slide {
	transition: opacity 1200ms ease, transform 1200ms cubic-bezier(0.22, 0.61, 0.36, 1), filter 1200ms ease, clip-path 1200ms ease;
}

.pd-hero-slide-horizontal .pd-hero-slide {
	transform: translateX(6%) scale(1.06);
}

.pd-hero-slide-horizontal .pd-hero-slide.is-active {
	transform: translateX(0) scale(1.06);
}

.pd-hero-slide-horizontal .pd-hero-slide.is-leaving {
	transform: translateX(-6%) scale(1.06);
}

.pd-hero-slide-vertical .pd-hero-slide {
	transform: translateY(6%) scale(1.06);
}

.pd-hero-slide-vertical .pd-hero-slide.is-active {
	transform: translateY(0) scale(1.06);
}

.pd-hero-slide-vertical .pd-hero-slide.is-leaving {
	transform: translateY(-6%) scale(1.06);
}

/* Blur Transition: blurred while waiting/leaving, sharp while active. */
.pd-hero-slide-blur .pd-hero-slide {
	filter: blur(18px);
	transform: scale(1.08);
}

.pd-hero-slide-blur .pd-hero-slide.is-active {
	filter: blur(0);
}

/* Cinematic Reveal: clip-path wipe on enter. The leaving slide stays fully
   unclipped while it fades out under the incoming reveal — without this it
   re-clipped itself mid-fade, which read as a glitchy reverse wipe. */
.pd-hero-slide-cinematic .pd-hero-slide {
	clip-path: inset(0 18% 0 0);
	transform: scale(1.08);
}

.pd-hero-slide-cinematic .pd-hero-slide.is-active,
.pd-hero-slide-cinematic .pd-hero-slide.is-leaving {
	clip-path: inset(0);
}

.pd-hero-layer-grid {
	z-index: 1;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 88px 88px;
	mask-image: linear-gradient(90deg, black, transparent 84%);
	opacity: 0.34;
	animation: pdLayerDrift 18s linear infinite;
}

.pd-hero-layer-lines {
	z-index: 2;
	background:
		linear-gradient(115deg, transparent 0%, transparent 42%, rgba(var(--pd-hero-accent-rgb), 0.2) 42.2%, transparent 43%),
		linear-gradient(75deg, transparent 0%, transparent 60%, rgba(255, 255, 255, 0.11) 60.2%, transparent 61%);
	opacity: 0.4;
	animation: pdLayerPulse 7s ease-in-out infinite alternate;
}

.pd-hero-premium .pd-hero-overlay {
	z-index: 3;
	opacity: 1;
	background:
		linear-gradient(90deg, rgba(var(--pd-hero-overlay-rgb), var(--pd-hero-overlay-opacity)) 0%, rgba(var(--pd-hero-overlay-rgb), 0.76) 48%, rgba(var(--pd-hero-overlay-rgb), 0.32) 100%),
		radial-gradient(circle at 72% 40%, rgba(var(--pd-hero-accent-rgb), 0.22), transparent 34%);
	mask-image: none;
}

.pd-hero-overlay-solid .pd-hero-overlay {
	background: rgba(var(--pd-hero-overlay-rgb), var(--pd-hero-overlay-opacity));
}

.pd-hero-overlay-radial .pd-hero-overlay,
.pd-hero-gradient-radial .pd-hero-overlay {
	background:
		radial-gradient(circle at 50% 45%, rgba(var(--pd-hero-overlay-rgb), 0.56), rgba(var(--pd-hero-overlay-rgb), var(--pd-hero-overlay-opacity)) 66%),
		radial-gradient(circle at 70% 36%, rgba(var(--pd-hero-accent-rgb), 0.26), transparent 34%);
}

.pd-hero-gradient-right .pd-hero-overlay {
	background: linear-gradient(270deg, rgba(var(--pd-hero-overlay-rgb), var(--pd-hero-overlay-opacity)) 0%, rgba(var(--pd-hero-overlay-rgb), 0.68) 52%, rgba(var(--pd-hero-overlay-rgb), 0.28) 100%);
}

.pd-hero-gradient-top .pd-hero-overlay {
	background: linear-gradient(180deg, rgba(var(--pd-hero-overlay-rgb), var(--pd-hero-overlay-opacity)) 0%, rgba(var(--pd-hero-overlay-rgb), 0.58) 70%, rgba(var(--pd-hero-overlay-rgb), 0.28) 100%);
}

.pd-hero-gradient-bottom .pd-hero-overlay {
	background: linear-gradient(0deg, rgba(var(--pd-hero-overlay-rgb), var(--pd-hero-overlay-opacity)) 0%, rgba(var(--pd-hero-overlay-rgb), 0.58) 70%, rgba(var(--pd-hero-overlay-rgb), 0.28) 100%);
}

.pd-hero-gradient-diagonal .pd-hero-overlay {
	background: linear-gradient(135deg, rgba(var(--pd-hero-overlay-rgb), var(--pd-hero-overlay-opacity)) 0%, rgba(var(--pd-hero-overlay-rgb), 0.7) 50%, rgba(var(--pd-hero-accent-rgb), 0.22) 100%);
}

.has-animated-gradient .pd-hero-overlay::after {
	content: "";
	position: absolute;
	inset: -25%;
	background: conic-gradient(from 180deg, transparent, rgba(var(--pd-hero-accent-rgb), 0.18), transparent, rgba(255, 255, 255, 0.08), transparent);
	opacity: 0.58;
	animation: pdGradientOrbit 18s linear infinite;
}

.pd-hero-glow {
	z-index: 4;
	pointer-events: none;
	filter: blur(4px);
}

.pd-hero-glow-one {
	background: radial-gradient(circle at 18% 32%, rgba(var(--pd-hero-accent-rgb), 0.28), transparent 28%);
	animation: pdGlowFloat 7s ease-in-out infinite alternate;
}

.pd-hero-glow-two {
	background: radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.12), transparent 24%);
	animation: pdGlowFloat 9s ease-in-out infinite alternate-reverse;
}

.pd-hero-particles {
	z-index: 4;
	overflow: hidden;
	pointer-events: none;
}

.pd-hero-particles span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: rgba(var(--pd-hero-accent-rgb), 0.75);
	box-shadow: 0 0 18px rgba(var(--pd-hero-accent-rgb), 0.52);
	animation: pdParticleFloat calc(7s + (var(--i) * 0.28s)) ease-in-out infinite;
	animation-delay: calc(var(--i) * -0.31s);
}

.pd-hero-particles span:nth-child(1) { top: 18%; left: 12%; }
.pd-hero-particles span:nth-child(2) { top: 32%; left: 24%; }
.pd-hero-particles span:nth-child(3) { top: 68%; left: 16%; }
.pd-hero-particles span:nth-child(4) { top: 22%; left: 62%; }
.pd-hero-particles span:nth-child(5) { top: 44%; left: 72%; }
.pd-hero-particles span:nth-child(6) { top: 78%; left: 84%; }
.pd-hero-particles span:nth-child(7) { top: 58%; left: 48%; }
.pd-hero-particles span:nth-child(8) { top: 14%; left: 82%; }
.pd-hero-particles span:nth-child(9) { top: 84%; left: 34%; }
.pd-hero-particles span:nth-child(10) { top: 38%; left: 8%; }
.pd-hero-particles span:nth-child(11) { top: 72%; left: 62%; }
.pd-hero-particles span:nth-child(12) { top: 28%; left: 42%; }
.pd-hero-particles span:nth-child(13) { top: 88%; left: 12%; }
.pd-hero-particles span:nth-child(14) { top: 12%; left: 36%; }
.pd-hero-particles span:nth-child(15) { top: 54%; left: 92%; }
.pd-hero-particles span:nth-child(16) { top: 64%; left: 74%; }
.pd-hero-particles span:nth-child(17) { top: 46%; left: 28%; }
.pd-hero-particles span:nth-child(18) { top: 76%; left: 52%; }

.pd-hero-premium .pd-hero-grid {
	position: relative;
	z-index: 5;
	min-height: inherit;
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	padding-block: 116px 92px;
}

.pd-hero-copy-premium {
	width: min(var(--pd-hero-copy-width, 780px), 100%);
	transition: text-align 260ms ease, margin 260ms ease, transform 260ms ease;
}

.pd-hero-align-desktop-left .pd-hero-copy-premium {
	margin-right: auto;
	text-align: left;
}

.pd-hero-align-desktop-center .pd-hero-copy-premium {
	margin-inline: auto;
	text-align: center;
}

.pd-hero-align-desktop-right .pd-hero-copy-premium {
	margin-left: auto;
	text-align: right;
}

.pd-hero-premium .pd-hero-kicker {
	font-family: var(--pd-hero-label-font);
	font-size: var(--pd-hero-label-size);
	font-weight: var(--pd-hero-label-weight);
	color: var(--pd-hero-label-color);
	letter-spacing: var(--pd-hero-label-spacing);
	background: rgba(var(--pd-hero-accent-rgb), 0.14);
	border: 1px solid rgba(var(--pd-hero-accent-rgb), 0.24);
	backdrop-filter: blur(12px);
}

.pd-hero-premium .pd-hero-title {
	max-width: 13ch;
	margin: 0;
	color: var(--pd-hero-title-color);
	font-size: var(--pd-hero-title-desktop);
	font-weight: var(--pd-hero-title-weight);
	line-height: var(--pd-hero-title-line);
	letter-spacing: 0;
	text-shadow: var(--pd-hero-title-shadow);
}

.pd-hero-align-desktop-center .pd-hero-title,
.pd-hero-align-desktop-center .pd-hero-subtitle {
	margin-inline: auto;
}

.pd-hero-align-desktop-right .pd-hero-title,
.pd-hero-align-desktop-right .pd-hero-subtitle {
	margin-left: auto;
}

.pd-hero-premium .pd-hero-subtitle {
	max-width: var(--pd-hero-subtitle-width);
	margin-top: 22px;
	color: var(--pd-hero-subtitle-color);
	font-size: var(--pd-hero-subtitle-size);
	line-height: 1.72;
}

.pd-hero-title-cinematic {
	-webkit-text-fill-color: transparent;
	background: linear-gradient(92deg, #fff 0%, #f3ede5 42%, rgba(var(--pd-hero-accent-rgb), 0.92) 100%);
	background-clip: text;
}

.pd-hero-actions {
	margin-top: 34px;
	transition: justify-content 260ms ease;
}

.pd-hero-align-desktop-center .pd-hero-actions,
.pd-hero-align-desktop-center .pd-hero-counter-row {
	justify-content: center;
	margin-inline: auto;
}

.pd-hero-align-desktop-right .pd-hero-actions,
.pd-hero-align-desktop-right .pd-hero-counter-row {
	justify-content: flex-end;
	margin-left: auto;
}

.pd-hero-premium .pd-hero-button {
	gap: 10px;
	min-height: 48px;
	border-radius: var(--pd-hero-button-radius);
}

.pd-hero-button-small .pd-hero-button {
	min-height: 40px;
	padding-inline: 16px;
}

.pd-hero-button-medium .pd-hero-button {
	min-height: 46px;
	padding-inline: 20px;
}

.pd-hero-button-large .pd-hero-button {
	min-height: 54px;
	padding-inline: 24px;
}

.pd-hero-button-primary {
	background: var(--pd-hero-primary-bg);
	color: var(--pd-hero-primary-color);
	box-shadow: 0 18px 44px rgba(var(--pd-hero-accent-rgb), 0.24);
}

.pd-hero-button-secondary {
	background: var(--pd-hero-secondary-bg);
	color: var(--pd-hero-secondary-color);
	border-color: rgba(255, 255, 255, 0.26);
	backdrop-filter: blur(12px);
}

.pd-hero-button span {
	width: 16px;
	height: 16px;
	display: inline-block;
	background: currentColor;
	mask: linear-gradient(#000 0 0) center / 11px 2px no-repeat, linear-gradient(45deg, transparent 48%, #000 50%) right center / 8px 8px no-repeat;
}

.pd-hero-hover-lift-glow .pd-hero-button:hover {
	box-shadow: 0 22px 56px rgba(var(--pd-hero-accent-rgb), 0.34);
}

.pd-hero-hover-slide .pd-hero-button:hover {
	transform: translateX(4px);
}

.pd-hero-hover-pulse .pd-hero-button:hover {
	animation: pdButtonPulse 900ms ease;
}

.pd-hero-counter-row {
	width: min(720px, 100%);
	margin-top: 52px;
	display: grid;
	grid-template-columns: repeat(4, minmax(120px, 1fr));
	gap: 14px;
}

.pd-hero-counter {
	min-height: 112px;
	padding: 18px 16px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
	backdrop-filter: blur(18px);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
}

.pd-hero-counter::before {
	width: 30px;
	background: rgba(var(--pd-hero-accent-rgb), 0.95);
}

.pd-hero-counter .pd-counter-number-wrap {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	color: var(--pd-hero-counter-number-color);
	font-size: var(--pd-hero-counter-number-size);
	line-height: 1;
}

.pd-hero-counter .pd-counter-mainline {
	display: inline-flex;
	align-items: baseline;
	gap: 2px;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

.pd-hero-counter .pd-counter-value {
	display: inline-block;
	margin: 0;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

.pd-hero-counter .pd-counter-plus {
	display: inline-block;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	transform: none;
}

.pd-hero-counter .pd-counter-suffix {
	display: inline-block;
	margin: 0;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	text-transform: none;
}

.pd-counter-suffix-below .pd-counter-number-wrap {
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}

.pd-counter-suffix-below .pd-counter-suffix {
	padding-left: 2px;
	letter-spacing: 0;
}

.pd-hero-align-desktop-center .pd-counter-suffix-below .pd-counter-number-wrap {
	align-items: center;
}

.pd-hero-align-desktop-right .pd-counter-suffix-below .pd-counter-number-wrap {
	align-items: flex-end;
}

.pd-hero-counter .pd-counter-label {
	display: block;
	margin-top: 10px;
	color: var(--pd-hero-counter-label-color);
	font-size: var(--pd-hero-counter-label-size);
	font-weight: 700;
	text-transform: uppercase;
}

@keyframes pdLayerDrift {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(-88px, -88px, 0); }
}

@keyframes pdLayerPulse {
	from { opacity: 0.22; transform: translateX(-1.5%); }
	to { opacity: 0.48; transform: translateX(1.5%); }
}

@keyframes pdGradientOrbit {
	to { transform: rotate(360deg); }
}

@keyframes pdGlowFloat {
	from { transform: translate3d(0, 0, 0) scale(1); }
	to { transform: translate3d(18px, -16px, 0) scale(1.06); }
}

@keyframes pdParticleFloat {
	0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.18; }
	50% { transform: translate3d(18px, -46px, 0); opacity: 0.85; }
}

@keyframes pdButtonPulse {
	0%, 100% { transform: translateY(-2px) scale(1); }
	50% { transform: translateY(-2px) scale(1.035); }
}

@media (max-width: 980px) {
	.pd-hero-premium {
		min-height: 760px;
	}

	.pd-hero-premium .pd-hero-title {
		font-size: var(--pd-hero-title-tablet);
	}

	.pd-hero-align-tablet-left .pd-hero-copy-premium {
		margin-right: auto;
		margin-left: 0;
		text-align: left;
	}

	.pd-hero-align-tablet-center .pd-hero-copy-premium {
		margin-inline: auto;
		text-align: center;
	}

	.pd-hero-align-tablet-right .pd-hero-copy-premium {
		margin-right: 0;
		margin-left: auto;
		text-align: right;
	}

	.pd-hero-align-tablet-left .pd-hero-actions,
	.pd-hero-align-tablet-left .pd-hero-counter-row {
		justify-content: flex-start;
		margin-right: auto;
		margin-left: 0;
	}

	.pd-hero-align-tablet-center .pd-hero-actions,
	.pd-hero-align-tablet-center .pd-hero-counter-row {
		justify-content: center;
		margin-inline: auto;
	}

	.pd-hero-align-tablet-right .pd-hero-actions,
	.pd-hero-align-tablet-right .pd-hero-counter-row {
		justify-content: flex-end;
		margin-left: auto;
	}

	.pd-hero-align-tablet-left .pd-counter-suffix-below .pd-counter-number-wrap {
		align-items: flex-start;
	}

	.pd-hero-align-tablet-center .pd-counter-suffix-below .pd-counter-number-wrap {
		align-items: center;
	}

	.pd-hero-align-tablet-right .pd-counter-suffix-below .pd-counter-number-wrap {
		align-items: flex-end;
	}

	.pd-hero-align-tablet-center .pd-hero-title,
	.pd-hero-align-tablet-center .pd-hero-subtitle {
		margin-inline: auto;
	}

	.pd-hero-counter-row {
		grid-template-columns: repeat(2, minmax(140px, 1fr));
	}
}

@media (max-width: 680px) {
	.pd-hero-premium {
		min-height: 780px;
	}

	.pd-hero-premium .pd-hero-grid {
		padding-block: 78px 62px;
	}

	.pd-hero-premium .pd-hero-title {
		max-width: 100%;
		font-size: var(--pd-hero-title-mobile);
	}

	.pd-hero-premium .pd-hero-subtitle {
		font-size: max(15px, calc(var(--pd-hero-subtitle-size) - 2px));
	}

	.pd-hero-align-mobile-left .pd-hero-copy-premium {
		margin-right: auto;
		margin-left: 0;
		text-align: left;
	}

	.pd-hero-align-mobile-center .pd-hero-copy-premium {
		margin-inline: auto;
		text-align: center;
	}

	.pd-hero-align-mobile-right .pd-hero-copy-premium {
		margin-right: 0;
		margin-left: auto;
		text-align: right;
	}

	.pd-hero-align-mobile-left .pd-hero-actions,
	.pd-hero-align-mobile-left .pd-hero-counter-row {
		justify-content: flex-start;
		margin-right: auto;
		margin-left: 0;
	}

	.pd-hero-align-mobile-center .pd-hero-actions,
	.pd-hero-align-mobile-center .pd-hero-counter-row {
		justify-content: center;
		margin-inline: auto;
	}

	.pd-hero-align-mobile-right .pd-hero-actions,
	.pd-hero-align-mobile-right .pd-hero-counter-row {
		justify-content: flex-end;
		margin-left: auto;
	}

	.pd-hero-align-mobile-left .pd-counter-suffix-below .pd-counter-number-wrap {
		align-items: flex-start;
	}

	.pd-hero-align-mobile-center .pd-counter-suffix-below .pd-counter-number-wrap {
		align-items: center;
	}

	.pd-hero-align-mobile-right .pd-counter-suffix-below .pd-counter-number-wrap {
		align-items: flex-end;
	}

	.pd-hero-counter-row {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.js [data-animate] {
		opacity: 1;
		transform: none;
	}
}

/* ── Hero-ported nav styles ───────────────────────────────────────────────── */

/* hero-dark-blur — from Dark Theme hero reference */
.pd-site-header-modern.pd-site-header--surface-hero-dark-blur::before {
	background: rgba(10, 15, 26, 0.82);
	backdrop-filter: blur(var(--pd-header-blur));
	-webkit-backdrop-filter: blur(var(--pd-header-blur));
}

/* hero-light-clean — from Light Grid hero reference */
.pd-site-header-modern.pd-site-header--surface-hero-light-clean::before {
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: none;
}

.pd-site-header-modern.pd-site-header--surface-hero-light-clean .pd-primary-nav a,
.pd-site-header-modern.pd-site-header--surface-hero-light-clean .pd-brand-name,
.pd-site-header-modern.pd-site-header--surface-hero-light-clean .pd-nav-toggle {
	color: #050040;
}

/* hero-dark-gradient — from Gradient Card hero reference */
.pd-site-header-modern.pd-site-header--surface-hero-dark-gradient::before {
	background: linear-gradient(to bottom, #000000 0%, rgba(59, 0, 110, 0.88) 100%);
	backdrop-filter: none;
}

/* hero-pill — from Animated Banner hero reference (floating pill) */
.pd-site-header-modern.pd-site-header--surface-hero-pill {
	border-bottom: 0;
	padding: 12px 16px;
}

.pd-site-header-modern.pd-site-header--surface-hero-pill::before {
	display: none;
}

.pd-site-header-modern.pd-site-header--surface-hero-pill .pd-header-shell {
	padding: 0;
}

.pd-site-header-modern.pd-site-header--surface-hero-pill .pd-header-main {
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.38);
	background: rgba(var(--pd-header-surface-rgb), var(--pd-header-surface-opacity));
	backdrop-filter: blur(var(--pd-header-blur));
	-webkit-backdrop-filter: blur(var(--pd-header-blur));
	padding: 10px 24px;
}

.pd-site-header-modern.pd-site-header--surface-hero-pill.is-scrolled .pd-header-main {
	box-shadow: 0 8px 24px rgba(0, 0, 0, var(--pd-header-shadow-opacity));
}

/* hero-box — from SaaS Dashboard hero reference (bordered box) */
.pd-site-header-modern.pd-site-header--surface-hero-box {
	border-bottom: 0;
	padding: 8px 16px;
}

.pd-site-header-modern.pd-site-header--surface-hero-box::before {
	display: none;
}

.pd-site-header-modern.pd-site-header--surface-hero-box .pd-header-shell {
	padding: 0;
}

.pd-site-header-modern.pd-site-header--surface-hero-box .pd-header-main {
	border-radius: 14px;
	border: 1px solid #e4e4e7;
	background: rgba(255, 255, 255, 0.97);
	padding: 6px 8px;
}

.pd-site-header-modern.pd-site-header--surface-hero-box .pd-primary-nav a,
.pd-site-header-modern.pd-site-header--surface-hero-box .pd-brand-name,
.pd-site-header-modern.pd-site-header--surface-hero-box .pd-nav-toggle {
	color: #18181b;
}

.pd-site-header-modern.pd-site-header--surface-hero-box.is-scrolled .pd-header-main {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
