/*
 * 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; }

/* ============================================================
   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;
}
.pzt-logo .pzt-placeholder { font-weight: 500; }

.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: 500; letter-spacing: -0.01em; }
.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 .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;
}

.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: 500; }
.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: 500; 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: 500; 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: 500; 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: 500; 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: 22px; font-weight: 500; line-height: 1.3; }
.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; }
}
