/*
 * pzt-child landing & shared section styles.
 *
 * 1:1 port of design-refs/01/project/src/styles.css with classes prefixed pzt-.
 * Tokens come from main.css (:root). Inter font is loaded by fonts.css.
 *
 * Class taxonomy:
 *   .pzt-container       max-width 1140 wrapper
 *   .pzt-section         vertical rhythm wrapper
 *   .pzt-section--alt    alternating bg-alt section
 *   .pzt-s-head          centered section heading group
 *   .pzt-eyebrow         small UPPERCASE label (defined in main.css)
 *   .pzt-grid-{2..6}     simple grid layouts
 *   .pzt-btn             button primitive + modifiers
 *   .pzt-placeholder     dev-time visible token (defined in main.css)
 */

* { box-sizing: border-box; }

body {
	margin: 0;
}

/* ============================================================
   Layout primitives
   ============================================================ */
.pzt-container {
	max-width: var(--pzt-container);
	margin: 0 auto;
	padding: 0 var(--pzt-container-padding);
}

.pzt-section { padding: 80px 0; }
.pzt-section--alt { background: var(--pzt-bg-alt); }

.pzt-s-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.pzt-s-head .pzt-lede { font-size: 16px; color: var(--pzt-text-secondary); margin-top: 8px; }

.pzt-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pzt-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pzt-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pzt-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.pzt-grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ============================================================
   Buttons
   ============================================================ */
