/* ==========================================================================
   Pertev Industrial — theme.css
   1.  Tokens & reset
   2.  Typography
   3.  Layout helpers
   4.  Buttons
   5.  Header & navigation
   6.  Page banner
   7.  Section headings
   8.  Text columns / feature blocks
   9.  Image cards (red caption bar)
   10. Icon features
   11. Why choose us (dark)
   12. Blog & archives
   13. Services / Projects / Sectors
   14. Contact
   15. Footer
   16. Comments, pagination, misc WP classes
   17. Responsive
   ========================================================================== */

/* 1. Tokens & reset ------------------------------------------------------ */

:root {
	--ptv-red: #b8332a;
	--ptv-red-dark: #8c241c;
	--ptv-ink: #2b2e33;
	--ptv-body: #5a5f66;
	--ptv-light: #f2f2f0;
	--ptv-line: #dcdcd8;
	--ptv-muted: #9a9a97;
	--ptv-white: #ffffff;

	--ptv-font-head: "Oswald", "Arial Narrow", Arial, sans-serif;
	--ptv-font-body: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

	--ptv-wrap: 1240px;
	--ptv-gap: 40px;
	--ptv-header-h: 96px;
}

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

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

body {
	margin: 0;
	background: var(--ptv-white);
	color: var(--ptv-body);
	font-family: var(--ptv-font-body);
	font-size: 16px;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
}

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

figure {
	margin: 0 0 24px;
}

a {
	color: var(--ptv-red);
	text-decoration: none;
	transition: color 0.18s ease;
}

a:hover,
a:focus {
	color: var(--ptv-red-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 2px solid var(--ptv-red);
	outline-offset: 2px;
}

/* 2. Typography ---------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--ptv-font-head);
	color: var(--ptv-ink);
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 18px;
	letter-spacing: 0.01em;
}

h1 {
	font-size: 44px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 26px;
}

h4 {
	font-size: 21px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	margin: 0 0 20px;
}

ul,
ol {
	margin: 0 0 20px;
	padding-left: 22px;
}

blockquote {
	margin: 0 0 24px;
	padding: 6px 0 6px 24px;
	border-left: 4px solid var(--ptv-red);
	color: var(--ptv-ink);
	font-size: 18px;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 24px;
}

th,
td {
	border: 1px solid var(--ptv-line);
	padding: 10px 14px;
	text-align: left;
}

th {
	background: var(--ptv-light);
	font-family: var(--ptv-font-head);
	font-weight: 500;
	color: var(--ptv-ink);
}

code,
pre {
	font-family: "SFMono-Regular", Consolas, monospace;
	background: var(--ptv-light);
	font-size: 14px;
}

pre {
	padding: 18px;
	overflow: auto;
	border-left: 4px solid var(--ptv-red);
}

/* 3. Layout helpers ------------------------------------------------------ */

.ptv-wrap {
	width: 100%;
	max-width: var(--ptv-wrap);
	margin: 0 auto;
	padding: 0 24px;
}

.ptv-section {
	padding: 76px 0;
}

.ptv-section--tight {
	padding: 48px 0;
}

.ptv-section--light {
	background: var(--ptv-light);
}

.ptv-grid {
	display: grid;
	gap: var(--ptv-gap);
}

.ptv-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.ptv-align-right {
	display: flex;
	justify-content: flex-end;
	margin-top: 44px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 9999;
	background: var(--ptv-red);
	color: #fff;
	padding: 12px 20px;
	font-family: var(--ptv-font-head);
}

.skip-link:focus {
	left: 12px;
	top: 12px;
	color: #fff;
}

/* 4. Buttons ------------------------------------------------------------- */

.ptv-btn,
.wp-block-button__link,
input[type="submit"],
button.ptv-btn {
	display: inline-block;
	font-family: var(--ptv-font-head);
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
	background: var(--ptv-red);
	border: 0;
	border-radius: 0;
	padding: 15px 34px;
	cursor: pointer;
	transition: background 0.18s ease;
}

.ptv-btn:hover,
.ptv-btn:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	background: var(--ptv-red-dark);
	color: #fff;
}

.ptv-btn--muted {
	background: var(--ptv-muted);
	font-family: var(--ptv-font-body);
	font-size: 14px;
	letter-spacing: 0;
	text-transform: none;
	padding: 9px 22px;
}

