/* ==========================================================================
   Profmax Child — design tokens, header/footer and Elementor widgets.
   Ported from the Claude Design "Modernist" project (index.dc.html).
   ========================================================================== */

:root {
	--pmx-bg-page: #f4f5f7;
	--pmx-surface: #eceef1;
	--pmx-text: #131a24;
	--pmx-divider: rgba(19, 26, 36, .22);
	--pmx-n300: #d7dbe1;
	--pmx-n400: #b7bec8;
	--pmx-n600: #757e8a;
	--pmx-n700: #565d68;
	--pmx-a200: #cfe0f5;
	--pmx-a300: #a6c6ea;
	--pmx-a500: #2f6bb8;
	--pmx-a700: #1a3f6e;
	--pmx-a800: #132e50;
	--pmx-a900: #0c1f38;
	--pmx-g400: #4fd98a;
	--pmx-g500: #17c268;
	--pmx-g700: #0c7f43;
	--pmx-light: #eef2f7;
	--pmx-font-h: "Petrona", Georgia, serif;
	--pmx-font-b: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
	--pmx-ease: cubic-bezier(.2, .7, .2, 1);
	--pmx-gutter: clamp(20px, 5vw, 48px);
}

body.pmx-site {
	margin: 0;
	background: var(--pmx-bg-page);
	color: var(--pmx-text);
	font-family: var(--pmx-font-b);
	overflow-x: hidden;
}
body.pmx-site a { color: var(--pmx-a700); }
body.pmx-site a:hover { color: var(--pmx-a900); }

.pmx-site .screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	margin: -1px; padding: 0; border: 0;
}
.pmx-site .skip-link:focus {
	clip: auto; width: auto; height: auto; z-index: 100000;
	top: 8px; left: 8px; padding: 12px 18px; background: #fff; color: var(--pmx-text);
}

@keyframes pmxGlow { 0%, 100% { opacity: .55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
@keyframes pmxShimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes pmxBarFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes pmxRoute { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -1320; } }

/* ---------- Layout primitives ---------- */
.pmx-wrap {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding-left: var(--pmx-gutter);
	padding-right: var(--pmx-gutter);
	box-sizing: border-box;
}
.pmx-wrap--1280 { max-width: 1280px; }
.pmx-wrap--1100, .pmx-wrap--narrow { max-width: calc(1100px + 2 * var(--pmx-gutter)); }
.pmx-wrap--900 { max-width: calc(900px + 2 * var(--pmx-gutter)); }

[class^="pmx-"] *, [class*=" pmx-"] * { box-sizing: border-box; }

.pmx-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; max-width: none; }
.pmx-img-tone { filter: saturate(.82) contrast(1.04); }

.pmx-kicker {
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: var(--pmx-font-b);
	font-size: 12px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--pmx-a700);
	margin-bottom: 28px;
}
.pmx-kicker::before { content: ""; flex: 0 0 36px; height: 2px; background: var(--pmx-accent-c, var(--pmx-g500)); }
.pmx-kicker--light { color: var(--pmx-accent-c, var(--pmx-g400)); }
.pmx-kicker--light::before { background: var(--pmx-accent-c, var(--pmx-g400)); }

.pmx-rich > :first-child { margin-top: 0; }
.pmx-rich > :last-child { margin-bottom: 0; }
.pmx-rich p { margin: 0 0 1em; }

.pmx-site .pmx-section-title {
	font-family: var(--pmx-font-h);
	font-weight: 500;
	font-size: clamp(26px, 2.6vw, 34px);
	line-height: 1.15;
	margin: 0 0 24px;
	color: var(--pmx-heading, var(--pmx-text));
}

/* Direction-aware arrows */
[dir="rtl"] .pmx-dir-icon { transform: scaleX(-1); }

/* ---------- Buttons & links ---------- */
.pmx-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.pmx-site .pmx-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 26px;
	border: 2px solid transparent;
	border-radius: 0;
	font-family: var(--pmx-font-b);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: gap 300ms ease, background 300ms ease, border-color 300ms ease, color 300ms ease;
}
.pmx-site .pmx-btn:hover { gap: 20px; }
.pmx-site .pmx-btn:focus-visible { outline: 2px solid var(--pmx-g400); outline-offset: 3px; }