.pzt-btn {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 12px 22px;
	border-radius: var(--pzt-radius-md);
	font-weight: 500;
	font-size: 14px;
	border: 1px solid transparent;
	cursor: pointer;
	font-family: inherit;
	transition: all 180ms cubic-bezier(0.4, 0, 0.2, 1);
	white-space: nowrap;
	text-decoration: none;
	line-height: 1;
}
.pzt-btn:active { transform: translateY(1px); }
.pzt-btn--bronze  { background: var(--pzt-bronze); color: #fff; }
.pzt-btn--bronze:hover { background: var(--pzt-bronze-hover); color: #fff; }
.pzt-btn--outline { background: transparent; color: var(--pzt-bronze); border-color: var(--pzt-bronze); }
.pzt-btn--outline:hover { background: var(--pzt-bronze); color: #fff; }
.pzt-btn--navy    { background: var(--pzt-navy); color: #fff; }
.pzt-btn--navy:hover { background: var(--pzt-navy-deep); color: #fff; }

/* Anchor-tag specificity boost. Blocksy's main bundle loads later than ours
   and has `a { color: var(--theme-link-initial-color) }` which can win the
   cascade in some contexts. Selector `a.pzt-btn--*` (0,1,1) beats both our
   own (0,1,0) AND Blocksy's plain (0,0,1) so the button text always renders. */
a.pzt-btn--bronze,
a.pzt-btn--bronze:hover,
a.pzt-btn--bronze:visited,
a.pzt-btn--navy,
a.pzt-btn--navy:hover,
a.pzt-btn--navy:visited {
	color: #fff;
}
a.pzt-btn--outline,
a.pzt-btn--outline:visited {
	color: var(--pzt-bronze);
}
a.pzt-btn--outline:hover {
	color: #fff;
}

/* ============================================================
   Header (sticky navy)
   ============================================================ */
.pzt-header {
	position: sticky; top: 0; z-index: 100;
	background: var(--pzt-navy);
	color: #fff; height: 72px;
	display: flex; align-items: center;
}
.pzt-header .pzt-container { display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.pzt-header .pzt-burger,
.pzt-header .pzt-phone-icon { display: none; }
.pzt-drawer, .pzt-drawer-backdrop { display: none; }

.pzt-logo {
	font-weight: 500; font-size: 16px; letter-spacing: -0.01em;
	color: #fff; text-decoration: none; white-space: nowrap;
	display: inline-flex; align-items: center; line-height: 1;
}
.pzt-logo .pzt-placeholder { font-weight: 500; }

/* Image logo rendered by pzt_render_logo(). One sizing rule per context;
   all variants are <img class="pzt-logo-img pzt-logo-img--<ctx>">.        */
.pzt-logo-img { display: block; height: auto; }
.pzt-logo-img--header { max-height: 40px; max-width: 220px; }
.pzt-logo-img--drawer { max-height: 34px; max-width: 180px; }
.pzt-logo-img--footer { max-height: 56px; max-width: 240px; margin-bottom: 14px; }
@media (max-width: 1023px) {
	.pzt-logo-img--header { max-height: 32px; max-width: 170px; }
}

.pzt-header nav { display: flex; gap: 28px; flex: 1; justify-content: center; }
.pzt-header nav a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none; font-size: 14px;
	transition: color 180ms; font-weight: 400;
}
.pzt-header nav a:hover { color: var(--pzt-bronze-hover); }

.pzt-header-right { display: flex; align-items: center; gap: 16px; }
.pzt-header-phone { color: #fff; font-weight: 500; font-size: 14px; }

/* ============================================================
   Hero (flat navy, NO gradient)
   ============================================================ */
.pzt-hero {
	background: var(--pzt-navy);
	color: #fff;
	padding: 72px 0 84px;
}
.pzt-hero .pzt-container {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 56px;
	align-items: center;
}
.pzt-hero h1 { color: #fff; margin-bottom: 18px; max-width: 560px; font-size: 32px; line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }
.pzt-hero .pzt-lede {
	font-size: 16px; line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
	margin-bottom: 28px; max-width: 520px;
}

.pzt-hero-photo {
	width: 100%;
	aspect-ratio: 4 / 5;
	background: #1A3A5C;
	border: 1px dashed rgba(184, 146, 77, 0.6);
	border-radius: 8px;
	display: flex; align-items: center; justify-content: center;
	position: relative; overflow: hidden;
}
.pzt-hero-photo--filled {
	border: none;
	background: transparent;
}
.pzt-hero-photo--filled img {
	width: 100%; height: 100%; object-fit: cover; display: block;
}
.pzt-hero-photo .pzt-placeholder { font-size: 13px; }
.pzt-hero-photo .pzt-corner {
	position: absolute; top: 12px; left: 12px;
	font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px;
	color: rgba(255, 255, 255, 0.45); font-weight: 500;
}

/* Full-width photo band between sections (service + industry pages).
   Image set inline as background-image; we control aspect via this class.
   Slight bottom shadow blends into the next section visually.            */
.pzt-section-band {
	width: 100%;
	aspect-ratio: 21 / 6;
	background-size: cover;
	background-position: center 30%;
	background-repeat: no-repeat;
	box-shadow: inset 0 -28px 32px -28px rgba(15, 42, 71, 0.18);
}
@media (max-width: 767px) {
	.pzt-section-band { aspect-ratio: 16 / 9; }
}

.pzt-hero-form {
	background: #fff;
	padding: 22px 22px 20px;
	border-radius: 8px;
	box-shadow: 0 12px 28px rgba(8, 24, 43, 0.30);
	max-width: 460px;
	margin-top: 8px;
}
.pzt-hero-form h3 { color: var(--pzt-navy); font-size: 17px; margin: 0 0 4px; font-weight: 600; }
.pzt-hero-form .pzt-sub { font-size: 13px; color: var(--pzt-text-secondary); margin-bottom: 16px; }
.pzt-hero-form .pzt-btn { width: 100%; padding: 13px; }

.pzt-field { margin-bottom: 12px; }
.pzt-field label { display: block; font-size: 12px; color: var(--pzt-text-secondary); font-weight: 500; margin-bottom: 6px; }
.pzt-field input {
	width: 100%; padding: 11px 14px;
	border: 1px solid var(--pzt-border-strong);
	border-radius: 8px;
	font-size: 14px; font-family: inherit; color: var(--pzt-graphite);
	outline: none; transition: border-color 180ms; font-weight: 400;
	background: #fff;
}
.pzt-field input:focus { border-color: var(--pzt-bronze); box-shadow: 0 0 0 3px rgba(184, 146, 77, 0.12); }

.pzt-consent { font-size: 11px; color: var(--pzt-text-tertiary); margin-top: 12px; line-height: 1.5; }
.pzt-consent a { color: var(--pzt-text-secondary); }

.pzt-hero-trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 8px; margin-bottom: 24px; }
.pzt-hero-trust .pzt-item {
	display: flex; gap: 8px; align-items: center;
	font-size: 13px; color: rgba(255, 255, 255, 0.85); font-weight: 400;
}
.pzt-hero-trust svg { color: var(--pzt-bronze); flex-shrink: 0; }

/* ============================================================
   Service card (5-up grid)
   ============================================================ */
.pzt-s-card {
	background: #fff;
	border: 1px solid var(--pzt-border);
	border-radius: 8px;
	padding: 22px;
	transition: all 180ms cubic-bezier(0.4, 0, 0.2, 1);
	display: flex; flex-direction: column;
}
.pzt-s-card:hover {
	border-color: var(--pzt-bronze);
	box-shadow: 0 4px 12px rgba(15, 42, 71, 0.08);
	transform: translateY(-2px);
}
.pzt-s-card svg { width: 28px; height: 28px; color: var(--pzt-bronze); margin-bottom: 16px; }
.pzt-s-card h3 { margin: 0 0 6px; font-size: 16px; font-weight: 600; color: var(--pzt-navy); }
.pzt-s-card p { font-size: 13px; color: var(--pzt-text-secondary); margin: 0 0 18px; flex: 1; line-height: 1.55; }
.pzt-s-card .pzt-btn { align-self: flex-start; padding: 8px 14px; font-size: 13px; }

/* ============================================================
   Industry card (3-up grid)
   ============================================================ */
.pzt-i-card {
	background: #fff;
	border: 1px solid var(--pzt-border);
	border-radius: 8px;
	padding: 24px;
	display: flex; flex-direction: column;
}
.pzt-i-card .pzt-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; gap: 12px; }
.pzt-i-card svg { width: 28px; height: 28px; color: var(--pzt-bronze); flex-shrink: 0; }
.pzt-i-card .pzt-price { text-align: right; }
.pzt-i-card .pzt-price .pzt-from {
	display: block; font-size: 11px; color: var(--pzt-text-tertiary);
	text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;
}
.pzt-i-card .pzt-price .pzt-val {
	font-size: 26px; font-weight: 500;
	color: var(--pzt-navy); line-height: 1.05; letter-spacing: -0.01em;
}
.pzt-i-card .pzt-price .pzt-val .pzt-placeholder { font-size: 14px; }
.pzt-i-card h3 { margin: 0 0 10px; font-size: 16px; font-weight: 600; color: var(--pzt-navy); }
.pzt-i-card ul {
	list-style: none; padding: 0; margin: 0 0 18px;
	font-size: 13px; color: var(--pzt-text-secondary);
	line-height: 1.7; flex: 1;
}
.pzt-i-card ul li { display: flex; align-items: flex-start; gap: 8px; }
.pzt-i-card ul li::before {
	content: "·"; color: var(--pzt-bronze);
	font-weight: 500; flex-shrink: 0; line-height: 1.5;
}
.pzt-i-card .pzt-btn { padding: 8px 14px; font-size: 13px; align-self: flex-start; }

/* ============================================================
   Process steps (4-up)
   ============================================================ */
.pzt-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
.pzt-step {
	background: #fff;
	border: 1px solid var(--pzt-border);
	border-radius: 8px;
	padding: 22px;
	position: relative;
}
.pzt-step .pzt-num {
	width: 32px; height: 32px;
	border-radius: 50%;
	background: var(--pzt-navy); color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-size: 14px; font-weight: 500;
	margin-bottom: 16px;
}
.pzt-step h3 { margin: 0 0 6px; font-size: 15px; font-weight: 600; color: var(--pzt-navy); }
.pzt-step p { margin: 0; font-size: 13px; color: var(--pzt-text-secondary); line-height: 1.55; }

/* ============================================================
   Why us (3×2)
   ============================================================ */
.pzt-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 40px; }
.pzt-benefit { display: flex; gap: 14px; }
.pzt-benefit svg { width: 22px; height: 22px; color: var(--pzt-bronze); flex-shrink: 0; margin-top: 2px; }
.pzt-benefit h3 { margin: 0 0 4px; font-size: 15px; font-weight: 600; color: var(--pzt-navy); }
.pzt-benefit p  { margin: 0; font-size: 13px; color: var(--pzt-text-secondary); line-height: 1.55; }

/* ============================================================
   CTA dark block (flat navy)
   ============================================================ */
.pzt-cta-dark {
	background: var(--pzt-navy);
	color: #fff;
	border-radius: 12px;
	padding: 44px 48px;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 40px;
	align-items: center;
}
.pzt-cta-dark .pzt-eyebrow { color: var(--pzt-bronze-hover); margin-bottom: 12px; }
.pzt-cta-dark h2 { color: #fff; margin: 0 0 8px; font-size: 24px; font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; }
.pzt-cta-dark p { font-size: 14px; color: rgba(255, 255, 255, 0.78); max-width: 420px; margin: 0; line-height: 1.6; }
.pzt-cta-form { display: flex; gap: 8px; }
.pzt-cta-form input {
	flex: 1; padding: 12px 14px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 14px; font-family: inherit; color: var(--pzt-graphite);
	background: #fff; font-weight: 400; min-width: 0;
}
.pzt-cta-form input::placeholder { color: var(--pzt-text-tertiary); }
.pzt-cta-form .pzt-btn { flex-shrink: 0; }

/* ============================================================
   Accreditations (5-up partner cards)
   ============================================================ */
.pzt-accred { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.pzt-partner {
	background: #fff;
	border: 1px solid var(--pzt-border);
	border-radius: 8px;
	padding: 22px 18px;
	text-align: center;
	cursor: pointer;
	transition: all 180ms;
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	min-height: 110px; justify-content: center;
}
.pzt-partner:hover { border-color: var(--pzt-bronze); box-shadow: 0 2px 8px rgba(15, 42, 71, 0.06); }
.pzt-partner .pzt-pname { font-size: 12px; color: var(--pzt-text-secondary); font-weight: 500; }
.pzt-partner .pzt-num { font-size: 11px; color: var(--pzt-text-tertiary); font-feature-settings: "tnum" 1; }

/* ============================================================
   Testimonial card (3-up)
   ============================================================ */
.pzt-t-card {
	background: #fff;
	border: 1px solid var(--pzt-border);
	border-radius: 8px;
	padding: 24px;
	display: flex; flex-direction: column;
}
.pzt-t-card .pzt-quote {
	font-size: 14px; color: var(--pzt-graphite);
	line-height: 1.7; margin: 0 0 18px; flex: 1;
}
.pzt-t-card .pzt-quote::before { content: "\201C"; color: var(--pzt-bronze); margin-right: 1px; }
.pzt-t-card .pzt-quote::after  { content: "\201D"; color: var(--pzt-bronze); margin-left: 1px; }
.pzt-t-card .pzt-who {
	display: flex; justify-content: space-between; align-items: flex-start;
	gap: 14px; padding-top: 14px; border-top: 1px solid #F1F5F9;
}
.pzt-t-card .pzt-name { font-size: 14px; font-weight: 500; color: var(--pzt-navy); }
.pzt-t-card .pzt-role { font-size: 12px; color: var(--pzt-text-secondary); margin-top: 4px; line-height: 1.45; }
.pzt-t-card .pzt-scan {
	font-size: 12px; color: var(--pzt-bronze); text-decoration: none;
	border-bottom: 1px dashed var(--pzt-bronze); padding-bottom: 1px;
	white-space: nowrap; cursor: pointer; flex-shrink: 0;
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.pzt-faq { max-width: 760px; margin: 0 auto; }
.pzt-faq-item {
	border-bottom: 1px solid var(--pzt-border);
	padding: 18px 0;
	cursor: pointer;
}
.pzt-faq-item .pzt-q {
	display: flex; justify-content: space-between; align-items: center;
	gap: 16px; font-size: 16px; font-weight: 500; color: var(--pzt-navy);
}
.pzt-faq-item .pzt-chev { width: 18px; height: 18px; color: var(--pzt-bronze); transition: transform 180ms; flex-shrink: 0; }
.pzt-faq-item.is-open .pzt-chev { transform: rotate(180deg); }
.pzt-faq-item .pzt-a {
	font-size: 14px; color: var(--pzt-text-secondary);
	line-height: 1.65; padding-top: 14px; max-width: 640px;
}
.pzt-faq-item:not(.is-open) .pzt-a { display: none; }

/* ============================================================
   Footer
   ============================================================ */
.pzt-footer {
	background: var(--pzt-navy-deep);
	color: #CBD5E0;
	padding: 56px 0 28px;
	font-size: 13px;
}
.pzt-footer .pzt-container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.pzt-footer h6 {
	color: #fff; font-size: 12px; font-weight: 500;
	text-transform: uppercase; letter-spacing: 0.4px; margin: 0 0 14px;
}
.pzt-footer .pzt-col-links { display: flex; flex-direction: column; gap: 4px; }
.pzt-footer a { color: #CBD5E0; text-decoration: none; padding: 4px 0; font-size: 13px; }
.pzt-footer a:hover { color: var(--pzt-bronze); }
.pzt-footer .pzt-req { font-size: 12px; line-height: 1.7; color: #A0AEC0; }
.pzt-footer .pzt-footer-logo { font-weight: 500; font-size: 16px; color: #fff; margin-bottom: 14px; letter-spacing: -0.01em; }

.pzt-footer-bottom {
	max-width: var(--pzt-container);
	margin: 36px auto 0;
	padding: 20px var(--pzt-container-padding) 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 12px;
	color: #718096;
	display: flex; justify-content: space-between;
}

/* ============================================================
   Sticky callback widget — the ONLY green element on the page
   ============================================================ */
.pzt-callback { position: fixed; bottom: 24px; right: 24px; z-index: 200; }
.pzt-callback-pill {
	background: var(--pzt-green-callback);
	color: #fff;
	border-radius: 999px;
	padding: 13px 22px 13px 16px;
	display: flex; align-items: center; gap: 10px;
	font-weight: 500; font-size: 14px;
	box-shadow: 0 8px 24px rgba(46, 139, 87, 0.30);
	cursor: pointer; border: none; font-family: inherit;
	transition: background 180ms;
}
.pzt-callback-pill:hover { background: var(--pzt-green-callback-hover); }

.pzt-dot {
	width: 9px; height: 9px;
	border-radius: 50%;
	background: #fff;
	position: relative; flex-shrink: 0;
}
.pzt-dot::after {
	content: ""; position: absolute; inset: -6px;
	border-radius: 50%; background: rgba(255, 255, 255, 0.4);
	animation: pzt-pulse 1.8s ease-in-out infinite;
}
@keyframes pzt-pulse {
	0%, 100% { transform: scale(0.6); opacity: 0.7; }
	50%      { transform: scale(1.2); opacity: 0; }
}

.pzt-callback-form {
	width: 300px; background: #fff;
	border-radius: 12px;
	box-shadow: 0 12px 28px rgba(15, 42, 71, 0.18);
	overflow: hidden;
}
.pzt-callback-form .pzt-head {
	background: var(--pzt-green-callback); color: #fff;
	padding: 14px 18px;
	display: flex; justify-content: space-between; align-items: center;
}
.pzt-callback-form .pzt-head h4 { margin: 0; font-size: 15px; font-weight: 500; }
.pzt-callback-form .pzt-close {
	background: none; border: none; color: #fff;
	font-size: 22px; line-height: 1; cursor: pointer; opacity: 0.85;
	padding: 0; width: 22px; height: 22px;
}
.pzt-callback-form .pzt-body { padding: 18px; }
.pzt-callback-form input {
	width: 100%; padding: 11px 14px;
	border: 1px solid var(--pzt-border-strong);
	border-radius: 8px;
	font-size: 14px; margin-bottom: 10px;
	box-sizing: border-box; font-family: inherit; font-weight: 400;
}
.pzt-callback-form button {
	width: 100%; padding: 12px;
	background: var(--pzt-green-callback);
	color: #fff; border: none;
	border-radius: 8px;
	font-size: 14px; font-weight: 500;
	cursor: pointer; font-family: inherit;
}
.pzt-callback-form .pzt-tiny { font-size: 11px; color: var(--pzt-text-tertiary); margin-top: 10px; line-height: 1.5; }

/* Hide the alternate state by default */
.pzt-callback .pzt-callback-form { display: none; }
.pzt-callback.is-open .pzt-callback-pill { display: none; }
.pzt-callback.is-open .pzt-callback-form { display: block; }

/* ============================================================
   Mobile (<= 480px)
   ============================================================ */
@media (max-width: 480px) {
	body { font-size: 15px; }

	.pzt-container { padding: 0 16px; }
	.pzt-section { padding: 48px 0; }

	.pzt-s-head { margin-bottom: 32px; }
	.pzt-s-head .pzt-lede { font-size: 14px; }

	/* Header → burger | logo | phone-icon */
	.pzt-header { height: 60px; }
	.pzt-header .pzt-container { gap: 12px; }
	.pzt-header nav,
	.pzt-header .pzt-header-phone,
	.pzt-header-right .pzt-btn--bronze { display: none; }
	.pzt-header .pzt-burger {
		display: flex; align-items: center; justify-content: center;
		width: 40px; height: 40px; margin-left: -8px;
		background: transparent; border: none; color: #fff; cursor: pointer; padding: 0;
	}
	.pzt-header .pzt-phone-icon {
		display: flex; align-items: center; justify-content: center;
		width: 40px; height: 40px;
		background: var(--pzt-bronze); color: #fff;
		border-radius: 8px; border: none; cursor: pointer; padding: 0;
		text-decoration: none;
	}
	.pzt-drawer, .pzt-drawer-backdrop { display: block; }
	.pzt-logo { font-size: 14px; }
	.pzt-logo .pzt-placeholder { font-size: 11px; padding: 1px 5px; }

	/* Drawer */
	.pzt-drawer-backdrop {
		position: fixed; inset: 0;
		background: rgba(8, 24, 43, 0.55);
		z-index: 99;
		opacity: 0; pointer-events: none;
		transition: opacity 200ms;
	}
	.pzt-drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
	.pzt-drawer {
		position: fixed; top: 0; left: 0; bottom: 0;
		width: 84%; max-width: 320px;
		background: var(--pzt-navy);
		color: #fff;
		z-index: 101;
		transform: translateX(-100%);
		transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1);
		display: flex; flex-direction: column;
		padding: 60px 20px 24px;
	}
	.pzt-drawer.is-open { transform: translateX(0); }
	.pzt-drawer .pzt-close-x {
		position: absolute; top: 14px; right: 14px;
		width: 36px; height: 36px;
		background: transparent; border: none; color: #fff; cursor: pointer;
		display: flex; align-items: center; justify-content: center; padding: 0;
	}
	.pzt-drawer .pzt-drawer-logo { font-size: 13px; margin-bottom: 28px; }
	.pzt-drawer nav { display: flex; flex-direction: column; gap: 0; }
	.pzt-drawer nav a {
		color: rgba(255, 255, 255, 0.92);
		font-size: 16px; font-weight: 500;
		padding: 14px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		text-decoration: none;
	}
	.pzt-drawer nav a:last-child { border-bottom: none; }
	.pzt-drawer .pzt-drawer-cta { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; gap: 12px; }
	.pzt-drawer .pzt-drawer-phone {
		color: #fff; font-size: 18px; font-weight: 500;
		text-decoration: none;
		display: flex; align-items: center; gap: 10px;
	}
	.pzt-drawer .pzt-drawer-phone svg { color: var(--pzt-bronze); }
	.pzt-drawer .pzt-btn--bronze { width: 100%; padding: 13px; }

	/* Hero */
	.pzt-hero { padding: 32px 0 40px; }
	.pzt-hero .pzt-container { grid-template-columns: 1fr; gap: 28px; }
	.pzt-hero h1 { font-size: 26px; max-width: none; }
	.pzt-hero .pzt-lede { font-size: 15px; max-width: none; margin-bottom: 20px; }
	.pzt-hero-trust { gap: 8px 16px; margin-top: 4px; margin-bottom: 4px; }
	.pzt-hero-trust .pzt-item { font-size: 12px; }
	.pzt-hero-photo { display: none; }
	.pzt-hero-form { padding: 18px; max-width: none; margin-top: 12px; }

	/* Service cards: 1 per row, icon left of title */
	.pzt-grid-5 { grid-template-columns: 1fr; gap: 12px; }
	.pzt-s-card {
		padding: 18px;
		flex-direction: row; flex-wrap: wrap;
		align-items: flex-start; column-gap: 14px;
	}
	.pzt-s-card svg { width: 28px; height: 28px; margin-bottom: 0; margin-top: 2px; flex-shrink: 0; }
	.pzt-s-card h3 { margin-bottom: 4px; flex: 1; min-width: 0; }
	.pzt-s-card p { flex-basis: 100%; margin: 6px 0 14px; font-size: 13px; }
	.pzt-s-card .pzt-btn { flex-basis: 100%; align-self: stretch; padding: 10px; font-size: 13px; }

	/* Industry cards: 1 per row */
	.pzt-grid-4,
	.pzt-grid-6 { grid-template-columns: 1fr; gap: 12px; }
	.pzt-i-card { padding: 20px; }
	.pzt-i-card .pzt-price .pzt-val { font-size: 22px; }
	.pzt-i-card .pzt-btn { width: 100%; padding: 10px; font-size: 13px; text-align: center; justify-content: center; }

	/* Process: vertical, big number left */
	.pzt-steps { grid-template-columns: 1fr; gap: 12px; }
	.pzt-step {
		display: grid; grid-template-columns: 56px 1fr; gap: 16px;
		padding: 18px; align-items: start;
	}
	.pzt-step .pzt-num { width: 44px; height: 44px; font-size: 18px; margin-bottom: 0; }
	.pzt-step h3 { margin-bottom: 4px; font-size: 15px; }
	.pzt-step p { font-size: 13px; }

	/* Why us: 1 column */
	.pzt-benefits { grid-template-columns: 1fr; gap: 22px; }
	.pzt-benefit svg { width: 22px; height: 22px; }

	/* CTA dark: form vertical under text */
	.pzt-cta-dark {
		grid-template-columns: 1fr;
		padding: 28px 22px;
		gap: 24px; border-radius: 8px;
	}
	.pzt-cta-dark h2 { font-size: 20px; }
	.pzt-cta-dark p { font-size: 14px; }
	.pzt-cta-form { flex-direction: column; gap: 10px; }
	.pzt-cta-form input { padding: 13px 14px; }
	.pzt-cta-form .pzt-btn { width: 100%; padding: 13px; }

	/* Accreditations: 2 per row */
	.pzt-accred { grid-template-columns: 1fr 1fr; gap: 10px; }
	.pzt-partner { padding: 18px 12px; min-height: 92px; }

	/* Testimonials: 1 per row */
	.pzt-grid-3 { grid-template-columns: 1fr; gap: 12px; }
	.pzt-t-card { padding: 20px; }
	.pzt-t-card .pzt-who { flex-direction: column; align-items: flex-start; gap: 12px; }

	/* FAQ */
	.pzt-faq-item { padding: 16px 0; }
	.pzt-faq-item .pzt-q { font-size: 15px; }
	.pzt-faq-item .pzt-a { font-size: 13px; }

	/* Footer: 1 column */
	.pzt-footer { padding: 40px 0 24px; }
	.pzt-footer .pzt-container { grid-template-columns: 1fr; gap: 28px; }
	.pzt-footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }

	/* Sticky callback */
	.pzt-callback { bottom: 16px; right: 16px; }
	.pzt-callback-pill { padding: 11px 18px 11px 14px; font-size: 13px; }
	.pzt-callback-form { width: calc(100vw - 32px); max-width: 320px; }
}

/* ============================================================
   Contact Form 7 integration
   ============================================================ */

/* CF7 wraps every form-tag in <span class="wpcf7-form-control-wrap"> —
   make those spans transparent for layout. */
.pzt-hero-form .wpcf7-form-control-wrap { display: block; }
.pzt-hero-form .wpcf7-form-control-wrap input { width: 100%; }

/* CTA inline forms — flex container is the wpcf7-form itself
   (pzt-cta-form class added via wpcf7_form_class_attr filter).

   CF7 wraps the tags in a <p> and injects a <br> between input and submit,
   which stacks them with no control over spacing. We neutralise that: make
   the <p> the real flex row, hide the <br>, let input grow + button sit
   beside it with a comfortable gap. */
.pzt-cta-form > p {
	display: flex;
	gap: 10px;
	align-items: stretch;
	margin: 0;
	flex-wrap: wrap;
}
.pzt-cta-form > p br { display: none; }
.pzt-cta-form .wpcf7-form-control-wrap { flex: 1 1 220px; min-width: 0; display: block; }
.pzt-cta-form .wpcf7-form-control-wrap input { width: 100%; }
.pzt-cta-form input[type="submit"] { flex: 0 0 auto; }
/* Legacy direct-child fallback (if CF7 markup ever changes to no <p>). */
.pzt-cta-form > .wpcf7-form-control-wrap { flex: 1 1 220px; min-width: 0; }
.pzt-cta-form > .wpcf7-form-control-wrap input { width: 100%; }

/* Callback widget — submit is <input type="submit">, not <button>.
   Override .pzt-btn--bronze (which CF7 picks up from class:* modifier
   isn't applied here; we keep submit clean and style by container). */
.pzt-callback-form input[type="submit"] {
	width: 100%;
	padding: 12px;
	background: var(--pzt-green-callback);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	font-family: inherit;
	transition: background 180ms;
	margin-top: 4px;
}
.pzt-callback-form input[type="submit"]:hover {
	background: var(--pzt-green-callback-hover);
}

/* CF7 response output — beefier than default so users actually notice it.
   Hidden by default (CF7 keeps aria-hidden="true" until first submission).
   Also hidden when truly empty (defensive — covers cached pages where the
   plugin updated aria-hidden but our css cache is stale). */
.wpcf7-response-output {
	margin: 16px 0 0 !important;
	padding: 14px 18px;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.5;
	border: 1px solid transparent;
	font-weight: 500;
	background: transparent;
}
.wpcf7-response-output[aria-hidden="true"],
.wpcf7-response-output:empty {
	display: none;
}

/* Согласие на обработку ПДн — чекбокс (acceptance-pdn).
   Формы задают `input { width: 100% }` для своих полей (hero/cta/callback) —
   переопределяем именно для чекбокса, чтобы он не растягивался на всю ширину. */
.pzt-consent .wpcf7-list-item { margin: 0; }
.pzt-consent label {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	margin: 0;
	cursor: pointer;
}
.pzt-hero-form .pzt-consent input[type="checkbox"],
.pzt-cta-form .pzt-consent input[type="checkbox"],
.pzt-callback-form .pzt-consent input[type="checkbox"] {
	width: 14px;
	height: 14px;
	flex: 0 0 auto;
	margin: 2px 0 0;
	padding: 0;
	border-radius: 3px;
	accent-color: var(--pzt-bronze);
	cursor: pointer;
}

/* The inline CTA forms (.pzt-cta-form is applied to the <form> itself,
   which is `display:flex`) would otherwise lay the consent div out as a
   second flex item beside the phone+submit row instead of under it. Force
   it onto its own full-width line. */
.pzt-cta-form {
	flex-wrap: wrap;
}
.pzt-cta-form .pzt-consent {
	flex: 1 1 100%;
	margin-top: 10px;
}
.wpcf7 form.sent .wpcf7-response-output {
	background: rgba(46, 139, 87, 0.12);
	color: var(--pzt-green-callback);
	border-color: var(--pzt-green-callback);
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
	background: var(--pzt-danger-bg);
	color: var(--pzt-danger-text);
	border-color: #E8C4C4;
}

/* ---------------------------------------------------------------------- *
   CF7 submit button — high specificity to beat WP block-library +
   Blocksy fallback button colors. Без этого <input type="submit"> внутри
   .wpcf7-form может рендериться как браузерная синяя кнопка — потому что
   класс .pzt-btn--bronze (0,1,0) проигрывает Blocksy global tokens.
 * ---------------------------------------------------------------------- */
.wpcf7-form input[type="submit"].pzt-btn,
.wpcf7-form button[type="submit"].pzt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: var(--pzt-radius-md);
	font-weight: 500;
	font-size: 14px;
	border: 1px solid transparent;
	cursor: pointer;
	font-family: inherit;
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
	transition: all 180ms cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-appearance: none;
	appearance: none;
}
.wpcf7-form input[type="submit"].pzt-btn--bronze,
.wpcf7-form button[type="submit"].pzt-btn--bronze {
	background: var(--pzt-bronze);
	color: #fff;
	border-color: transparent;
}
.wpcf7-form input[type="submit"].pzt-btn--bronze:hover,
.wpcf7-form button[type="submit"].pzt-btn--bronze:hover {
	background: var(--pzt-bronze-hover);
	color: #fff;
}
.wpcf7-form input[type="submit"].pzt-btn--bronze:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Field-level CF7 validation errors — also beefed up so the tip sits next
   to the red border, not as 12px afterthought */
.wpcf7-not-valid-tip {
	color: var(--pzt-danger-text);
	font-size: 13px;
	font-weight: 500;
	display: block;
	margin-top: 6px;
}
.wpcf7-form input.wpcf7-not-valid {
	border-color: var(--pzt-danger-text) !important;
	box-shadow: 0 0 0 3px rgba(163, 45, 45, 0.10);
}

/* CF7 spinner (small icon next to submit during AJAX) */
.wpcf7-spinner {
	display: inline-block;
	margin-left: 8px;
	vertical-align: middle;
}

/* ============================================================
   pzt/document-types — gallery «Виды документов»
   ============================================================ */
.pzt-doctypes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	margin-top: 8px;
}
.pzt-doctype-card {
	background: var(--pzt-bg-base);
	border: 1px solid var(--pzt-border);
	border-radius: var(--pzt-radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 180ms, transform 180ms, box-shadow 180ms;
}
.pzt-doctype-card:hover {
	border-color: var(--pzt-bronze);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(15, 42, 71, 0.06);
}
.pzt-doctype-preview {
	aspect-ratio: 4 / 5;
	background: var(--pzt-bg-alt);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-bottom: 1px solid var(--pzt-border);
}
.pzt-doctype-preview a {
	display: block;
	width: 100%;
	height: 100%;
}
.pzt-doctype-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}
.pzt-doctype-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: var(--pzt-text-tertiary);
	padding: 24px;
	text-align: center;
}
.pzt-doctype-body {
	padding: 18px 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.pzt-doctype-body h3 {
	color: var(--pzt-navy);
	font-size: 16px;
	font-weight: 500;
	margin: 0;
	line-height: 1.3;
}
.pzt-doctype-body p {
	color: var(--pzt-text-secondary);
	font-size: 13px;
	line-height: 1.55;
	margin: 0;
}

@media (max-width: 767px) {
	.pzt-doctypes-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}
	.pzt-doctype-body {
		padding: 14px 16px;
	}
	.pzt-doctype-body h3 { font-size: 14px; }
	.pzt-doctype-body p  { font-size: 12px; }
}
@media (max-width: 479px) {
	.pzt-doctypes-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   ✦ DESIGN POLISH LAYER (v0.7)
   Цель: убрать «плоско и дёшево», добавить премиум-глубину. Строго, без
   градиентов/глянца — только flat-текстуры, мягкие тени, бронзовые акценты.
   ============================================================================ */

/* ----------------------------------------------------------------------------
   1. Текстура на navy-поверхностях.
   Очень тонкая сетка точек (inline SVG data-URI, монохром, низкая прозрачность)
   — даёт глубину тёмным блокам, не нарушая правило «без градиентов».
---------------------------------------------------------------------------- */
.pzt-cta-dark,
.pzt-footer {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
	background-position: 0 0;
}
.pzt-cta-dark { background-color: var(--pzt-navy); position: relative; overflow: hidden; }
.pzt-footer { background-color: var(--pzt-navy-deep); }

/* Бронзовый угловой штрих в тёмном CTA — премиум-деталь */
.pzt-cta-dark::after {
	content: "";
	position: absolute;
	top: -40px; right: -40px;
	width: 180px; height: 180px;
	border: 2px solid rgba(184, 146, 77, 0.18);
	border-radius: 4px;
	transform: rotate(45deg);
	pointer-events: none;
}

/* ----------------------------------------------------------------------------
   2. Премиум-карточки — мягкая многослойная тень по умолчанию + бронзовый
   верхний акцент, проявляющийся на hover. Граница тоньше и светлее.
---------------------------------------------------------------------------- */
.pzt-s-card,
.pzt-i-card,
.pzt-t-card,
.pzt-step,
.pzt-doctype-card,
.pzt-partner {
	border-color: rgba(226, 232, 240, 0.9);
	box-shadow: 0 1px 2px rgba(15, 42, 71, 0.04), 0 10px 28px -16px rgba(15, 42, 71, 0.10);
	position: relative;
}
.pzt-s-card,
.pzt-i-card {
	overflow: hidden;
}
/* Бронзовая полоса сверху, «вырастает» при наведении */
.pzt-s-card::before,
.pzt-i-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--pzt-bronze);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1);
}
.pzt-s-card:hover::before,
.pzt-i-card:hover::before { transform: scaleX(1); }

.pzt-s-card:hover,
.pzt-i-card:hover,
.pzt-doctype-card:hover {
	border-color: rgba(184, 146, 77, 0.5);
	box-shadow: 0 4px 8px rgba(15, 42, 71, 0.06), 0 18px 40px -20px rgba(15, 42, 71, 0.22);
	transform: translateY(-3px);
}
.pzt-i-card { transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1); }

/* ----------------------------------------------------------------------------
   3. Иконки в бронзовых бейджах — добавляет цвет и «вес» карточкам услуг,
   преимуществ и т.п. Иконка кладётся в скруглённый квадрат с bronze-tint.
---------------------------------------------------------------------------- */
.pzt-s-card > svg:first-child,
.pzt-benefit > svg:first-child {
	box-sizing: content-box;
	width: 24px; height: 24px;
	padding: 12px;
	border-radius: 12px;
	background: rgba(184, 146, 77, 0.10);
	color: var(--pzt-bronze);
	margin-bottom: 18px;
}
.pzt-benefit { gap: 18px; }
.pzt-benefit > svg:first-child { flex-shrink: 0; margin-bottom: 0; }

/* ----------------------------------------------------------------------------
   4. Утончённые заголовки секций — бронзовая черта под eyebrow + крупнее H2.
---------------------------------------------------------------------------- */
.pzt-s-head .pzt-eyebrow {
	position: relative;
	padding-bottom: 14px;
	margin-bottom: 4px;
}
.pzt-s-head .pzt-eyebrow::after {
	content: "";
	position: absolute;
	left: 50%; bottom: 0;
	transform: translateX(-50%);
	width: 32px; height: 2px;
	background: var(--pzt-bronze);
	border-radius: 2px;
}
.pzt-s-head h2 { font-size: 30px; line-height: 1.2; letter-spacing: -0.015em; }
@media (max-width: 1023px) { .pzt-s-head h2 { font-size: 24px; } }

/* ----------------------------------------------------------------------------
   5. Чередование секций — тёплая «бумажная» альтернативная заливка вместо
   холодного #F7FAFC, + волосяная верхняя граница для чёткого ритма.
---------------------------------------------------------------------------- */
.pzt-section--alt {
	background: #FAF8F4;            /* тёплый off-white вместо холодного серого */
	border-top: 1px solid rgba(184, 146, 77, 0.10);
	border-bottom: 1px solid rgba(184, 146, 77, 0.10);
}

/* ----------------------------------------------------------------------------
   6. Process-steps — номера в бронзовых кружках выразительнее.
---------------------------------------------------------------------------- */
.pzt-step .pzt-num {
	background: var(--pzt-navy);
	color: #fff;
	box-shadow: 0 6px 14px -6px rgba(15, 42, 71, 0.5);
}

/* ----------------------------------------------------------------------------
   7. Hero-форма и тёмный CTA остаются «над текстурой» — z-index страховка.
---------------------------------------------------------------------------- */
.pzt-cta-dark > * { position: relative; z-index: 1; }

/* ============================================================================
   ✦ DARK ANCHOR SECTION (v0.8) — ломает светлую монотонность середины.
   Применяется к секции «Почему мы» на главной (pzt-section--dark).
   Тёмный navy с белым текстом + бронзовые бейджи-иконки.
   ============================================================================ */
.pzt-section--dark {
	background-color: var(--pzt-navy);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
	color: rgba(255, 255, 255, 0.82);
	position: relative;
	overflow: hidden;
}
/* Большая бронзовая «рамка-акцент» в углу — как в CTA, для глубины */
.pzt-section--dark::after {
	content: "";
	position: absolute;
	bottom: -80px; left: -80px;
	width: 280px; height: 280px;
	border: 2px solid rgba(184, 146, 77, 0.12);
	border-radius: 8px;
	transform: rotate(45deg);
	pointer-events: none;
}
.pzt-section--dark > .pzt-container { position: relative; z-index: 1; }
.pzt-section--dark h2 { color: #fff; }
.pzt-section--dark .pzt-s-head .pzt-lede { color: rgba(255, 255, 255, 0.72); }

/* Преимущества внутри тёмной секции */
.pzt-section--dark .pzt-benefit h3 { color: #fff; }
.pzt-section--dark .pzt-benefit p  { color: rgba(255, 255, 255, 0.68); }
.pzt-section--dark .pzt-benefit > svg:first-child {
	background: rgba(184, 146, 77, 0.18);
	color: var(--pzt-bronze-hover);
}

/* Карточки внутри тёмной секции (если будут) — стеклянно-тёмные */
.pzt-section--dark .pzt-s-card,
.pzt-section--dark .pzt-i-card,
.pzt-section--dark .pzt-step {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.10);
	box-shadow: none;
}
.pzt-section--dark .pzt-s-card h3,
.pzt-section--dark .pzt-i-card h3,
.pzt-section--dark .pzt-step h3 { color: #fff; }

/* Testimonials cards on dark */
.pzt-section--dark .pzt-t-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.10);
}
.pzt-section--dark .pzt-t-card .pzt-quote { color: rgba(255, 255, 255, 0.90); }
.pzt-section--dark .pzt-t-card .pzt-name  { color: #fff; }
.pzt-section--dark .pzt-t-card .pzt-role  { color: rgba(255, 255, 255, 0.60); }
.pzt-section--dark .pzt-t-card .pzt-scan  { color: var(--pzt-bronze-hover); }

/* ============================================================================
   ✦ BOLDER PREMIUM PASS (v0.9) — крупная типографика, воздух, выразительная
   бронза, текстура на светлых секциях. «Чуть смелее» строгого B2B.
   ============================================================================ */

/* 1. Типографика крупнее — главный premium-рычаг. */
.pzt-hero h1 {
	font-size: 44px;
	line-height: 1.12;
	letter-spacing: -0.025em;
	max-width: 600px;
}
.pzt-hero .pzt-lede {
	font-size: 17px;
	line-height: 1.7;
}
.pzt-s-head h2 { font-size: 36px; letter-spacing: -0.02em; }
.pzt-s-head { margin-bottom: 56px; max-width: 720px; }
.pzt-s-head .pzt-lede { font-size: 17px; line-height: 1.65; }

/* 2. Больше воздуха между секциями. */
.pzt-section { padding: 100px 0; }

/* 3. Выразительный eyebrow — крупнее, шире разрядка. */
.pzt-eyebrow {
	font-size: 13px;
	letter-spacing: 0.14em;
}

/* 4. Бронзовые цены в карточках комплексов — крупнее и заметнее. */
.pzt-i-card .pzt-price .pzt-val { font-size: 30px; }
.pzt-i-card .pzt-price .pzt-from { color: var(--pzt-bronze); }

/* 5. Текстура на светлых секциях — еле заметная сетка точек navy, чтобы белое
   полотно перестало быть «пустым». Очень низкая прозрачность. */
.pzt-section:not(.pzt-section--dark):not(.pzt-section--alt) {
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='2' cy='2' r='1' fill='%230F2A47' fill-opacity='0.035'/%3E%3C/svg%3E");
}

/* 6. Тёплая alt-секция — чуть глубже тон + та же тонкая сетка для глубины. */
.pzt-section--alt {
	background-color: #F7F2EA;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23B8924D' fill-opacity='0.05'/%3E%3C/svg%3E");
}

/* 7. Hero — слегка крупнее карточка-форма и trust-строка для баланса с H1. */
.pzt-hero-trust { gap: 18px; }
.pzt-hero-trust .pzt-item { font-size: 14px; }

@media (max-width: 1023px) {
	.pzt-hero h1 { font-size: 32px; }
	.pzt-s-head h2 { font-size: 27px; }
	.pzt-section { padding: 64px 0; }
	.pzt-s-head { margin-bottom: 40px; }
}
@media (max-width: 600px) {
	.pzt-hero h1 { font-size: 27px; }
	.pzt-s-head h2 { font-size: 23px; }
	.pzt-section { padding: 52px 0; }
}

/* ============================================================================
   ✦ MOTION LAYER (v0.11) — параллакс + scroll-reveal + hover-полировка.
   Всё уважает prefers-reduced-motion и (hover: none).
   ============================================================================ */

/* 1. Scroll-reveal: cards/sections fade-up как только попадают во вьюпорт.
   Класс .pzt-reveal вешает JS, .is-in-view проявляет.                       */
.pzt-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
	            transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}
.pzt-reveal.is-in-view {
	opacity: 1;
	transform: translateY(0);
}
/* Каскадная задержка для grid-карточек — заметнее, чем синхронное появление */
.pzt-grid-5 > .pzt-reveal:nth-child(2),
.pzt-grid-6 > .pzt-reveal:nth-child(2),
.pzt-grid-3 > .pzt-reveal:nth-child(2),
.pzt-pkg-grid > .pzt-reveal:nth-child(2),
.pzt-benefits > .pzt-reveal:nth-child(2),
.pzt-steps > .pzt-reveal:nth-child(2),
.pzt-fines-grid > .pzt-reveal:nth-child(2),
.pzt-doctypes-grid > .pzt-reveal:nth-child(2),
.pzt-accred > .pzt-reveal:nth-child(2) { transition-delay: 70ms; }

.pzt-grid-5 > .pzt-reveal:nth-child(3),
.pzt-grid-6 > .pzt-reveal:nth-child(3),
.pzt-grid-3 > .pzt-reveal:nth-child(3),
.pzt-pkg-grid > .pzt-reveal:nth-child(3),
.pzt-benefits > .pzt-reveal:nth-child(3),
.pzt-steps > .pzt-reveal:nth-child(3),
.pzt-fines-grid > .pzt-reveal:nth-child(3),
.pzt-doctypes-grid > .pzt-reveal:nth-child(3),
.pzt-accred > .pzt-reveal:nth-child(3) { transition-delay: 140ms; }

.pzt-grid-5 > .pzt-reveal:nth-child(4),
.pzt-grid-6 > .pzt-reveal:nth-child(4),
.pzt-benefits > .pzt-reveal:nth-child(4),
.pzt-steps > .pzt-reveal:nth-child(4),
.pzt-doctypes-grid > .pzt-reveal:nth-child(4),
.pzt-accred > .pzt-reveal:nth-child(4) { transition-delay: 210ms; }

.pzt-grid-5 > .pzt-reveal:nth-child(5),
.pzt-grid-6 > .pzt-reveal:nth-child(5),
.pzt-benefits > .pzt-reveal:nth-child(5),
.pzt-doctypes-grid > .pzt-reveal:nth-child(5),
.pzt-accred > .pzt-reveal:nth-child(5) { transition-delay: 280ms; }

.pzt-grid-6 > .pzt-reveal:nth-child(6),
.pzt-benefits > .pzt-reveal:nth-child(6) { transition-delay: 350ms; }

/* 2. Параллакс на hero-фото — JS задаёт translate3d на img.
   Поэтому обёртка должна обрезать выход за границы (overflow:hidden уже есть). */
.pzt-hero-photo--filled img {
	transition: transform 100ms linear;
	transform: translate3d(0, 0, 0) scale(1.06);
	will-change: transform;
}

/* 3. Hover-зум на фото-баннере сервиса и hero-фото. */
.pzt-section-band { transition: background-position 80ms linear; }

/* 4. Уважение reduced-motion — выключаем всё. */
@media (prefers-reduced-motion: reduce) {
	.pzt-reveal { opacity: 1; transform: none; transition: none; }
	.pzt-hero-photo--filled img { transform: none; }
}

/* 5. Тёмный CTA с фоновым фото: затемнение поверх + текст белый.
   Класс .pzt-cta-dark--bg-photo + inline background-image из шаблона. */
.pzt-cta-dark--bg-photo {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.pzt-cta-dark--bg-photo::before {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(15, 42, 71, 0.92) 0%, rgba(15, 42, 71, 0.78) 100%);
	border-radius: inherit;
	z-index: 0;
}
.pzt-cta-dark--bg-photo > * { position: relative; z-index: 1; }

/* 6. /spasibo/ — большой hero-баннер сверху страницы. */
.pzt-spasibo-banner {
	width: 100%;
	aspect-ratio: 21 / 6;
	background-size: cover;
	background-position: center 40%;
	background-repeat: no-repeat;
	border-radius: 0 0 var(--pzt-radius-md) var(--pzt-radius-md);
	margin-bottom: 24px;
	box-shadow: inset 0 -32px 40px -32px rgba(15, 42, 71, 0.20);
}
@media (max-width: 767px) { .pzt-spasibo-banner { aspect-ratio: 16 / 9; border-radius: 0; } }

/* ============================================================================
   ✦ HERO BACKGROUND ENRICHMENT (v0.12) — добиваем «скучный синий».
   Многослойная композиция строго flat:
     1. Базовый navy
     2. Blueprint-сетка из тонких линий (как в инженерном чертеже)
     3. Очень светлая точечная текстура — придаёт «шум»
     4. Гигантский бронзовый П-образный outline в правом верхнем углу
     5. Огромный бронзовый круг-watermark снизу-слева
     6. Тонкая бронзовая линия снизу — переход в белую секцию
   ============================================================================ */
.pzt-hero {
	background-color: var(--pzt-navy);
	/* Слой 1: blueprint grid (вертикали+горизонтали) + слой 2: точки */
	background-image:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M0 0L80 0M0 0L0 80' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.05'/%3E%3Cpath d='M40 0L40 80M0 40L80 40' stroke='%23B8924D' stroke-width='0.5' stroke-opacity='0.04'/%3E%3C/svg%3E"),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
	background-position: 0 0, 0 0;
	position: relative;
	overflow: hidden;
}

/* Слой 4: огромный бронзовый П-образный outline в правом верхнем углу.
   П-форма из 3 границ + ровного куба = SVG как BG. */
.pzt-hero::before {
	content: "";
	position: absolute;
	top: -120px; right: -100px;
	width: 520px; height: 520px;
	border: 2px solid rgba(184, 146, 77, 0.18);
	border-radius: 6px;
	transform: rotate(35deg);
	pointer-events: none;
	z-index: 0;
}
/* Слой 5: круг-watermark снизу-слева */
.pzt-hero::after {
	content: "";
	position: absolute;
	bottom: -200px; left: -180px;
	width: 480px; height: 480px;
	border: 1.5px solid rgba(184, 146, 77, 0.12);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}
/* Контент над декорациями */
.pzt-hero > .pzt-container { position: relative; z-index: 1; }

/* Слой 6: бронзовая тонкая полоса снизу hero — мост к белой секции услуг */
.pzt-hero::after,
.pzt-hero { box-shadow: inset 0 -3px 0 0 rgba(184, 146, 77, 0.45); }
/* (shadow на ::after был случайным повтором, перепишу — корректно только на самом .pzt-hero) */
.pzt-hero::after { box-shadow: none; }

/* ============================================================================
   ✦ HEADER UPGRADE — выделяем меню, добавляем бронзовую подложку и hover.
   ============================================================================ */
.pzt-header {
	background-color: var(--pzt-navy);
	background-image:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M0 0L40 0M0 0L0 40' stroke='%23B8924D' stroke-width='0.4' stroke-opacity='0.06'/%3E%3C/svg%3E");
	border-bottom: 1px solid rgba(184, 146, 77, 0.22);
	box-shadow: 0 2px 0 0 rgba(184, 146, 77, 0.08);
}

/* Меню — больше воздуха + анимированное бронзовое подчёркивание на hover */
.pzt-header nav { gap: 36px; }
.pzt-header nav a {
	position: relative;
	font-size: 14px;
	letter-spacing: 0.01em;
	padding: 22px 0;
	color: rgba(255, 255, 255, 0.88);
}
.pzt-header nav a::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 12px;
	height: 2px;
	background: var(--pzt-bronze);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1);
}
.pzt-header nav a:hover {
	color: #fff;
}
.pzt-header nav a:hover::after {
	transform: scaleX(1);
}