.ptv-btn--muted:hover,
.ptv-btn--muted:focus {
	background: var(--ptv-ink);
}

.ptv-btn--ghost {
	background: transparent;
	border: 2px solid var(--ptv-red);
	color: var(--ptv-red);
	padding: 13px 32px;
}

.ptv-btn--ghost:hover,
.ptv-btn--ghost:focus {
	background: var(--ptv-red);
	color: #fff;
}

/* 5. Header & navigation ------------------------------------------------- */

.ptv-header {
	background: #fff;
	position: relative;
	z-index: 500;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
}

.ptv-header.is-sticky {
	position: sticky;
	top: 0;
}

.admin-bar .ptv-header.is-sticky {
	top: 32px;
}

.ptv-header__inner {
	max-width: var(--ptv-wrap);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	min-height: var(--ptv-header-h);
}

.ptv-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 0;
}

.ptv-brand img {
	max-height: 58px;
	width: auto;
}

.ptv-brand__text {
	font-family: var(--ptv-font-head);
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ptv-ink);
	line-height: 1;
}

.ptv-brand__mark {
	width: 30px;
	height: 30px;
	background: var(--ptv-red);
	position: relative;
	flex: 0 0 auto;
}

.ptv-brand__mark::after {
	content: "";
	position: absolute;
	inset: 9px;
	background: #fff;
	border-radius: 50%;
}

.ptv-brand a {
	display: flex;
	align-items: center;
	gap: 12px;
	color: inherit;
}

.ptv-nav {
	display: flex;
	align-items: stretch;
}

.ptv-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: stretch;
}

.ptv-nav li {
	position: relative;
	display: flex;
	align-items: stretch;
}

.ptv-nav > ul > li > a {
	display: flex;
	align-items: center;
	padding: 0 22px;
	font-family: var(--ptv-font-head);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ptv-ink);
	transition: background 0.18s ease, color 0.18s ease;
}

.ptv-nav > ul > li > a:hover,
.ptv-nav > ul > li > a:focus,
.ptv-nav > ul > li.current-menu-item > a,
.ptv-nav > ul > li.current_page_item > a,
.ptv-nav > ul > li.current-menu-ancestor > a,
.ptv-nav > ul > li.current-menu-parent > a {
	background: var(--ptv-red);
	color: #fff;
}

/* Sub menus */
.ptv-nav ul ul {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 230px;
	background: var(--ptv-ink);
	display: block;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
	padding: 6px 0;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.ptv-nav ul ul ul {
	top: 0;
	left: 100%;
}

.ptv-nav li:hover > ul,
.ptv-nav li:focus-within > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ptv-nav ul ul li {
	display: block;
}

.ptv-nav ul ul a {
	display: block;
	padding: 11px 22px;
	color: #e7e7e5;
	font-family: var(--ptv-font-body);
	font-size: 15px;
	text-transform: none;
	letter-spacing: 0;
}

.ptv-nav ul ul a:hover,
.ptv-nav ul ul a:focus {
	background: var(--ptv-red);
	color: #fff;
}

/* Language switcher slot (Polylang / WPML) */
.ptv-lang {
	display: flex;
	align-items: center;
	padding-left: 18px;
	margin-left: 4px;
	border-left: 1px solid var(--ptv-line);
}

.ptv-lang ul {
	list-style: none;
	display: flex;
	gap: 10px;
	margin: 0;
	padding: 0;
}

.ptv-lang a {
	font-family: var(--ptv-font-head);
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ptv-body);
}

.ptv-lang .current-lang a,
.ptv-lang a:hover {
	color: var(--ptv-red);
}

/* Mobile toggle */
.ptv-nav-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	background: var(--ptv-red);
	color: #fff;
	border: 0;
	padding: 0 20px;
	font-family: var(--ptv-font-head);
	font-size: 14px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
}

.ptv-nav-toggle__bars {
	display: inline-block;
	width: 20px;
	height: 2px;
	background: #fff;
	position: relative;
}

.ptv-nav-toggle__bars::before,
.ptv-nav-toggle__bars::after {
	content: "";
	position: absolute;
	left: 0;
	width: 20px;
	height: 2px;
	background: #fff;
}

.ptv-nav-toggle__bars::before {
	top: -6px;
}