.pmx-site .pmx-btn--primary { background: var(--pmx-g500); color: var(--pmx-a900); }
.pmx-site .pmx-btn--primary:hover { background: var(--pmx-g400); color: var(--pmx-a900); }
.pmx-site .pmx-btn--dark { background: var(--pmx-a800); color: #fff; padding: 16px 28px; }
.pmx-site .pmx-btn--dark:hover { background: var(--pmx-a700); color: #fff; }
.pmx-site .pmx-btn--blue { background: var(--pmx-a500); color: #fff; padding: 14px 28px; }
.pmx-site .pmx-btn--blue:hover { background: var(--pmx-a700); color: #fff; }
.pmx-site .pmx-btn--ghost-light { background: transparent; border-color: rgba(238, 242, 247, .4); color: #fff; padding: 14px 26px; }
.pmx-site .pmx-btn--ghost-light:hover { background: rgba(238, 242, 247, .08); border-color: #fff; color: #fff; }
.pmx-site .pmx-btn--outline { background: transparent; border-color: var(--pmx-a700); color: var(--pmx-a700); padding: 14px 28px; }
.pmx-site .pmx-btn--outline:hover { background: var(--pmx-a700); color: #fff; }

.pmx-site .pmx-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 600;
	color: var(--pmx-a700);
	text-decoration: none;
	padding-bottom: 6px;
	background: linear-gradient(currentColor, currentColor) 0 100% / 0% 2px no-repeat;
	transition: background-size 450ms var(--pmx-ease), gap 300ms ease;
}
[dir="rtl"] .pmx-site .pmx-link { background-position: 100% 100%; }
.pmx-site .pmx-link:hover { background-size: 100% 2px; gap: 16px; color: var(--pmx-a700); }

/* Square icon buttons (slider arrows) */
.pmx-arrows { display: flex; gap: 8px; }
.pmx-site .pmx-arrow {
	width: 44px; height: 44px;
	display: flex; align-items: center; justify-content: center;
	padding: 0;
	background: transparent;
	border: 2px solid var(--pmx-divider);
	border-radius: 0;
	color: var(--pmx-text);
	cursor: pointer;
	transition: border-color 300ms ease, background 300ms ease;
}
.pmx-site .pmx-arrow:hover, .pmx-site .pmx-arrow:focus { border-color: var(--pmx-text); background: var(--pmx-surface); color: var(--pmx-text); }

/* Progress segments */
.pmx-counter { font-family: var(--pmx-font-h); font-size: 15px; min-width: 64px; }
.pmx-segs { display: flex; gap: 8px; flex: 1; min-width: 160px; max-width: 360px; }
.pmx-site .pmx-seg {
	position: relative; flex: 1; height: 24px;
	background: transparent; border: 0; border-radius: 0; padding: 0; cursor: pointer;
}
.pmx-site .pmx-seg:hover, .pmx-site .pmx-seg:focus { background: transparent; }
.pmx-seg::before, .pmx-seg__fill { content: ""; position: absolute; left: 0; right: 0; top: 11px; height: 2px; }
.pmx-seg::before { background: var(--pmx-n300); }
.pmx-seg__fill { background: var(--pmx-a700); transform-origin: left; transform: scaleX(0); }
[dir="rtl"] .pmx-seg__fill { transform-origin: right; }
.pmx-seg.is-done .pmx-seg__fill { transform: scaleX(1); }
.pmx-seg.is-current .pmx-seg__fill { animation: pmxBarFill var(--pmx-dur, 7000ms) linear forwards; }

/* ==========================================================================
   Header
   ========================================================================== */
.pmx-header {
	position: sticky;
	top: var(--wp-admin--admin-bar--height, 0px);
	left: 0; right: 0;
	z-index: 60;
	background: rgba(244, 245, 247, .94);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	transition: background 450ms ease, box-shadow 450ms ease;
	--pmx-ink: var(--pmx-text);
	--pmx-underline: #10a355;
}
.pmx-header.is-scrolled { box-shadow: 0 1px 0 rgba(19, 26, 36, .1); }
.pmx-header--overlay { position: fixed; }
.pmx-header--overlay:not(.is-scrolled):not(.is-open) {
	background: transparent;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	--pmx-ink: #fff;
	--pmx-underline: var(--pmx-g400);
}
.pmx-header__bar { display: flex; align-items: center; gap: 32px; height: 84px; transition: height 350ms ease; }
.pmx-header.is-scrolled .pmx-header__bar { height: 68px; }
.pmx-header__logo { display: flex; align-items: center; margin-inline-end: auto; text-decoration: none; }
.pmx-header__logo img { height: 42px; width: auto; display: block; transition: height 350ms ease, filter 350ms ease; }
.pmx-header.is-scrolled .pmx-header__logo img { height: 36px; }
.pmx-header--overlay:not(.is-scrolled):not(.is-open) .pmx-header__logo img { filter: brightness(0) invert(1); }

.pmx-nav__list, .pmx-mobile-nav__list { list-style: none; margin: 0; padding: 0; }
.pmx-nav__list { display: flex; align-items: center; gap: 30px; }
.pmx-site .pmx-nav__list a {
	display: block;
	padding: 6px 0;
	font-family: var(--pmx-font-b);
	font-size: 13.5px;
	letter-spacing: .03em;
	white-space: nowrap;
	color: var(--pmx-ink);
	text-decoration: none;
	background: linear-gradient(var(--pmx-underline), var(--pmx-underline)) 0 100% / 0% 2px no-repeat;
	transition: background-size 400ms var(--pmx-ease), color 400ms ease;
}
[dir="rtl"] .pmx-site .pmx-nav__list a { background-position: 100% 100%; }
.pmx-site .pmx-nav__list a:hover,
.pmx-site .pmx-nav__list .current-menu-item > a,
.pmx-site .pmx-nav__list .current_page_item > a { background-size: 100% 2px; color: var(--pmx-ink); }

.pmx-site .pmx-header__burger {
	display: none;
	width: 44px; height: 44px;
	flex-direction: column; justify-content: center; align-items: center; gap: 6px;
	background: transparent; border: 0; border-radius: 0; padding: 0; cursor: pointer;
}
.pmx-site .pmx-header__burger:hover, .pmx-site .pmx-header__burger:focus { background: transparent; }
.pmx-header__burger span {
	display: block; width: 24px; height: 2px; background: var(--pmx-ink);
	transition: transform 350ms var(--pmx-ease), opacity 250ms ease, background 300ms ease;
}
.pmx-header.is-open .pmx-header__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.pmx-header.is-open .pmx-header__burger span:nth-child(2) { opacity: 0; }
.pmx-header.is-open .pmx-header__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.pmx-mobile-nav {
	display: none;
	overflow: hidden;
	background: var(--pmx-bg-page);
	padding: 0 var(--pmx-gutter);
	max-height: 0;
	opacity: 0;
	transition: max-height 500ms var(--pmx-ease), opacity 350ms ease, padding-bottom 350ms ease;
}
.pmx-header.is-open .pmx-mobile-nav { max-height: 520px; opacity: 1; padding-bottom: 20px; }
.pmx-site .pmx-mobile-nav__list a {
	display: block;
	padding: 16px 0;
	border-top: 2px solid var(--pmx-divider);
	font-family: var(--pmx-font-h);
	font-size: 18px;
	color: var(--pmx-text);
	text-decoration: none;
}
.pmx-site .pmx-mobile-nav__list .current-menu-item > a,
.pmx-site .pmx-mobile-nav__list .current_page_item > a { color: var(--pmx-a700); }

@media (max-width: 999px) {
	.pmx-nav { display: none; }
	.pmx-site .pmx-header__burger { display: flex; }
	.pmx-mobile-nav { display: block; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.pmx-footer { background: var(--pmx-a900); color: var(--pmx-light); padding: 56px var(--pmx-gutter) 28px; font-family: var(--pmx-font-b); }
.pmx-footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; }
.pmx-footer__logo img { height: 44px; width: auto; display: block; margin-bottom: 14px; }
.pmx-footer__logo.is-inverted img { filter: brightness(0) invert(1); }
.pmx-footer p { font-size: 14px; margin: 0 0 8px; color: rgba(238, 242, 247, .85); }
.pmx-footer__brand p { color: rgba(238, 242, 247, .72); max-width: 340px; }
.pmx-footer__title { font-family: var(--pmx-font-h); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--pmx-g400); margin-bottom: 14px; }
.pmx-footer__links { list-style: none; margin: 0; padding: 0; }
.pmx-site .pmx-footer a { color: var(--pmx-light); text-decoration: none; opacity: .85; transition: opacity 200ms ease, color 200ms ease; }
.pmx-site .pmx-footer a:hover { opacity: 1; color: var(--pmx-g400); }
.pmx-footer__links a { display: block; font-size: 14px; margin-bottom: 10px; }
.pmx-footer p.pmx-footer__note { font-size: 13px; opacity: .7; }
.pmx-footer__bottom { max-width: 1200px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid rgba(238, 242, 247, .18); }
.pmx-footer__bottom p { font-size: 12px; color: rgba(238, 242, 247, .55); margin: 0; }
@media (max-width: 800px) {
	.pmx-footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   Hero slider
   ========================================================================== */
.pmx-hero {
	position: relative;
	min-height: max(640px, min(100vh, 920px));
	background: var(--pmx-bg, var(--pmx-a900));
	color: var(--pmx-light);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.pmx-hero__media { position: absolute; left: 0; right: 0; top: -6%; bottom: -6%; }
.pmx-hero__img { position: absolute; inset: 0; opacity: 0; transition: opacity 1400ms ease; }
.pmx-hero__img.is-active { opacity: 1; }
.pmx-hero__kb {
	position: absolute; inset: 0; overflow: hidden;
	filter: saturate(.8) contrast(1.05);
	transform: scale(1.1);
	transition: transform 0s linear 1400ms;
}
.pmx-hero__kb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; max-width: none; }
.pmx-hero.is-in .pmx-hero__img.is-active .pmx-hero__kb { transform: scale(1); transition: transform 9000ms cubic-bezier(.2, .6, .3, 1); }
.pmx-hero__shade {
	position: absolute; inset: 0; pointer-events: none;
	background:
		linear-gradient(90deg, rgba(12, 31, 56, .92) 0%, rgba(12, 31, 56, .72) 38%, rgba(12, 31, 56, .25) 75%, rgba(12, 31, 56, .35) 100%),
		linear-gradient(0deg, rgba(12, 31, 56, .85) 0%, rgba(12, 31, 56, 0) 38%);
}
[dir="rtl"] .pmx-hero__shade {
	background:
		linear-gradient(270deg, rgba(12, 31, 56, .92) 0%, rgba(12, 31, 56, .72) 38%, rgba(12, 31, 56, .25) 75%, rgba(12, 31, 56, .35) 100%),
		linear-gradient(0deg, rgba(12, 31, 56, .85) 0%, rgba(12, 31, 56, 0) 38%);
}
.pmx-hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .55; }
.pmx-hero__inner {
	position: relative; z-index: 3; flex: 1;
	display: flex; flex-direction: column; justify-content: flex-end;
	padding-top: 160px; padding-bottom: 40px;
}
.pmx-hero__slides { display: grid; }
.pmx-hero__slide {
	grid-area: 1 / 1;
	visibility: hidden;
	pointer-events: none;
	transition: visibility 0s linear 800ms;
}
.pmx-hero__slide.is-active { visibility: visible; pointer-events: auto; transition-delay: 0s; }
/* Hidden start state only when JS runs (html.pmx-js is set in <head>). */
.pmx-js .pmx-hero__t, .pmx-js .pmx-tslider__quote, .pmx-js .pmx-person {
	opacity: 0;
	transform: translate3d(0, 26px, 0);
	transition: opacity 800ms var(--pmx-ease) 0ms, transform 1000ms var(--pmx-ease) 0ms;
}
.is-in .is-active > .pmx-hero__t, .is-in .is-active > .pmx-tslider__quote, .is-in .is-active > .pmx-person { opacity: 1; transform: none; }
.is-in .is-active > .pmx-hero__t:nth-child(1) { transition-delay: 100ms; }
.is-in .is-active > .pmx-hero__t:nth-child(2) { transition-delay: 220ms; }
.is-in .is-active > .pmx-hero__t:nth-child(3) { transition-delay: 360ms; }
.is-in .is-active > .pmx-hero__t:nth-child(4) { transition-delay: 480ms; }
.pmx-hero .pmx-kicker { margin-bottom: 26px; }
.pmx-site .pmx-hero__headline {
	font-family: var(--pmx-font-h);
	font-weight: 500;
	font-size: clamp(36px, 5.6vw, 80px);
	line-height: 1.04;
	letter-spacing: -.015em;
	margin: 0 0 28px;
	color: var(--pmx-heading, #fff);
	max-width: 15ch;
	text-wrap: balance;
}
.pmx-hero__body {
	font-size: clamp(15px, 1.3vw, 17px);
	line-height: 1.7;
	font-weight: 300;
	color: var(--pmx-body, #d9e1ec);
	max-width: 500px;
	margin: 0 0 40px;
}
.pmx-hero__bar {
	display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
	margin-top: clamp(56px, 8vw, 96px);
	padding-top: 22px;
	border-top: 2px solid rgba(238, 242, 247, .16);
}
.pmx-hero .pmx-counter { color: #fff; }
.pmx-hero .pmx-counter__total { color: #8d9bb0; }
.pmx-hero .pmx-seg::before { background: rgba(238, 242, 247, .22); }
.pmx-hero .pmx-seg__fill { background: var(--pmx-accent-c, var(--pmx-g400)); }
.pmx-hero__nav { margin-inline-start: auto; display: flex; align-items: center; gap: 18px; }
.pmx-hero__caption { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #b7c3d4; }
.pmx-site .pmx-hero .pmx-arrow, .pmx-site .pmx-gallery .pmx-arrow { border-color: rgba(238, 242, 247, .3); color: #fff; }
.pmx-site .pmx-hero .pmx-arrow:hover, .pmx-site .pmx-hero .pmx-arrow:focus,
.pmx-site .pmx-gallery .pmx-arrow:hover, .pmx-site .pmx-gallery .pmx-arrow:focus { border-color: #fff; background: rgba(238, 242, 247, .08); color: #fff; }
@media (max-width: 600px) {
	.pmx-hero__nav { margin-inline-start: 0; width: 100%; justify-content: space-between; }
}

/* ==========================================================================
   Intro (Who We Are / About hero)
   ========================================================================== */
.pmx-intro { background: var(--pmx-bg, transparent); padding: clamp(88px, 11vw, 160px) 0 clamp(64px, 8vw, 110px); }
.pmx-intro__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr));
	gap: clamp(44px, 6vw, 100px);
	align-items: center;
}
.pmx-intro--img-start .pmx-intro__visual { order: -1; }
.pmx-site .pmx-intro__heading {
	font-family: var(--pmx-font-h);
	font-weight: 500;
	font-size: clamp(34px, 4.3vw, 60px);
	line-height: 1.08;
	letter-spacing: -.012em;
	margin: 0 0 32px;
	color: var(--pmx-heading, var(--pmx-text));
	text-wrap: balance;
}
.pmx-intro__body { font-size: 16px; line-height: 1.8; color: var(--pmx-body, var(--pmx-n700)); max-width: 520px; margin: 0 0 36px; }
.pmx-intro__highlight { font-family: var(--pmx-font-h); font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; color: var(--pmx-accent-c, var(--pmx-a800)); max-width: 520px; margin: -12px 0 36px; }
.pmx-intro__media { position: relative; height: clamp(380px, 44vw, 640px); overflow: hidden; background: var(--pmx-surface); }
.pmx-intro__zoom { position: absolute; inset: 0; }
.pmx-intro__tag {
	position: absolute; left: 0; bottom: 0;
	background: var(--pmx-bg, var(--pmx-bg-page));
	padding: 14px 20px 0 0;
	font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--pmx-n700);
}
[dir="rtl"] .pmx-intro__tag { left: auto; right: 0; padding: 14px 0 0 20px; }
.pmx-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
	gap: 0 40px;
	margin-top: clamp(56px, 7vw, 96px);
}
.pmx-stat { border-top: 2px solid var(--pmx-heading, var(--pmx-text)); padding-top: 20px; margin-bottom: 20px; }
.pmx-stat__label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--pmx-n600); margin-bottom: 10px; }
.pmx-stat__value { font-family: var(--pmx-font-h); font-size: clamp(28px, 3vw, 40px); color: var(--pmx-heading, var(--pmx-text)); }

/* ==========================================================================
   Founder spotlight
   ========================================================================== */
.pmx-founder { background: var(--pmx-bg, var(--pmx-surface)); overflow: hidden; }
.pmx-founder__grid {
	padding-top: clamp(80px, 10vw, 140px);
	padding-bottom: clamp(80px, 10vw, 140px);
	display: flex; flex-wrap: wrap;
	gap: clamp(40px, 6vw, 96px);
	align-items: center;
}
.pmx-founder__visual { flex: 1 1 380px; min-width: 0; }
.pmx-founder__text { flex: 1.25 1 440px; min-width: 0; }
.pmx-founder__media { position: relative; height: clamp(460px, 54vw, 720px); overflow: hidden; background: #dfe3e9; }
.pmx-founder__glow {
	position: absolute; inset: -10%;
	background:
		radial-gradient(circle at 30% 25%, rgba(23, 194, 104, .22), transparent 55%),
		radial-gradient(circle at 80% 85%, rgba(47, 107, 184, .25), transparent 55%);
	animation: pmxGlow 7s ease-in-out infinite;
}
.pmx-founder__zoom { position: absolute; inset: 0; }
.pmx-founder__hover { position: absolute; inset: 0; transition: transform 1200ms var(--pmx-ease); }
.pmx-founder__media:hover .pmx-founder__hover { transform: scale(1.04); }
.pmx-founder__initials {
	position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
	font-family: var(--pmx-font-h); font-size: clamp(90px, 12vw, 160px); color: rgba(19, 46, 80, .18);
}
.pmx-site .pmx-founder__name {
	font-family: var(--pmx-font-h);
	font-weight: 500;
	font-size: clamp(44px, 5.4vw, 78px);
	line-height: 1;
	letter-spacing: -.015em;
	margin: 0 0 20px;
	color: var(--pmx-heading, var(--pmx-text));
}
.pmx-founder__role { font-size: 14px; letter-spacing: .04em; color: var(--pmx-accent-c, var(--pmx-g700)); font-weight: 500; margin: 0 0 32px; }
.pmx-founder__bio { font-size: 16px; line-height: 1.8; color: var(--pmx-body, var(--pmx-n700)); margin: 0 0 36px; max-width: 600px; }
.pmx-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr)); gap: 0 28px; margin-bottom: 40px; }
.pmx-fact { border-top: 2px solid var(--pmx-divider); padding-top: 14px; margin-bottom: 14px; }
.pmx-fact__label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--pmx-n600); margin-bottom: 6px; }
.pmx-fact__value { font-size: 14px; color: var(--pmx-heading, var(--pmx-text)); }

/* ==========================================================================
   Services showcase
   ========================================================================== */
.pmx-services { background: var(--pmx-bg, transparent); padding: clamp(88px, 11vw, 150px) 0; }
.pmx-services__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(40px, 5vw, 64px); }
.pmx-services__head .pmx-kicker { margin-bottom: 22px; }
.pmx-site .pmx-services__heading {
	font-family: var(--pmx-font-h); font-weight: 500;
	font-size: clamp(40px, 5vw, 72px); line-height: 1; letter-spacing: -.015em;
	margin: 0; color: var(--pmx-heading, var(--pmx-text));
}
.pmx-services__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(40px, 5vw, 72px); align-items: start; }
.pmx-services__list { border-bottom: 2px solid var(--pmx-divider); }
.pmx-site .pmx-svc {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) 48px;
	gap: 16px;
	align-items: start;
	text-decoration: none;
	color: inherit;
	border-top: 2px solid var(--pmx-divider);
	padding: 30px 0;
	transition: background 500ms ease, padding 600ms var(--pmx-ease);
}
.pmx-site .pmx-svc:hover { color: inherit; }
.pmx-svc__num { font-family: var(--pmx-font-h); font-size: 18px; padding-top: 6px; color: var(--pmx-n600); transition: color 400ms ease, transform 500ms var(--pmx-ease); }
.pmx-svc__title-wrap { display: flex; align-items: center; gap: 14px; transition: transform 600ms var(--pmx-ease); }
.pmx-svc__icon { display: flex; flex-shrink: 0; color: var(--pmx-a700); transition: color 400ms ease; }
.pmx-site .pmx-svc__title {
	font-family: var(--pmx-font-h); font-weight: 500;
	font-size: clamp(22px, 2.3vw, 31px); line-height: 1.2;
	margin: 0; color: var(--pmx-heading, var(--pmx-text));
	transition: color 400ms ease;
}
.pmx-svc__text { font-size: 14.5px; line-height: 1.75; margin: 14px 0 0; max-width: 560px; color: var(--pmx-body, var(--pmx-n600)); transition: color 400ms ease; }
.pmx-svc__arrow {
	width: 44px; height: 44px;
	display: flex; align-items: center; justify-content: center;
	border: 2px solid var(--pmx-divider);
	color: var(--pmx-text);
	transition: all 500ms var(--pmx-ease);
}
.pmx-svc__inline-img { display: none; position: relative; height: 220px; overflow: hidden; margin-top: 20px; }
.pmx-services__panel { position: sticky; top: 110px; }
.pmx-services__panel-media { position: relative; height: clamp(460px, 46vw, 620px); overflow: hidden; background: var(--pmx-surface); }
.pmx-services__panel-img { position: absolute; inset: 0; opacity: 0; transform: scale(1.06); transition: opacity 700ms ease, transform 1400ms var(--pmx-ease); }
.pmx-services__panel-img.is-active { opacity: 1; transform: scale(1); }
.pmx-services__panel-cap {
	position: absolute; inset: auto 0 0 0;
	padding: 80px 28px 26px;
	background: linear-gradient(0deg, rgba(12, 31, 56, .85), rgba(12, 31, 56, 0));
	color: #fff; pointer-events: none;
}
.pmx-services__panel-num { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--pmx-g400); margin-bottom: 8px; }
.pmx-services__panel-title { font-family: var(--pmx-font-h); font-size: 22px; line-height: 1.25; }