/* Кнопка «Заказать звонок» в шапке — слегка более выразительная */
.pzt-header-right .pzt-btn--bronze {
	padding: 10px 18px;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.01em;
	box-shadow: 0 4px 14px -6px rgba(184, 146, 77, 0.55);
}
.pzt-header-right .pzt-btn--bronze:hover {
	box-shadow: 0 8px 20px -8px rgba(184, 146, 77, 0.7);
	transform: translateY(-1px);
}

/* Телефон в шапке — бронзовая разделительная палочка слева для отстройки */
.pzt-header-phone {
	position: relative;
	padding-left: 18px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
}
.pzt-header-phone::before {
	content: "";
	position: absolute;
	left: 0; top: 50%;
	width: 2px; height: 18px;
	background: var(--pzt-bronze);
	transform: translateY(-50%);
	border-radius: 1px;
}

/* 7. Process-steps с фото-миниатюрой сверху. Номер становится бронзовым
   бейджем поверх правого нижнего угла фото. */
.pzt-step--with-photo {
	padding-top: 0;
	overflow: hidden;
}
.pzt-step__thumb {
	width: calc(100% + 44px);
	margin: -22px -22px 18px;
	aspect-ratio: 16 / 11;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.pzt-step__thumb::after {
	content: "";
	position: absolute; inset: auto 0 0 0; height: 36%;
	background: linear-gradient(180deg, rgba(15, 42, 71, 0) 0%, rgba(15, 42, 71, 0.35) 100%);
	pointer-events: none;
}
.pzt-step--with-photo .pzt-num {
	position: absolute;
	top: calc(16/11 * 100% / 1.7);   /* sit near bottom-right of thumb */
	right: 16px; top: auto;
	margin-top: -42px; left: auto;
	z-index: 2;
	box-shadow: 0 6px 14px -4px rgba(15, 42, 71, 0.6);
	background: var(--pzt-bronze);
	color: #fff;
}