.ptv-nav-toggle__bars::after {
	top: 6px;
}

/* 6. Page banner --------------------------------------------------------- */

.ptv-banner {
	background-color: #ededeb;
	background-image: url("../images/texture.png");
	background-repeat: repeat;
	border-bottom: 7px solid var(--ptv-ink);
	padding: 60px 0;
}

.ptv-banner__inner {
	max-width: var(--ptv-wrap);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	gap: 46px;
}

.ptv-banner__media {
	flex: 0 0 auto;
	width: 190px;
	height: 190px;
	border-radius: 50%;
	overflow: hidden;
	background: #b6b6b4;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ptv-banner__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ptv-banner__title {
	font-size: 40px;
	text-transform: uppercase;
	color: #7c7f85;
	font-weight: 500;
	letter-spacing: 0.02em;
	margin: 0 0 14px;
}

.ptv-banner__subtitle {
	font-family: var(--ptv-font-body);
	font-size: 24px;
	font-weight: 700;
	color: #8a8d92;
	margin: 0;
	line-height: 1.4;
}

.ptv-breadcrumbs {
	margin-top: 16px;
	font-size: 14px;
	color: #8a8d92;
}

.ptv-breadcrumbs a {
	color: #6f7278;
}

.ptv-breadcrumbs a:hover {
	color: var(--ptv-red);
}

/* 7. Section headings ---------------------------------------------------- */

.ptv-section-title {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-bottom: 46px;
}

.ptv-section-title h2,
.ptv-section-title h3 {
	margin: 0;
	font-size: 38px;
	white-space: nowrap;
	letter-spacing: 0.005em;
}

.ptv-section-title::after {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background: var(--ptv-line);
}

.ptv-section-title--light h2,
.ptv-section-title--light h3 {
	color: #fff;
}

.ptv-section-title--light::after {
	background: rgba(255, 255, 255, 0.4);
}

/* 8. Text columns / feature blocks --------------------------------------- */

.ptv-feature__title {
	color: var(--ptv-red);
	font-size: 30px;
	line-height: 1.1;
	margin: 0 0 18px;
}

.ptv-feature__title a {
	color: inherit;
}

.ptv-feature__title a:hover {
	color: var(--ptv-red-dark);
}

.ptv-feature p {
	margin-bottom: 24px;
}

/* 9. Image cards (red caption bar) --------------------------------------- */

.ptv-card {
	display: flex;
	flex-direction: column;
	position: relative;
	background: #fff;
	color: var(--ptv-body);
	overflow: hidden;
	height: 100%;
	box-shadow: 0 1px 0 var(--ptv-line);
}

.ptv-card__media {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #d3d3d1;
	flex: 0 0 auto;
}

.ptv-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.ptv-card:hover .ptv-card__media img {
	transform: scale(1.04);
}

.ptv-card__label {
	display: block;
	flex: 0 0 auto;
	background: var(--ptv-red);
	color: #fff;
	font-family: var(--ptv-font-head);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 14px 22px;
	line-height: 1.3;
}

.ptv-card__title {
	display: block;
	flex: 0 0 auto;
	font-family: var(--ptv-font-head);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.25;
	color: var(--ptv-ink);
	padding: 20px 22px 0;
	transition: color 0.18s ease;
}

.ptv-card:hover .ptv-card__title {
	color: var(--ptv-red);
}

.ptv-card__excerpt {
	display: block;
	flex: 1 1 auto;
	background: #fff;
	color: var(--ptv-body);
	padding: 12px 22px 24px;
	font-size: 15px;
	line-height: 1.65;
}

.ptv-card__excerpt p:last-child {
	margin-bottom: 0;
}

/* 10. Icon features ------------------------------------------------------ */

.ptv-icon-item {
	display: block;
}

.ptv-icon-item__icon {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: var(--ptv-red);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
}

.ptv-icon-item__icon svg {
	width: 30px;
	height: 30px;
	fill: currentColor;
}

.ptv-icon-item__title {
	font-family: var(--ptv-font-body);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ptv-ink);
	margin: 0 0 10px;
}

.ptv-icon-item__title a {
	color: inherit;
}

.ptv-icon-item__title a:hover {
	color: var(--ptv-red);
}

.ptv-icon-item p {
	margin: 0;
	font-size: 15.5px;
}