@media (min-width: 960px) {
	.pmx-site .pmx-svc.is-active { background: var(--pmx-surface); padding-left: 22px; padding-right: 22px; }
	.pmx-svc.is-active .pmx-svc__num { color: var(--pmx-accent-c, var(--pmx-g700)); transform: translateY(-3px); }
	.pmx-svc.is-active .pmx-svc__title-wrap { transform: translateX(6px); }
	[dir="rtl"] .pmx-svc.is-active .pmx-svc__title-wrap { transform: translateX(-6px); }
	.pmx-svc.is-active .pmx-svc__icon { color: var(--pmx-accent-c, var(--pmx-g700)); }
	.pmx-site .pmx-svc.is-active .pmx-svc__title { color: var(--pmx-a800); }
	.pmx-svc.is-active .pmx-svc__text { color: var(--pmx-body, var(--pmx-n700)); }
	.pmx-svc.is-active .pmx-svc__arrow { border-color: var(--pmx-g500); background: var(--pmx-g500); color: var(--pmx-a900); transform: translate(4px, -4px); }
}
@media (max-width: 959px) {
	.pmx-services__grid { grid-template-columns: minmax(0, 1fr); }
	.pmx-services__panel { display: none; }
	.pmx-svc__inline-img { display: block; }
	.pmx-svc__text { color: var(--pmx-body, var(--pmx-n700)); }
	.pmx-site .pmx-svc { grid-template-columns: 40px minmax(0, 1fr) 44px; }
}