/* 11. Why choose us (dark) ----------------------------------------------- */

.ptv-why {
	position: relative;
	background-color: #1d1a16;
	background-size: cover;
	background-position: center;
	color: #e9e7e3;
	padding: 70px 0 84px;
	isolation: isolate;
}

.ptv-why::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(24, 20, 15, 0.82) 0%, rgba(16, 13, 10, 0.93) 100%);
	z-index: -1;
}

.ptv-why__item h3 {
	color: #fff;
	font-size: 27px;
	margin: 0 0 20px;
}

.ptv-why__num {
	width: 132px;
	height: 132px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ptv-font-head);
	font-size: 52px;
	font-weight: 600;
	color: #fff;
	margin: 0 auto 34px;
}

.ptv-why p {
	color: #dedbd6;
	font-size: 15.5px;
}

.ptv-why p:last-child {
	margin-bottom: 0;
}

/* 12. Blog & archives ---------------------------------------------------- */

.ptv-content {
	padding: 70px 0 84px;
}

.ptv-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 56px;
	align-items: start;
}

.ptv-layout--full {
	grid-template-columns: minmax(0, 1fr);
}

.ptv-entry + .ptv-entry {
	margin-top: 52px;
	padding-top: 52px;
	border-top: 1px solid var(--ptv-line);
}

.ptv-entry__title {
	font-size: 30px;
	margin-bottom: 12px;
}

.ptv-entry__title a {
	color: var(--ptv-ink);
}

.ptv-entry__title a:hover {
	color: var(--ptv-red);
}

.ptv-entry__meta {
	font-size: 13.5px;
	color: var(--ptv-muted);
	margin-bottom: 18px;
	font-family: var(--ptv-font-head);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.ptv-entry__meta a {
	color: var(--ptv-muted);
}

.ptv-entry__meta a:hover {
	color: var(--ptv-red);
}

.ptv-entry__thumb {
	margin-bottom: 24px;
}

.ptv-entry__content > *:last-child {
	margin-bottom: 0;
}

.ptv-sidebar .widget {
	margin-bottom: 40px;
}

.ptv-sidebar .widget-title {
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding-bottom: 12px;
	border-bottom: 3px solid var(--ptv-red);
	margin-bottom: 18px;
}

.ptv-sidebar ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ptv-sidebar li {
	padding: 8px 0;
	border-bottom: 1px solid var(--ptv-line);
}

.ptv-sidebar a {
	color: var(--ptv-body);
}

.ptv-sidebar a:hover {
	color: var(--ptv-red);
}

/* 13. Services / Projects / Sectors -------------------------------------- */

.ptv-sector-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
	margin-bottom: 46px;
}

.ptv-sector-nav a {
	font-family: var(--ptv-font-head);
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: var(--ptv-light);
	color: var(--ptv-ink);
	padding: 12px 24px;
}

.ptv-sector-nav a:hover,
.ptv-sector-nav a.is-active {
	background: var(--ptv-red);
	color: #fff;
}

.ptv-spec-list {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
}

.ptv-spec-list li {
	position: relative;
	padding: 9px 0 9px 26px;
	border-bottom: 1px solid var(--ptv-line);
}

.ptv-spec-list li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 19px;
	width: 9px;
	height: 9px;
	background: var(--ptv-red);
}

/* 14. Contact ------------------------------------------------------------ */

.ptv-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: 60px;
	align-items: start;
}

.ptv-contact-item {
	display: flex;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid var(--ptv-line);
}

.ptv-contact-item__icon {
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--ptv-red);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ptv-contact-item__icon svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.ptv-contact-item__label {
	font-family: var(--ptv-font-head);
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ptv-muted);
	display: block;
	line-height: 1.4;
}

.ptv-contact-item__value {
	color: var(--ptv-ink);
	font-size: 16.5px;
}

.ptv-contact-item__value a {
	color: var(--ptv-ink);
}

.ptv-contact-item__value a:hover {
	color: var(--ptv-red);
}

.ptv-map {
	margin-top: 0;
	line-height: 0;
}

.ptv-map iframe {
	width: 100%;
	min-height: 380px;
	border: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="password"],
input[type="number"],
textarea,
select {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid var(--ptv-line);
	background: #fff;
	font-family: var(--ptv-font-body);
	font-size: 16px;
	color: var(--ptv-ink);
	border-radius: 0;
}

textarea {
	min-height: 160px;
}

input::placeholder,
textarea::placeholder {
	color: #a7aaae;
}

.wpcf7-form p {
	margin-bottom: 18px;
}

/* 15. Footer ------------------------------------------------------------- */

.ptv-footer {
	background: var(--ptv-ink);
	color: #b9bdc3;
	padding-top: 64px;
}

.ptv-footer a {
	color: #b9bdc3;
}

.ptv-footer a:hover {
	color: #fff;
}

.ptv-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 44px;
	padding-bottom: 54px;
}

.ptv-footer__title {
	font-size: 19px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	margin-bottom: 22px;
	padding-bottom: 12px;
	border-bottom: 3px solid var(--ptv-red);
	display: inline-block;
}

.ptv-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ptv-footer li {
	padding: 6px 0;
}

.ptv-footer__brand {
	font-family: var(--ptv-font-head);
	font-size: 28px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 16px;
	display: block;
}

.ptv-social {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.ptv-social a {
	width: 38px;
	height: 38px;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.18s ease;
}

.ptv-social a:hover {
	background: var(--ptv-red);
}

.ptv-social svg {
	width: 17px;
	height: 17px;
	fill: #fff;
}

.ptv-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 22px 0;
	font-size: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: space-between;
	align-items: center;
}

/* Back to top */
.ptv-top {
	position: fixed;
	right: 26px;
	bottom: 26px;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 1px solid rgba(43, 46, 51, 0.3);
	background: rgba(255, 255, 255, 0.85);
	color: var(--ptv-ink);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease, background 0.18s ease;
	z-index: 400;
}

.ptv-top.is-visible {
	opacity: 1;
	visibility: visible;
}

.ptv-top:hover {
	background: var(--ptv-red);
	color: #fff;
	border-color: var(--ptv-red);
}

.ptv-top svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

/* 16. Comments, pagination, misc WP classes ------------------------------ */

.ptv-pagination {
	margin-top: 50px;
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.ptv-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 10px;
	background: var(--ptv-light);
	color: var(--ptv-ink);
	font-family: var(--ptv-font-head);
}

.ptv-pagination .page-numbers:hover,
.ptv-pagination .page-numbers.current {
	background: var(--ptv-red);
	color: #fff;
}

.ptv-comments {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid var(--ptv-line);
}

.ptv-comments ol {
	list-style: none;
	padding: 0;
}

.ptv-comments .comment-body {
	padding: 18px 0;
	border-bottom: 1px solid var(--ptv-line);
}

.alignleft {
	float: left;
	margin: 0 26px 18px 0;
}

.alignright {
	float: right;
	margin: 0 0 18px 26px;
}

.aligncenter {
	margin: 0 auto 24px;
}

.wp-caption-text,
.wp-block-image figcaption {
	font-size: 14px;
	color: var(--ptv-muted);
	padding-top: 8px;
}

.sticky .ptv-entry__title::after {
	content: "\2605";
	color: var(--ptv-red);
	margin-left: 8px;
}

/* Elementor content width helper */
.ptv-elementor-page .ptv-content {
	padding: 0;
}

.ptv-elementor-page .ptv-wrap {
	max-width: none;
	padding: 0;
}

/* 17. Responsive --------------------------------------------------------- */

@media (max-width: 1100px) {
	.ptv-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ptv-layout {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 980px) {
	:root {
		--ptv-gap: 32px;
	}

	.ptv-nav-toggle {
		display: flex;
	}

	.ptv-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--ptv-ink);
		display: none;
		padding: 8px 0 14px;
	}

	.ptv-nav.is-open {
		display: block;
	}

	.ptv-nav ul {
		display: block;
	}

	.ptv-nav li {
		display: block;
	}

	.ptv-nav > ul > li > a {
		padding: 13px 24px;
		color: #edeceb;
	}

	.ptv-nav ul ul {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: rgba(0, 0, 0, 0.25);
		min-width: 0;
		padding: 0;
	}

	.ptv-nav ul ul a {
		padding-left: 44px;
	}

	.ptv-lang {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		padding: 12px 24px 0;
		margin: 8px 0 0;
	}

	.ptv-lang a {
		color: #edeceb;
	}

	.ptv-grid--3,
	.ptv-grid--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ptv-contact-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}

	.ptv-banner__inner {
		gap: 30px;
	}

	.ptv-banner__media {
		width: 140px;
		height: 140px;
	}

	.ptv-banner__title {
		font-size: 30px;
	}

	.ptv-banner__subtitle {
		font-size: 19px;
	}

	.ptv-section-title h2,
	.ptv-section-title h3 {
		font-size: 30px;
		white-space: normal;
	}
}