/* ==========================================================================
   Slogan + gallery
   ========================================================================== */
.pmx-slogan {
	position: relative;
	background: var(--pmx-bg, var(--pmx-a900));
	color: #fff;
	overflow: hidden;
	padding: clamp(100px, 12vw, 180px) 0 clamp(80px, 9vw, 130px);
}
.pmx-slogan__bg { position: absolute; left: 0; right: 0; top: -14%; bottom: -14%; opacity: .28; filter: grayscale(.4); }
.pmx-slogan__shade {
	position: absolute; inset: 0; pointer-events: none;
	background: linear-gradient(180deg, var(--pmx-bg, #0c1f38) 0%, rgba(12, 31, 56, .55) 35%, rgba(12, 31, 56, .7) 70%, var(--pmx-bg, #0c1f38) 100%);
}
.pmx-slogan__map { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.pmx-slogan__inner { position: relative; }
.pmx-site .pmx-slogan__title {
	margin: 0;
	font-family: var(--pmx-font-h);
	font-weight: 500;
	font-size: clamp(60px, 13.5vw, 210px);
	line-height: .92;
	letter-spacing: -.025em;
	color: var(--pmx-heading, #fff);
}
.pmx-slogan__l1, .pmx-slogan__l2 { display: block; }
.pmx-slogan__l2 {
	text-align: end;
	background: linear-gradient(90deg, #d7dbe1 0%, #fff 20%, var(--pmx-accent-c, #4fd98a) 45%, #fff 70%, #d7dbe1 100%);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: pmxShimmer 9s linear infinite;
	padding-bottom: .08em;
}
.pmx-slogan__chain {
	display: flex; align-items: center; flex-wrap: wrap;
	gap: clamp(12px, 2vw, 24px);
	margin-top: clamp(40px, 5vw, 64px);
	font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
	color: var(--pmx-body, #d9e1ec);
}
.pmx-slogan__link { flex: 1; min-width: 30px; height: 2px; background: linear-gradient(90deg, rgba(79, 217, 138, .9), rgba(166, 198, 234, .4)); }
.pmx-slogan__link.is-rev { background: linear-gradient(90deg, rgba(166, 198, 234, .4), rgba(79, 217, 138, .9)); }

.pmx-gallery { margin-top: clamp(64px, 8vw, 110px); }
.pmx-gallery__viewport { overflow: hidden; }
.pmx-gallery__track { display: flex; transition: transform 1100ms cubic-bezier(.65, 0, .35, 1); }
.pmx-site .pmx-gallery__item { flex: 0 0 33.3333%; margin: 0; padding-inline-end: 20px; }
.pmx-gallery__media { position: relative; height: clamp(260px, 26vw, 380px); overflow: hidden; }
.pmx-gallery__zoom { position: absolute; inset: 0; filter: saturate(.8) contrast(1.05); transition: transform 1400ms var(--pmx-ease); }
.pmx-gallery__item:hover .pmx-gallery__zoom { transform: scale(1.05); }
.pmx-gallery figcaption { display: flex; justify-content: space-between; gap: 12px; padding-top: 14px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: #b7c3d4; }
.pmx-gallery__arrows { justify-content: flex-end; margin-top: 24px; }
@media (max-width: 999px) { .pmx-site .pmx-gallery__item { flex-basis: 50%; } }
@media (max-width: 639px) { .pmx-site .pmx-gallery__item { flex-basis: 100%; } }

/* ==========================================================================
   Testimonials slider
   ========================================================================== */
.pmx-tslider { background: var(--pmx-bg, transparent); padding: clamp(96px, 12vw, 170px) 0; }
.pmx-tslider__head { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 12px; }
.pmx-tslider__head .pmx-kicker { margin-bottom: 0; }
.pmx-tslider__head .pmx-link { font-size: 14px; }
.pmx-tslider__mark {
	font-family: var(--pmx-font-h);
	font-size: clamp(120px, 14vw, 200px);
	line-height: .8;
	color: var(--pmx-a200);
	height: clamp(80px, 9vw, 130px);
	margin-top: 24px;
}
.pmx-tslider__slides { display: grid; }
.pmx-tslider__slide { grid-area: 1 / 1; visibility: hidden; transition: visibility 0s linear 700ms; }
.pmx-tslider__slide.is-active { visibility: visible; transition-delay: 0s; }
.is-in .is-active > .pmx-tslider__quote { transition-delay: 80ms; }
.is-in .is-active > .pmx-person { transition-delay: 260ms; }
.pmx-site .pmx-tslider__quote {
	margin: 0 0 40px;
	padding: 0;
	border: 0;
	font-family: var(--pmx-font-h);
	font-weight: 400;
	font-style: normal;
	font-size: clamp(22px, 2.5vw, 34px);
	line-height: 1.45;
	letter-spacing: -.005em;
	color: var(--pmx-heading, var(--pmx-text));
	text-wrap: pretty;
}
.pmx-person { display: flex; align-items: center; gap: 18px; }
.pmx-person__photo, .pmx-tcard__photo { position: relative; width: 64px; height: 64px; flex-shrink: 0; border-radius: 50%; overflow: hidden; background: var(--pmx-surface); }
.pmx-person__photo.is-initials, .pmx-tcard__photo.is-initials {
	display: flex; align-items: center; justify-content: center;
	font-family: var(--pmx-font-h); font-size: 22px; color: var(--pmx-a700); background: var(--pmx-a200);
}
.pmx-person__name { font-size: 16px; font-weight: 600; color: var(--pmx-heading, var(--pmx-text)); }
.pmx-person__title { font-size: 13px; color: var(--pmx-body, var(--pmx-n700)); margin-top: 4px; }
.pmx-person__loc { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--pmx-n600); margin-top: 6px; }
.pmx-tslider__bar { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 56px; padding-top: 22px; border-top: 2px solid var(--pmx-divider); }
.pmx-tslider .pmx-counter { color: var(--pmx-heading, var(--pmx-text)); }
.pmx-tslider .pmx-counter__total { color: var(--pmx-n600); }
.pmx-tslider .pmx-segs { max-width: 320px; }
.pmx-tslider .pmx-seg__fill { background: var(--pmx-accent-c, var(--pmx-a700)); }
.pmx-tslider .pmx-arrows { margin-inline-start: auto; }

/* ==========================================================================
   Newsletter
   ========================================================================== */
.pmx-newsletter { position: relative; overflow: hidden; background: var(--pmx-bg, var(--pmx-a900)); color: #fff; }
.pmx-newsletter__bg { position: absolute; left: 0; right: 0; top: -14%; bottom: -14%; filter: saturate(.6) contrast(1.05); }
.pmx-newsletter__shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(100deg, rgba(12, 31, 56, .94) 0%, rgba(12, 31, 56, .8) 50%, rgba(12, 31, 56, .55) 100%); }
.pmx-newsletter__inner { position: relative; padding-top: clamp(110px, 13vw, 190px); padding-bottom: clamp(110px, 13vw, 190px); }
.pmx-site .pmx-newsletter__heading {
	font-family: var(--pmx-font-h); font-weight: 500;
	font-size: clamp(48px, 8vw, 124px); line-height: .96; letter-spacing: -.02em;
	margin: 0 0 clamp(40px, 5vw, 64px);
	color: var(--pmx-heading, #fff);
}
.pmx-newsletter__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 32px 64px; align-items: end; max-width: 1000px; }
.pmx-newsletter__text { font-size: 16px; line-height: 1.75; font-weight: 300; color: var(--pmx-body, #d9e1ec); margin: 0; max-width: 420px; }
.pmx-newsletter__form { display: flex; flex-wrap: wrap; border-bottom: 2px solid rgba(238, 242, 247, .5); }
.pmx-site .pmx-newsletter .pmx-form input.pmx-input {
	flex: 1 1 200px; min-width: 0;
	background: transparent; border: 0; border-radius: 0; box-shadow: none;
	color: #fff; font-family: var(--pmx-font-b); font-size: 16px;
	padding: 18px 0; outline-offset: 4px;
}
.pmx-site .pmx-newsletter .pmx-form input.pmx-input::placeholder { color: rgba(238, 242, 247, .6); }
.pmx-newsletter__form .pmx-btn { margin-bottom: 10px; }
.pmx-newsletter__form .pmx-form__error { flex-basis: 100%; }
.pmx-newsletter__done { display: flex; align-items: center; gap: 14px; padding: 18px 0; border-bottom: 2px solid var(--pmx-g400); font-size: 16px; color: #fff; }
.pmx-newsletter__done .pmx-icon { color: var(--pmx-g400); }
.pmx-newsletter__done[hidden], .pmx-contact__done[hidden], .pmx-form[hidden], .pmx-form__error[hidden] { display: none; }

/* Forms (shared) */
.pmx-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.pmx-form { position: relative; }
.pmx-form__error { margin: 10px 0 0; font-size: 14px; color: #ff8a80; }
.pmx-contact .pmx-form__error { color: #b3261e; }
.pmx-form.is-busy button[type="submit"] { opacity: .6; pointer-events: none; }

/* ==========================================================================
   Inner pages
   ========================================================================== */

/* Page header */
.pmx-page-header { position: relative; overflow: hidden; background: var(--pmx-bg, var(--pmx-a900)); padding: 80px 0 64px; }
.pmx-page-header__bg { position: absolute; left: 0; right: 0; top: -14%; bottom: -14%; opacity: .3; filter: grayscale(.3); }
.pmx-page-header.has-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(12, 31, 56, .9), rgba(12, 31, 56, .55)); pointer-events: none; }
.pmx-page-header__inner { position: relative; z-index: 1; }
.pmx-page-header .pmx-kicker { margin-bottom: 14px; font-size: 13px; letter-spacing: .14em; }
.pmx-site .pmx-page-header__title {
	font-family: var(--pmx-font-h); font-weight: 600;
	font-size: clamp(34px, 4vw, 44px); line-height: 1.1;
	margin: 0; color: var(--pmx-heading, #fff);
}
.pmx-page-header__sub { margin: 18px 0 0; max-width: 640px; font-size: 16px; line-height: 1.7; font-weight: 300; color: var(--pmx-body, #d9e1ec); }

/* Feature columns */
.pmx-features { background: var(--pmx-bg, var(--pmx-surface)); padding: 88px 0; }
.pmx-features__head { margin-bottom: 36px; }
.pmx-features__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2px; background: var(--pmx-divider); }
.pmx-feature { background: var(--pmx-bg, var(--pmx-surface)); padding: 36px 30px; }
.pmx-feature__icon { display: flex; color: var(--pmx-accent-c, var(--pmx-g700)); margin-bottom: 16px; }
.pmx-site .pmx-feature__title { font-family: var(--pmx-font-h); font-weight: 600; font-size: 20px; line-height: 1.3; color: var(--pmx-heading, var(--pmx-a700)); margin: 0 0 14px; }
.pmx-feature__text { font-size: 15px; line-height: 1.65; color: var(--pmx-body, var(--pmx-n700)); margin: 0; }

/* CTA bar */
.pmx-cta { padding: 64px 0; }
.pmx-cta__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.pmx-cta--boxed { padding: 0 0 88px; }
.pmx-cta--boxed .pmx-cta__inner { background: var(--pmx-surface); padding: 44px; }
.pmx-site .pmx-cta__heading { font-family: var(--pmx-font-h); font-weight: 600; font-size: clamp(22px, 2.2vw, 26px); line-height: 1.25; margin: 0; color: var(--pmx-heading, var(--pmx-text)); }
.pmx-tone--plain { background: var(--pmx-bg, transparent); }
.pmx-tone--surface { background: var(--pmx-bg, var(--pmx-surface)); }
.pmx-tone--dark { background: var(--pmx-bg, var(--pmx-a900)); }
.pmx-site .pmx-tone--dark .pmx-cta__heading, .pmx-site .pmx-tone--dark .pmx-list__heading { color: var(--pmx-heading, #fff); }

/* Services list */
.pmx-slist { background: var(--pmx-bg, transparent); padding: 80px 0; }
.pmx-slist__item { display: grid; grid-template-columns: 60px 1fr; gap: 28px; padding: 44px 0; border-bottom: 2px solid var(--pmx-divider); }
.pmx-slist__item.has-img { grid-template-columns: 60px 1fr minmax(0, 320px); }
.pmx-slist__num { font-family: var(--pmx-font-h); font-size: 28px; color: var(--pmx-accent-c, var(--pmx-a700)); }
.pmx-site .pmx-slist__title { display: flex; align-items: center; gap: 12px; font-family: var(--pmx-font-h); font-weight: 600; font-size: 26px; line-height: 1.25; margin: 0 0 14px; color: var(--pmx-heading, var(--pmx-text)); }
.pmx-slist__icon { display: flex; color: var(--pmx-accent-c, var(--pmx-a700)); }
.pmx-slist__text { font-size: 16px; line-height: 1.7; color: var(--pmx-body, var(--pmx-n700)); max-width: 720px; }
.pmx-slist__img { position: relative; min-height: 200px; overflow: hidden; }
@media (max-width: 800px) {
	.pmx-slist__item, .pmx-slist__item.has-img { grid-template-columns: 44px 1fr; gap: 16px; }
	.pmx-slist__img { grid-column: 1 / -1; min-height: 220px; }
	.pmx-site .pmx-slist__title { font-size: 22px; }
}

/* Profile header */
.pmx-profile { background: var(--pmx-bg, var(--pmx-a900)); padding: 80px 0; }
.pmx-profile__grid { display: grid; grid-template-columns: 220px 1fr; gap: 44px; align-items: center; }
.pmx-profile__photo { position: relative; width: 220px; height: 220px; overflow: hidden; background: var(--pmx-a800); }
.pmx-profile__photo.is-initials { display: flex; align-items: center; justify-content: center; font-family: var(--pmx-font-h); font-size: 72px; color: rgba(238, 242, 247, .35); }
.pmx-site .pmx-profile__name { font-family: var(--pmx-font-h); font-weight: 600; font-size: clamp(32px, 3.4vw, 38px); line-height: 1.1; color: var(--pmx-heading, #fff); margin: 0 0 10px; }
.pmx-profile__role { color: var(--pmx-accent-c, var(--pmx-g400)); font-size: 15px; letter-spacing: .02em; margin: 0 0 22px; }
.pmx-profile .pmx-btn { padding: 12px 24px; }
@media (max-width: 700px) {
	.pmx-profile__grid { grid-template-columns: 1fr; gap: 28px; }
	.pmx-profile__photo { width: 160px; height: 160px; }
}

/* Prose */
.pmx-prose { background: var(--pmx-bg, transparent); padding: 72px 0; }
.pmx-prose__lead { font-size: 17px; line-height: 1.75; color: var(--pmx-heading, var(--pmx-text)); margin-bottom: 1em; }
.pmx-prose__text { font-size: 15px; line-height: 1.7; color: var(--pmx-body, var(--pmx-n700)); }

/* List */
.pmx-list { padding: 72px 0; }
.pmx-list.pmx-space--top-none { padding-top: 32px; }
.pmx-list.pmx-space--bottom-none { padding-bottom: 0; }
.pmx-site .pmx-list__heading { font-family: var(--pmx-font-h); font-weight: 600; font-size: 26px; line-height: 1.25; margin: 0 0 24px; color: var(--pmx-heading, var(--pmx-text)); }
.pmx-site .pmx-list__heading--h3 { font-size: 18px; margin: 0 0 14px; color: var(--pmx-heading, var(--pmx-a700)); }
.pmx-list__items { list-style: none; margin: 0; padding: 0; }
.pmx-list__item { font-size: 15px; line-height: 1.5; color: var(--pmx-body, var(--pmx-text)); }
.pmx-list--rules .pmx-list__item { padding: 16px 0; border-bottom: 2px solid var(--pmx-divider); }
.pmx-list--rules .pmx-list__item:last-child { border-bottom: 0; }
.pmx-list--bullets .pmx-list__items { display: flex; flex-direction: column; gap: 14px; }
.pmx-list--bullets .pmx-list__item { display: flex; gap: 14px; align-items: baseline; line-height: 1.6; }
.pmx-list--bullets .pmx-list__item::before { content: ""; width: 6px; height: 6px; flex-shrink: 0; background: var(--pmx-accent-c, var(--pmx-g500)); transform: translateY(-2px); }
.pmx-list__note { color: var(--pmx-n600); }
.pmx-tone--dark .pmx-list__item { color: var(--pmx-body, var(--pmx-light)); }
.pmx-tone--dark .pmx-list__note { color: #b7c3d4; }
.pmx-tone--dark.pmx-list--rules .pmx-list__item { border-color: rgba(238, 242, 247, .16); }

/* Testimonials grid */
.pmx-tgrid { background: var(--pmx-bg, transparent); padding: 80px 0; }
.pmx-tgrid__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px; background: var(--pmx-divider); }
.pmx-site .pmx-tcard { margin: 0; background: var(--pmx-bg, var(--pmx-bg-page)); padding: 40px; display: flex; flex-direction: column; gap: 20px; min-height: 280px; }
.pmx-site .pmx-tcard__quote { margin: 0; padding: 0; border: 0; flex: 1; font-family: var(--pmx-font-h); font-style: normal; font-size: 17px; line-height: 1.6; color: var(--pmx-heading, var(--pmx-text)); }
.pmx-tcard__name { font-size: 14px; font-weight: 600; color: var(--pmx-a800); }
.pmx-tcard__meta { font-size: 13px; color: var(--pmx-body, var(--pmx-n600)); }
.pmx-tcard__sector { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--pmx-accent-c, var(--pmx-g700)); margin-top: 6px; }
@media (max-width: 700px) { .pmx-site .pmx-tcard { padding: 28px 22px; } }

/* Contact */
.pmx-contact { background: var(--pmx-bg, transparent); padding: 80px 0; }
.pmx-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.pmx-site .pmx-contact__group { font-family: var(--pmx-font-h); font-weight: 600; font-size: 22px; margin: 0 0 12px; color: var(--pmx-heading, var(--pmx-text)); }
.pmx-contact__rows { list-style: none; margin: 0 0 36px; padding: 0; }
.pmx-contact__rows li { padding: 14px 0; border-bottom: 2px solid var(--pmx-divider); font-size: 15px; color: var(--pmx-body, var(--pmx-text)); }
.pmx-contact__rows li:last-child { border-bottom: 0; }
.pmx-contact__note { font-size: 15px; color: var(--pmx-n600); margin: 0; }
.pmx-contact__direct { margin-top: 36px; padding-top: 36px; border-top: 2px solid var(--pmx-divider); }
.pmx-site .pmx-contact__direct-title { font-family: var(--pmx-font-h); font-weight: 600; font-size: 17px; margin: 0 0 10px; color: var(--pmx-accent-c, var(--pmx-a700)); }
.pmx-contact__card { background: var(--pmx-surface); padding: 40px; }
.pmx-site .pmx-contact__form-title { font-family: var(--pmx-font-h); font-weight: 600; font-size: 20px; margin: 0 0 24px; color: var(--pmx-heading, var(--pmx-text)); }
.pmx-contact__form { display: flex; flex-direction: column; gap: 18px; }
.pmx-field label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--pmx-text); }
.pmx-site .pmx-contact .pmx-form .pmx-input {
	width: 100%;
	background: #fff;
	border: 2px solid var(--pmx-n300);
	border-radius: 0;
	box-shadow: none;
	padding: 12px 14px;
	font-family: var(--pmx-font-b);
	font-size: 15px;
	color: var(--pmx-text);
	transition: border-color 200ms ease;
}
.pmx-site .pmx-contact .pmx-form .pmx-input:focus { outline: none; border-color: var(--pmx-a500); }
.pmx-site .pmx-contact .pmx-form textarea.pmx-input { min-height: 140px; resize: vertical; }
.pmx-contact__form .pmx-btn { align-self: flex-start; }
.pmx-contact__done { display: flex; gap: 12px; align-items: flex-start; padding: 18px 0; font-size: 16px; color: var(--pmx-text); }
.pmx-contact__done .pmx-icon { color: var(--pmx-g500); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 860px) {
	.pmx-contact__grid { grid-template-columns: 1fr; gap: 44px; }
	.pmx-contact__card { padding: 28px 22px; }
}

/* ==========================================================================
   Motion preferences
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
	.pmx-site *, .pmx-site *::before, .pmx-site *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
	.pmx-motion { display: none; }
}