@media (max-width: 680px) {
	.ptv-section {
		padding: 54px 0;
	}

	.ptv-grid--2,
	.ptv-grid--3,
	.ptv-grid--4 {
		grid-template-columns: minmax(0, 1fr);
	}

	.ptv-footer__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 34px;
	}

	.ptv-banner {
		padding: 40px 0;
	}

	.ptv-banner__inner {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}

	.ptv-banner__title {
		font-size: 26px;
	}

	h1 {
		font-size: 32px;
	}

	h2 {
		font-size: 28px;
	}

	.ptv-feature__title {
		font-size: 25px;
	}

	.ptv-align-right {
		justify-content: flex-start;
		margin-top: 32px;
	}

	.ptv-why__num {
		width: 104px;
		height: 104px;
		font-size: 42px;
		margin-bottom: 24px;
	}

	.ptv-top {
		right: 16px;
		bottom: 16px;
		width: 46px;
		height: 46px;
	}
}

/* 18. Content section blocks (added in 1.0.2) ---------------------------- */

.ptv-cols {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 44px;
}

.ptv-cols > *:last-child > *:last-child {
	margin-bottom: 0;
}

.ptv-checklist {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 40px;
}

.ptv-checklist--single {
	grid-template-columns: minmax(0, 1fr);
}

.ptv-checklist li {
	position: relative;
	padding: 11px 0 11px 26px;
	border-bottom: 1px solid var(--ptv-line);
}

.ptv-checklist li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 21px;
	width: 9px;
	height: 9px;
	background: var(--ptv-red);
}

.ptv-checklist strong {
	color: var(--ptv-ink);
	font-family: var(--ptv-font-head);
	font-weight: 500;
	letter-spacing: 0.02em;
}

.ptv-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 36px;
	counter-reset: ptv-step;
}

.ptv-step {
	position: relative;
	padding-top: 14px;
	border-top: 3px solid var(--ptv-red);
}

.ptv-step__num {
	display: block;
	font-family: var(--ptv-font-head);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: var(--ptv-red);
	margin-bottom: 10px;
}

.ptv-step h3 {
	font-size: 21px;
	margin-bottom: 10px;
}

.ptv-step p {
	font-size: 15.5px;
	margin-bottom: 0;
}

.ptv-panel {
	background: var(--ptv-light);
	border-left: 4px solid var(--ptv-red);
	padding: 30px 34px;
	margin: 0 0 28px;
}

.ptv-panel > *:last-child {
	margin-bottom: 0;
}

.ptv-panel h3 {
	font-size: 22px;
}

.ptv-cta {
	background: var(--ptv-ink);
	color: #fff;
	padding: 46px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 34px;
	flex-wrap: wrap;
	margin: 0 0 24px;
}

.ptv-cta__text {
	flex: 1 1 420px;
}

.ptv-cta h3 {
	color: #fff;
	font-size: 28px;
	margin-bottom: 8px;
}

.ptv-cta p {
	margin: 0;
	color: #c3c7cd;
	font-size: 16px;
}

.ptv-facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 34px;
	margin: 0 0 24px;
}

.ptv-fact__value {
	display: block;
	font-family: var(--ptv-font-head);
	font-size: 42px;
	font-weight: 600;
	line-height: 1;
	color: var(--ptv-red);
	margin-bottom: 8px;
}

.ptv-fact__label {
	display: block;
	font-size: 15px;
	color: var(--ptv-body);
}

@media (max-width: 980px) {
	.ptv-steps,
	.ptv-facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.ptv-cols,
	.ptv-checklist,
	.ptv-steps,
	.ptv-facts {
		grid-template-columns: minmax(0, 1fr);
	}

	.ptv-cta {
		padding: 32px 26px;
	}
}
