/* ============================================================
   Панна Піна — main.css
   Брейкпоинты Tailwind v4 по умолчанию:
     sm  640px  | md  768px  | lg  1024px  | xl  1280px
   Главный max-width контейнера: 1520px
   Внутренние отступы: px-4 → sm:px-8 → lg:px-10 → xl:px-[160px]
   ============================================================ */

/* ---------- Local fonts ---------- */
@font-face {
	font-family: 'VAG World';
	src: url('../fonts/vag-world-bold.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

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

html,
body {
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	background: #f7f7f7;
	color: #060606;
	font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img,
svg {
	display: block;
	max-width: 100%;
}

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

button {
	font: inherit;
	cursor: pointer;
	background: none;
	border: 0;
	padding: 0;
	color: inherit;
}

input,
textarea,
select {
	font: inherit;
	color: inherit;
}

[hidden] {
	display: none !important;
}

/* WordPress admin bar fix for sticky header */
html[lang] body.admin-bar .pp-header {
	top: 32px;
}

@media (max-width: 782px) {
	html[lang] body.admin-bar .pp-header {
		top: 46px;
	}
}

.pp-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: #3852b4;
	color: #fff;
	padding: 8px 16px;
	z-index: 100;
}

.pp-skip-link:focus {
	left: 0;
}

/* ---------- Container ---------- */
.pp-container {
	max-width: 1520px;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
	width: 100%;
}

@media (min-width: 640px) {
	.pp-container {
		padding-left: 32px;
		padding-right: 32px;
	}
}

@media (min-width: 1024px) {
	.pp-container {
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media (min-width: 1280px) {
	.pp-container {
		padding-left: 160px;
		padding-right: 160px;
	}
}

/* ---------- Visibility helpers ---------- */

.pp-hide-below-md {
	display: none;
}

.pp-hide-below-lg {
	display: none;
}

@media (min-width: 640px) {
	.pp-hide-below-sm {
		display: block;
	}
}

@media (min-width: 768px) {
	.pp-hide-below-md {
		display: flex;
	}
}

@media (min-width: 1024px) {
	.pp-hide-below-lg {
		display: flex;
	}
}

.pp-app {
	min-height: 100vh;
	background: #f7f7f7;
}

.pp-main {
	display: block;
}

/* ---------- Universal section head ---------- */
.pp-section-head {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 0px;
	max-width: 100%;
}

.pp-section-title {
	font-family: 'VAG World', sans-serif;
	font-weight: 900;
	color: #2b2b2b;
	line-height: 1;
	margin: 0;
	font-size: clamp(26px, 2.5vw, 36px);
}

.pp-section-lead {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #060606;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: 1.1px;
	margin: 0;
}

/* ---------- Buttons ---------- */
.pp-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'VAG World', sans-serif;
	font-weight: 700;
	border-radius: 9999px;
	padding: 10px 20px;
	transition: background-color .2s, color .2s, border-color .2s, opacity .2s;
	white-space: nowrap;
}

.pp-btn--block {
	width: 100%;
	justify-content: space-between;
}

.pp-btn--md {
	padding: 10px 24px 14px 24px;
	font-size: 16px;
}

.pp-btn--md svg {
	align-self: end;
}

.pp-btn--lg {
	padding: 16px 24px 20px 24px;
	font-size: 16px;
}

.pp-btn--lg svg {
	align-self: end;
	flex-shrink: 0;
}



.pp-btn--orange {
	background: #FF931E;
	color: #f7f7f7;
}

.pp-btn--orange:hover {
	background: #e8821a;
}

.pp-btn--white-orange {
	background: #fff;
	color: #FF931E;
	border: 1px solid rgba(56, 82, 180, .12);
}

.pp-btn--white-orange:hover {
	border-color: #FF931E;
}

.pp-circle-btn {
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	background: #fff;
	border: 1px solid #FF931E;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: opacity .2s;
}

.pp-circle-btn--dimmed {
	opacity: .5;
}

.pp-circle-btn--dimmed:hover {
	opacity: 1;
}

.pp-circle-btn:hover {
	opacity: .85;
}

/* ---------- Header ---------- */
.pp-header {
	position: sticky;
	top: 0;
	z-index: 50;
	width: 100%;
}

/* Top blue bar */
.pp-header__topbar {
	background: #3852b4;
	color: #fff;
}

.pp-header__topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3px;
	padding-top: 8px;
	padding-bottom: 8px;
}

.pp-header__topbtn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #fff;
	transition: opacity .2s;
}

.pp-header__topbtn:hover {
	opacity: .8;
}

.pp-header__topicon {
	width: 32px;
	height: 32px;
	border-radius: 9999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, .2);
	flex-shrink: 0;
}

.pp-header__topicon--social {
	border-color: rgba(255, 255, 255, .3);
	transition: background .2s;
}

.pp-header__topicon--social:hover {
	background: rgba(255, 255, 255, .1);
}

.pp-header__toplabel {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 1px;
}

.pp-header__topbtn[href^="tel:"] .pp-header__toplabel {
	font-size: 12px;
}

.pp-header__topsocial {
	display: none;
	align-items: center;
	gap: 12px;
}

@media (min-width: 768px) {
	.pp-header__topsocial {
		display: flex;
	}
}

/* Main nav */
.pp-header__nav {
	background: #f7f7f7;
	width: 100%;
	border-bottom: 1px solid rgba(56, 82, 180, .08);
}

.pp-header__nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 8px;
	padding-bottom: 8px;
}

.pp-header__logo {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
}

.pp-logo {
	display: block;
	height: auto;
}

.pp-logo.h-12 {
	height: 48px;
}

.pp-logo--h9 {
	height: 36px;
}

.pp-logo--h5 {
	height: 20px;
}

.pp-header__links {
	display: none;
	align-items: center;
	gap: 20px;
}

@media (min-width: 1024px) {
	.pp-header__links {
		display: flex;
	}
}

@media (min-width: 1280px) {
	.pp-header__links {
		gap: 28px;
	}
}

.pp-header__link {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	font-size: 14px;
	color: #3852b4;
	letter-spacing: 1.1px;
	white-space: nowrap;
	transition: color .2s;
}

.pp-header__link:hover {
	color: #FF931E;
}

.pp-header__cta-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
}

.pp-header__cta {
	font-size: 15px;
	padding: 8px 20px 11px 20px;
}

.pp-header__burger {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #FF931E;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background .2s;
}

.pp-header__burger:hover {
	background: #f08515;
}

@media (min-width: 1024px) {
	.pp-header__burger {
		display: none;
	}
}

.pp-header__burger-icon {
	display: block;
}

.pp-header__burger-icon--close {
	display: none;
}

.pp-header__burger.is-open .pp-header__burger-icon--open {
	display: none;
}

.pp-header__burger.is-open .pp-header__burger-icon--close {
	display: block;
}

.pp-header__mobile {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 16px 0 8px;
	border-top: 1px solid rgba(56, 82, 180, .08);
	margin-top: 12px;
}

@media (min-width: 1024px) {
	.pp-header__mobile {
		display: none;
	}
}

.pp-header__mobile-link {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	font-size: 15px;
	color: #3852b4;
	letter-spacing: 1.1px;
	padding: 4px 0;
	transition: color .2s;
}

.pp-header__mobile-link:hover {
	color: #FF931E;
}

/* ---------- Mobile fullscreen menu ---------- */
.pp-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: #faf9fe;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	overflow-x: hidden;
}

@media (min-width: 1024px) {
	.pp-mobile-menu { display: none !important; }
}

.pp-mobile-menu__topbar {
	background: #3852b4;
	color: #fff;
	flex-shrink: 0;
}

.pp-mobile-menu__topbar-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	padding-top: 8px;
	padding-bottom: 8px;
}

.pp-mobile-menu__toplabel {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 1.1px;
	color: #fff;
}

.pp-mobile-menu__topsocial {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.pp-mobile-menu__topicon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background .2s;
}

.pp-mobile-menu__topicon:hover {
	background: rgba(255, 255, 255, .1);
}

.pp-mobile-menu__header {
	background: #f7f7f7;
	padding: 8px 0;
	border-bottom: 1px solid rgba(56, 82, 180, .08);
	flex-shrink: 0;
}

.pp-mobile-menu__header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.pp-mobile-menu__logo {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
}

.pp-mobile-menu__actions {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.pp-mobile-menu__close {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #FF931E;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background .2s;
}

.pp-mobile-menu__close:hover {
	background: #f08515;
}

.pp-mobile-menu__nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	padding: 56px 20px 24px;
	flex-shrink: 0;
}

.pp-mobile-menu__link {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #3852b4;
	letter-spacing: 1.1px;
	line-height: 1;
	text-align: center;
	transition: color .2s;
}

.pp-mobile-menu__link:hover {
	color: #FF931E;
}

.pp-mobile-menu__illustration {
	margin-top: auto;
	width: 100%;
	pointer-events: none;
	transform: translateY(90px);
}

.pp-hero__slider-wrapper {
/* From https://css.glass */
background: rgba(255, 255, 255, 0.09);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(7.2px);
-webkit-backdrop-filter: blur(7.2px);
border: 1px solid rgba(255, 255, 255, 0.83);
padding: 10px;
border-radius: 20px;
height: fit-content;
}


.pp-mobile-menu__image-wrap {
	width: 100%;
	max-width: 375px;
	margin: 0 auto;
	display: block;
}

.pp-mobile-menu__image-wrap img {
	display: block;
	width: 100%;
	height: auto;
}

/* ============================================================
   HERO
   ============================================================ */
.pp-hero {
	position: relative;
	background-color: #fff;
	overflow: hidden;
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
}

.pp-hero__container {
	padding-top: 0;
	padding-bottom: 0;
}

.pp-hero__row {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 32px;
	padding-top: 40px;
	padding-bottom: 40px;
}

@media (min-width: 1024px) {
	.pp-hero__row {
		flex-direction: row;
		gap: 48px;
		padding-top: 64px;
		padding-bottom: 64px;
	}
}

.pp-hero__text {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 24px;
	padding-top: 16px;
	padding-bottom: 16px;
}

@media (min-width: 1024px) {
	.pp-hero__text {
		max-width: 560px;
	}
}

.pp-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(56, 82, 180, .14);
	border: 1px solid rgba(56, 82, 180, .2);
	border-radius: 9999px;
	padding: 10px 16px;
	align-self: flex-start;
}

.pp-hero__badge-dot {
	display: block;
	width: 6px;
	height: 6px;
	background: #FF931E;
	border-radius: 3px;
	flex-shrink: 0;
}

.pp-hero__badge-label {
	font-family: 'Manrope', sans-serif;
	font-weight: 600;
	font-size: 15px;
	color: #3852b4;
	white-space: nowrap;
}

.pp-hero__title {
	font-family: 'VAG World', sans-serif;
	font-weight: 900;
	color: #3852b4;
	letter-spacing: -0.5px;
	line-height: 0.95;
	margin: 0;
	font-size: clamp(44px, 4.5vw, 72px);
}

.pp-hero__lead {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #060606;
	font-size: 17px;
	letter-spacing: 1.1px;
	line-height: 1.375;
	max-width: 400px;
	margin: 0;
}

.pp-hero__features {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.pp-hero__feature {
	background: #fff;
	border: 1px solid rgba(56, 82, 180, .08);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 9999px;
}

.pp-hero__feature-label {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	font-size: 14px;
	color: #3852b4;
	white-space: nowrap;
}

.pp-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* Slider — translucent frame around square slide */
.pp-hero__slider {
	position: relative;
	width: 100%;
	flex-shrink: 0;
	background: rgba(255, 255, 255, .3);
	border: 1px solid rgba(255, 255, 255, .6);
	border-radius: 20px;
	box-sizing: border-box;
	max-width: 590px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 1024px) {
	.pp-hero__slider {
		width: 420px;
		padding: 16px;
		border-radius: 16px;
	}

	.pp-hero__actions {
		flex-wrap: nowrap;
	}
}

@media (min-width: 1280px) {
	.pp-hero__slider {
		width: 590px;
		padding: 20px;
		border-radius: 20px;
	}
}

.pp-hero__slides {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 10px;
	overflow: hidden;
}

.pp-hero__slide {
	position: absolute;
	inset: 0;
	transition: opacity .7s ease;
	opacity: 0;
}

.pp-hero__slide.is-active {
	opacity: 1;
}

.pp-hero__slide-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.pp-hero__slide-logo {
	position: absolute;
	top: 0;
	left: 0;
	width: 168px;
	height: 110px;
	padding: 22px 0 0 22px;
	box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	background: radial-gradient(ellipse 95px 65px at 40% 38%, rgba(13, 27, 75, .7) 0%, rgba(13, 27, 75, .45) 45%, rgba(13, 27, 75, .15) 75%, rgba(13, 27, 75, 0) 100%);
	pointer-events: none;
}

.pp-hero__slide-promo {
	position: absolute;
	left: 30px;
	bottom: 28px;
	right: 30px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.pp-hero__slide-value {
	display: block;
	font-family: 'VAG World', sans-serif;
	font-weight: 900;
	color: rgba(255, 255, 255, .92);
	line-height: .95;
	font-size: 43px;
}

@media screen and (min-width: 1440px) {
	.pp-hero__slide-value {
		font-size: 52px;
	}
}

.pp-hero__slide-label {
	display: block;
	font-family: 'VAG World', sans-serif;
	font-weight: 700;
	color: rgba(255, 255, 255, .92);
	font-size: 19px;
	line-height: 1.1;
	max-width: min(230px, 60%);
}

@media (min-width: 1024px) {
	.pp-hero__slide-value {
		font-size: 62px;
	}

	.pp-hero__slide-label {
		font-size: 28px;
	}
}

@media (min-width: 1280px) {
	.pp-hero__slide-value {
		font-size: 76px;
	}

	.pp-hero__slide-label {
		font-size: 34px;
	}
}

@media screen and (min-width: 1440px) {
	.pp-hero__slide-label {
		font-size: 24px;
	}
}

.pp-hero__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #FF931E;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: opacity .2s ease;
	cursor: pointer;
	padding: 0;
	opacity: 1;
}

.pp-hero__arrow:hover {
	opacity: .5;
}

.pp-hero__arrow--prev {
	left: 30px;
}

.pp-hero__arrow--next {
	right: 30px;
}

@media (max-width: 1023px) {
	.pp-hero__arrow {
		width: 34px;
		height: 34px;
	}

	.pp-hero__arrow svg {
		width: 20px;
		height: 20px;
	}

	.pp-hero__arrow--prev {
		left: 22px;
	}

	.pp-hero__arrow--next {
		right: 22px;
	}
}

/* Slider dots — overlaid inside the active slide */
.pp-hero__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 36px;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	pointer-events: none;
}

.pp-hero__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .55);
	border: 0;
	padding: 0;
	pointer-events: auto;
	cursor: pointer;
	transition: width .25s ease, background .2s ease;
}

.pp-hero__dot:hover {
	background: rgba(255, 255, 255, .85);
}

.pp-hero__dot.is-active {
	width: 24px;
	border-radius: 9999px;
	background: #fff;
}

@media (min-width: 1024px) {
	.pp-hero__dots { bottom: 32px; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.pp-marquee {
	background: #FF931E;
	overflow: hidden;
	padding: 16px 0;
}

.pp-marquee__track {
	display: flex;
	white-space: nowrap;
	will-change: transform;
	animation: pp-marquee 30s linear infinite;
}

.pp-marquee__text {
	flex-shrink: 0;
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	color: #0231FF;
	font-size: 24px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin: 0 40px;
}

@media screen and (min-width: 1440px) {
	.pp-marquee__text {
		font-size: 58px;
	}

	.pp-service-card__head {
		min-height: 120px;
	}
}

@keyframes pp-marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* ============================================================
   STATS
   ============================================================ */
.pp-stats {
	background: #fff;
	padding: 40px 0;
}

@media (min-width: 1024px) {
	.pp-stats {
		padding: 64px 0;
	}
}

.pp-stats__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

@media (min-width: 1024px) {
	.pp-stats__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 20px;
	}
}

.pp-stats__card {
	background: rgba(56, 82, 180, .08);
	border-radius: 20px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

@media (min-width: 1024px) {
	.pp-stats__card {
		gap: 16px;
	}
}

.pp-stats__value {
	font-family: 'VAG World', sans-serif;
	font-weight: 900;
	color: #3852b4;
	line-height: 1;
	white-space: nowrap;
	font-size: clamp(32px, 3.5vw, 56px);
}

.pp-stats__label {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #060606;
	font-size: 15px;
	letter-spacing: 1.1px;
	line-height: 1.375;
}

@media (min-width: 1024px) {
	.pp-stats__label {
		font-size: 18px;
	}
}

/* ============================================================
   SERVICES
   ============================================================ */
.pp-services {
	background: #fff;
	padding: 64px 0;
}

@media (min-width: 1024px) {
	.pp-services {
		padding: 80px 0;
	}
}

.pp-services__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 20px;
	margin-top: 15px;
}

@media (min-width: 768px) {
	.pp-services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.pp-service-card__note {
		min-height: 44px;
	}

	.pp-service-card__head {
		min-height: 120px;
	}
}

@media (min-width: 1280px) {
	.pp-services__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.pp-service-card__head {
		min-height: 140px;
	}
}

/* Mobile: show only first 3 cards until expanded */
@media (max-width: 767px) {
	.pp-services__grid .pp-service-card:nth-child(n+4) {
		display: none;
	}

	.pp-services__grid.is-expanded .pp-service-card:nth-child(n+4) {
		display: flex;
	}
}

/* "Show more" toggle button — mobile only */
.pp-services__more {
	display: none;
}

@media (max-width: 767px) {
	.pp-services__more {
		display: flex;
		align-items: center;
		gap: 8px;
		margin: 24px auto 0;
		padding: 10px 0 6px;
		background: transparent;
		border: 0;
		border-bottom: 1px solid #FF931E;
		border-radius: 0;
		color: #FF931E;
		font-family: 'VAG World', sans-serif;
		font-weight: 700;
		font-size: 14px;
		line-height: 1;
		cursor: pointer;
		transition: opacity .2s;
	}

	.pp-services__more:hover {
		opacity: .7;
	}

	.pp-services__more-icon {
		flex-shrink: 0;
		transform: rotate(180deg);
		transition: transform .2s;
	}

	.pp-services__more[aria-expanded="true"] .pp-services__more-icon {
		transform: rotate(0deg);
	}
}

.pp-service-card {
	background: #f7f7f7;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	min-height: 548px;
	transition: outline .2s;
	outline: 1px solid transparent;
	outline-offset: -1px;
}

.pp-service-card:hover {
	outline-color: #FF931E;
}

.pp-service-card__head {
	background: rgba(56, 82, 180, .1);
	border-radius: 20px 20px 0 0;
	padding: 30px 30px 20px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.pp-service-card__icon-wrap {
	background: rgba(56, 82, 180, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	flex-shrink: 0;
	width: 60px;
	height: 60px;
}

.pp-service-card__title-wrap {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pp-service-card__title {
	font-family: 'VAG World', sans-serif;
	font-weight: 700;
	color: #3852b4;
	font-size: 18px;
	line-height: 1.25;
}

.pp-service-card__subtitle {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #060606;
	font-size: 16px;
	letter-spacing: 1.1px;
	line-height: 1.25;
}

.pp-service-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0 30px 30px;
}

.pp-service-card__list {
	display: flex;
	flex-direction: column;
}

.pp-service-card__row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(56, 82, 180, .08);
}

.pp-service-card__name {
	flex: 1;
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
	color: #060606;
	font-size: 16px;
	line-height: 1.25;
}

.pp-service-card__price {
	font-family: 'Manrope', sans-serif;
	font-weight: 600;
	color: #3852b4;
	font-size: 16px;
	white-space: nowrap;
	flex-shrink: 0;
}

.pp-service-card__footer {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 24px;
}

.pp-service-card__note {
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
	color: #666;
	font-size: 16px;
	line-height: 1.4;
	margin: 0;
}

/* ============================================================
   PROBLEMS
   ============================================================ */
.pp-problems {
	background: #fff;
	padding: 64px 0;
}

@media (min-width: 1024px) {
	.pp-problems {
		padding: 80px 0;
	}
}

.pp-problems__head {
	max-width: 710px;
}

.pp-problems__row {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-top: 15px;
}

@media (min-width: 1024px) {
	.pp-problems__row {
		flex-direction: row;
	}
}

.pp-problems__illustration {
	position: relative;
	width: 100%;
	flex-shrink: 0;
	overflow: hidden;
}

@media (min-width: 1024px) {
	.pp-problems__illustration {
		width: 40%;
	}
}

.pp-problems__circle {
	position: absolute;
	width: 373px;
	height: 373px;
	border-radius: 9999px;
	background: rgba(56, 82, 180, .14);
	left: calc(50% - 12.5px - 186.5px);
	top: calc(50% + 38.5px - 186.5px);
}

.pp-problems__image-wrap {
	position: absolute;
	inset: 0;
	top: 81px;
	overflow: hidden;
}

.pp-problems__image-wrap img {
	position: absolute;
	max-width: none;
	height: 116.62%;
	width: 52.91%;
	left: 21.34%;
	top: -9.76%;
	object-fit: cover;
}

.pp-problems__overlay {
	max-width: 100%;
	font-family: 'VAG World', sans-serif;
	font-weight: 900;
	color: #3852b4;
	font-size: 20px;
	letter-spacing: -0.28px;
	line-height: 0.95;
	margin-bottom: 40px;
}

.pp-problems__img {
	max-width: 355px;
	margin: 0 auto;
}

@media screen and (min-width: 1024px) {
	.pp-problems__overlay {
		font-size: 24px;
	}

	.pp-problems__row {
		flex-direction: row;
		align-items: start;
	}
}

@media screen and (min-width: 1440px) {
	.pp-problems__overlay {
		font-size: 28px;
	}
}


.pp-problems__list {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}

.pp-problems__card {
	background: rgba(56, 82, 180, .08);
	border-radius: 20px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.pp-problems__icon-wrap {
	background: #fff;
	width: 60px;
	height: 60px;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.pp-problems__text {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pp-problems__title {
	font-family: 'VAG World', sans-serif;
	font-weight: 700;
	color: #3852b4;
	font-size: 18px;
	line-height: 1.25;
}

.pp-problems__desc {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #060606;
	font-size: 16px;
	letter-spacing: 1.1px;
	line-height: 1.375;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.pp-reviews {
	background: #fff;
	padding: 64px 0;
}

@media (min-width: 1024px) {
	.pp-reviews {
		padding: 96px 0;
	}
}

.pp-reviews__head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 40px;
}

@media (min-width: 640px) {
	.pp-reviews__head {
		flex-direction: row;
		align-items: center;
	}
}

@media (min-width: 1024px) {
	.pp-reviews__head {
		margin-bottom: 48px;
	}
}

.pp-reviews__title {
	font-weight: 700;
	white-space: nowrap;
}

.pp-reviews__rating {
	display: flex;
	align-items: flex-end;
	gap: 10px;
}

.pp-reviews__rating-value {
	font-family: 'VAG World', sans-serif;
	font-weight: 700;
	color: #3852b4;
	white-space: nowrap;
	line-height: 1;
	font-size: clamp(28px, 2.5vw, 40px);
}

.pp-reviews__rating-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-bottom: 4px;
}

.pp-reviews__stars {
	display: flex;
	gap: 2px;
}

.pp-reviews__rating-label {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #060606;
	font-size: 15px;
	letter-spacing: 1.1px;
}

.pp-reviews__slider.swiper {
	margin-bottom: 40px;
	overflow: hidden;
}

.pp-reviews__slider .swiper-wrapper {
	align-items: stretch;
}

.pp-reviews__slider .swiper-slide {
	height: auto;
	display: flex;
}

.pp-reviews__slider .swiper-slide .pp-review-card {
	max-width: 590px;
	margin: 0 auto;
}

.pp-review-card {
	background: #f7f7f7;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.pp-review-card__head {
	background: rgba(56, 82, 180, .1);
	border-radius: 20px 20px 0 0;
	padding: 28px 20px;
}

.pp-review-card__head-inner {
	display: flex;
	align-items: center;
	gap: 12px;
}

.pp-review-card__avatar {
	position: relative;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 9999px;
	overflow: hidden;
}

.pp-review-card__avatar img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pp-review-card__avatar--initial {
	background: rgba(56, 82, 180, .2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.pp-review-card__avatar--initial span {
	font-family: 'VAG World', sans-serif;
	font-weight: 700;
	color: #3852b4;
	font-size: 18px;
}

.pp-review-card__info {
	flex: 1;
	min-width: 0;
}

.pp-review-card__row1 {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	margin-bottom: 6px;
}

.pp-review-card__name {
	font-family: 'VAG World', sans-serif;
	font-weight: 600;
	color: #3852b4;
	font-size: 16px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pp-review-card__stars {
	display: flex;
	gap: 2px;
	flex-shrink: 0;
}

.pp-review-card__row2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.pp-review-card__verified {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #060606;
	font-size: 13px;
	letter-spacing: 1.1px;
}

.pp-review-card__date {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #060606;
	font-size: 14px;
	letter-spacing: 1.1px;
	white-space: nowrap;
}

.pp-review-card__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pp-review-card__ba {
	display: flex;
	gap: 6px;
}

.pp-review-card__ba-item {
	position: relative;
	flex: 1;
	height: 200px;
	border-radius: 10px;
	overflow: hidden;
}

@media (min-width: 768px) {
	.pp-review-card__ba-item {
		height: 300px;
	}
}

.pp-review-card__ba-item img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pp-review-card__ba-label {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: #fff;
	border: 1px solid rgba(56, 82, 180, .08);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 9999px;
}

.pp-review-card__ba-label>span:last-child {
	font-family: 'Manrope', sans-serif;
	font-weight: 600;
	color: #3852b4;
	font-size: 13px;
}

.pp-review-card__ba-dot {
	display: block;
	width: 6px;
	height: 6px;
	background: #FF931E;
	border-radius: 3px;
}

.pp-review-card__text {
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
	color: #060606;
	font-size: 15px;
	line-height: 1.625;
	margin: 0;
}

.pp-reviews__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.pp-reviews__arrows {
	display: flex;
	gap: 20px;
	align-items: center;
}

/* ============================================================
   FAQ INLINE
   ============================================================ */
.pp-faq-inline {
	padding: 64px 0;
	background-color: #fff;
}

@media (min-width: 1024px) {
	.pp-faq-inline {
		padding: 80px 0;
	}
}

.pp-faq-inline__panel {
	background: #f7f7f7;
	border-radius: 20px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

@media (min-width: 1024px) {
	.pp-faq-inline__panel {
		padding: 40px;
	}
}

.pp-faq-inline__row {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

@media (min-width: 1024px) {
	.pp-faq-inline__row {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		row-gap: 64px;
		column-gap: 48px;
	}
}

@media (min-width: 1280px) {
	.pp-faq-inline__row {
		flex-wrap: nowrap;
		gap: 64px;
	}
}

.pp-faq-inline__title-col {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex-shrink: 0;
	width: 100%;
}

@media (min-width: 1280px) {
	.pp-faq-inline__title-col {
		width: 265px;
	}
}

.pp-faq-inline__title {
	font-size: clamp(28px, 2.2vw, 36px);
}

.pp-faq-inline__image-col {
	position: relative;
	flex-shrink: 0;
	width: 280px;
	height: 280px;
}

@media (min-width: 1024px) {
	.pp-faq-inline__image-col {
		width: 360px;
		height: 360px;
	}
}

.pp-faq-inline__ring {
	position: absolute;
	border-radius: 9999px;
	border: 1px solid rgba(56, 82, 180, .5);
	background: rgba(56, 82, 180, .08);
}

.pp-faq-inline__ring--outer {
	inset: -28px;
	opacity: .6;
}

.pp-faq-inline__ring--inner {
	inset: -8px;
}

.pp-faq-inline__image-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.pp-faq-inline__image-wrap img {
	object-fit: cover;
	pointer-events: none;
}

.pp-faq-inline__qa-col {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pp-faq-inline__qa {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pp-faq-inline__q {
	font-family: 'VAG World', sans-serif;
	font-weight: 900;
	color: #3852b4;
	font-size: 18px;
	line-height: 1.25;
	margin: 0;
}

@media (min-width: 1024px) {
	.pp-faq-inline__q {
		font-size: 20px;
	}
}

.pp-faq-inline__a {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #060606;
	font-size: 15px;
	letter-spacing: 1.1px;
	line-height: 1.625;
	margin: 0;
}

@media (min-width: 1024px) {
	.pp-faq-inline__a {
		font-size: 16px;
	}
}

.pp-faq-inline__highlight {
	font-weight: 700;
	color: #FF931E;
}

.pp-faq-inline__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.pp-faq-inline__counter {
	font-family: 'VAG World', sans-serif;
	font-weight: 900;
	color: #3852b4;
	line-height: 1;
	font-size: clamp(28px, 2.5vw, 36px);
}

.pp-faq-inline__arrows {
	display: flex;
	gap: 16px;
	align-items: center;
}

/* ============================================================
   CONDITIONS
   ============================================================ */
.pp-conditions {
	background: #fff;
	padding: 64px 0;
}

@media (min-width: 1024px) {
	.pp-conditions {
		padding: 80px 0;
	}
}

.pp-conditions__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 20px;
	align-items: stretch;
	margin-top: 20px;
}

@media (min-width: 640px) {
	.pp-conditions__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1280px) {
	.pp-conditions__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.pp-conditions__card {
	background: rgba(56, 82, 180, .08);
	border-radius: 20px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-self: auto;
}

.pp-conditions__icon-wrap {
	background: #fff;
	width: 60px;
	height: 60px;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.pp-conditions__text {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pp-conditions__title {
	font-family: 'VAG World', sans-serif;
	font-weight: 700;
	color: #3852b4;
	font-size: 18px;
	line-height: 1.25;
}

.pp-conditions__desc {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #060606;
	font-size: 16px;
	letter-spacing: 1.1px;
	line-height: 1.375;
}

/* ============================================================
   COMPARISON
   ============================================================ */
.pp-comparison {
	background: #fff;
	padding: 64px 0;
}

@media (min-width: 1024px) {
	.pp-comparison {
		padding: 80px 0;
	}
}

.pp-comparison__row {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 20px;
}

@media (min-width: 1024px) {
	.pp-comparison__row {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 48px;
	}
}

/* Illustration — circle background with photo + overlay title */
.pp-comparison__illustration {
	position: relative;
	width: 100%;
	margin: 0 auto;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	flex-shrink: 0;
}

@media (min-width: 1024px) {
	.pp-comparison__illustration {
		width: 488px;
		margin: 0;
	}
}

.pp-comparison__overlay {
	position: absolute;
	top: 11%;
	left: 0;
	right: 0;
	z-index: 2;
	text-align: center;
	font-family: 'VAG World', sans-serif;
	font-weight: 700;
	color: #3852b4;
	font-size: 20px;
	letter-spacing: -0.2px;
	line-height: .95;
	margin: 0;
}

@media (min-width: 1024px) {
	.pp-comparison__overlay {
		font-size: 28px;
		letter-spacing: -0.28px;
	}
}

.pp-comparison__image-wrap {
	width: 100%;
	height: auto;
	pointer-events: none;
}

.pp-comparison__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Comparison table */
.pp-comparison__table {
	position: relative;
	width: 100%;
	flex: 1;
	min-width: 0;
}

@media (min-width: 1024px) {
	.pp-comparison__table {
		max-width: 692px;
	}
}

.pp-comparison__panna-bg {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 85px;
	width: 81px;
	background: rgba(56, 82, 180, .08);
	-webkit-backdrop-filter: blur(14.5px);
	backdrop-filter: blur(14.5px);
	border-radius: 10px;
	z-index: 0;
	height: 105%;
}

@media (min-width: 1024px) {
	.pp-comparison__panna-bg {
		right: 140px;
		width: 184px;
		border-radius: 20px;
	}
}

.pp-comparison__head-row,
.pp-comparison__row-item {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 81px 85px;
	align-items: center;
}

@media (min-width: 1024px) {
	.pp-comparison__head-row,
	.pp-comparison__row-item {
		grid-template-columns: minmax(0, 1fr) 184px 140px;
	}
}

.pp-comparison__head-row {
	align-items: end;
	padding: 10px 0 30px 0;
}

@media (min-width: 1024px) {
	.pp-comparison__head-row {
		padding: 20px 0;
	}
}

.pp-comparison__col-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.pp-comparison__panna-logo {
	width: 31.6px;
	height: 30px;
	flex-shrink: 0;
}

.pp-comparison__panna-logo svg {
	width: 100%;
	height: 100%;
	display: block;
}

.pp-comparison__competitor-icon {
	width: 25.6px;
	height: 30px;
	flex-shrink: 0;
}

.pp-comparison__competitor-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

@media (min-width: 1024px) {
	.pp-comparison__panna-logo {
		width: 56.882px;
		height: 54px;
	}

	.pp-comparison__competitor-icon {
		width: 46px;
		height: 54px;
	}
}

.pp-comparison__col-label {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #060606;
	font-size: 12px;
	letter-spacing: 1.1px;
	text-align: center;
	line-height: 1;
}

@media (min-width: 1024px) {
	.pp-comparison__col-label {
		font-size: 18px;
	}
}

.pp-comparison__col-label--panna {
	font-family: 'VAG World', sans-serif;
	font-weight: 700;
	color: #3852b4;
	letter-spacing: 0;
}

.pp-comparison__row-item {
	padding: 10px 0 11px;
	border-bottom: 1px solid rgba(56, 82, 180, .08);
}

@media (min-width: 1024px) {
	.pp-comparison__row-item {
		padding: 14px 0 15px;
	}
}

.pp-comparison__row-label {
	min-width: 0;
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #060606;
	font-size: 12px;
	line-height: 1;
}

@media (min-width: 1024px) {
	.pp-comparison__row-label {
		font-size: 16px;
	}
}

.pp-comparison__row-col {
	display: flex;
	justify-content: center;
}

.pp-comparison__dot {
	display: block;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #3852b4;
}

/* ============================================================
   GUARANTEE
   ============================================================ */
.pp-guarantee {
	padding: 64px 0;
}

@media (min-width: 1024px) {
	.pp-guarantee {
		padding: 80px 0;
	}
}

.pp-guarantee__panel {
	position: relative;
	background: #3852b4;
	background-repeat: no-repeat;
	border-radius: 20px;
	background-image: url("../images/bubbles-4.webp");
	background-size: 105%;
	padding: 20px;
	background-size: cover;
	overflow: hidden;
}

@media (min-width: 640px) {
	.pp-guarantee__panel {
		padding: 40px;
	}
}

@media screen and (min-width: 768px) {
	.pp-guarantee__panel {
		background-image: contain;
	}
}

@media screen and (min-width: 1280px) {
	.pp-guarantee__panel {
		padding: 32px;
	}
}
.pp-guarantee__bubble {
	position: absolute;
	border-radius: 9999px;
	opacity: .5;
	pointer-events: none;
	background: radial-gradient(circle at 40% 30%, rgba(255, 255, 255, .26), rgba(91, 119, 224, .81));
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}

.pp-guarantee__bubble--1 {
	width: 95px;
	height: 95px;
	right: 60px;
	top: 444px;
}

.pp-guarantee__bubble--2 {
	width: 95px;
	height: 95px;
	right: 100px;
	top: 86px;
}

.pp-guarantee__bubble--3 {
	width: 65px;
	height: 65px;
	right: 350px;
	top: 36px;
}

.pp-guarantee__bubble--4 {
	width: 83px;
	height: 83px;
	left: -41px;
	top: 149px;
}

.pp-guarantee__head {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 40px;
	position: relative;
}

.pp-guarantee__title {
	color: #fff;
}

.pp-guarantee__lead {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #fff;
	font-size: 18px;
	letter-spacing: 1.1px;
	line-height: 1;
	margin: 0;
}

/* ----- Layout: single grid, mobile 2×3, desktop 3×2 ----- */
.pp-guarantee__layout {
	display: grid;
	grid-template-columns: 50px minmax(0, 1fr);
	column-gap: 10px;
	row-gap: 20px;
	align-items: center;
	position: relative;
}

/* Vertical connecting line behind steps column — ends at first/last circle centers */
.pp-guarantee__layout::before {
	content: '';
	position: absolute;
	left: 24px;
	top: calc((100% - 40px) / 6);
	bottom: calc((100% - 40px) / 6);
	width: 1px;
	background: rgba(255, 255, 255, .4);
	z-index: 0;
}

.pp-guarantee__step {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #4c63bc;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-family: 'VAG World', sans-serif;
	font-weight: 900;
	color: #fff;
	font-size: 18px;
	line-height: 1;
	justify-self: center;
	align-self: center;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.pp-guarantee__layout {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		grid-template-rows: auto 1fr;
		grid-template-areas:
			"s1 s2 s3"
			"c1 c2 c3";
		column-gap: 20px;
		row-gap: 20px;
		align-items: stretch;
	}

	.pp-guarantee__layout > *:nth-child(1) { grid-area: s1; }
	.pp-guarantee__layout > *:nth-child(2) { grid-area: c1; }
	.pp-guarantee__layout > *:nth-child(3) { grid-area: s2; }
	.pp-guarantee__layout > *:nth-child(4) { grid-area: c2; }
	.pp-guarantee__layout > *:nth-child(5) { grid-area: s3; }
	.pp-guarantee__layout > *:nth-child(6) { grid-area: c3; }

	.pp-guarantee__step {
		width: 60px;
		height: 60px;
		font-size: 22px;
	}

	/* Horizontal line over the steps row, between circle centers */
	.pp-guarantee__layout::before {
		top: 30px;
		bottom: auto;
		left: calc((100% - 40px) / 6);
		right: calc((100% - 40px) / 6);
		width: auto;
		height: 1px;
	}
}

/* ----- Card ----- */
.pp-guarantee__card {
	position: relative;
	border-radius: 20px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	border: 1px solid rgba(255, 255, 255, .24);
}

.pp-guarantee__icon-wrap {
	background: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.pp-guarantee__icon-wrap {
		width: 60px;
		height: 60px;
	}
}

.pp-guarantee__text {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
	text-align: center;
}

.pp-guarantee__card-title {
	font-family: 'VAG World', sans-serif;
	font-weight: 900;
	color: #fff;
	font-size: 16px;
	line-height: 1.25;
}

@media (min-width: 768px) {
	.pp-guarantee__card-title {
		font-size: 18px;
	}
}

.pp-guarantee__card-desc {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #fff;
	font-size: 14px;
	letter-spacing: 1.1px;
	line-height: 1.375;
}

@media (min-width: 768px) {
	.pp-guarantee__card-desc {
		font-size: 16px;
	}
}

/* ============================================================
   FAQ
   ============================================================ */
.pp-faq {
	padding: 64px 0;
}

@media (min-width: 1024px) {
	.pp-faq {
		padding: 80px 0;
	}
}

.pp-faq__row {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: flex-start;
}

@media (min-width: 1024px) {
	.pp-faq__row {
		flex-direction: row;
	}
}

.pp-faq__left {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}


.pp-faq__illustration {
	position: relative;
	overflow: hidden;
}

.pp-faq__ellipse {
	position: absolute;
	left: 50%;
	top: calc(50% - 5px);
	transform: translate(-50%, -50%);
}

.pp-faq__ellipse--outer {
	width: 396px;
	height: 395px;
}

.pp-faq__ellipse--inner {
	width: 356px;
	height: 355px;
}

.pp-faq__ellipse svg {
	width: 100%;
	height: 100%;
	display: block;
}

.pp-faq__image-wrap img {
	width: 100%;
	height: auto;
	object-fit: contain;
	pointer-events: none;
}

.pp-faq__list {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pp-faq__item {
	background: rgba(56, 82, 180, .08);
	border-radius: 20px;
}

.pp-faq__btn {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
	text-align: left;
}

.pp-faq__star {
	flex-shrink: 0;
}

.pp-faq__content {
	flex: 1;
	min-width: 0;
}

.pp-faq__q {
	font-family: 'VAG World', sans-serif;
	font-weight: 700;
	color: #3852b4;
	font-size: 18px;
	line-height: 1.25;
	display: block;
}

.pp-faq__answer-wrap {
	overflow: hidden;
	max-height: 0;
	transition: max-height .3s ease;
}

.pp-faq__item.is-open .pp-faq__answer-wrap {
	max-height: 320px;
	margin-top: 8px;
}

.pp-faq__a {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #060606;
	font-size: 16px;
	letter-spacing: 1.1px;
	line-height: 1.375;
	margin: 0;
}

.pp-faq__arrow {
	background: #fff;
	border: 1px solid #FF931E;
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform .3s;
	transform: rotate(90deg);
}

.pp-faq__item.is-open .pp-faq__arrow {
	transform: rotate(-90deg);
}

/* ============================================================
   ORDER
   ============================================================ */


.pp-order__row {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: stretch;
}

@media (min-width: 1024px) {
	.pp-order__row {
		flex-direction: row;
	}
}

.pp-order__info,
.pp-order__form-card {
	position: relative;
	flex: 1;
	border-radius: 20px;
	padding: 30px;
	border: 1px solid rgba(56, 82, 180, .24);
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pp-order__form-card {
	background: #3852b4;
}

.pp-order__info-head {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pp-order__info-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 8px;
}

.pp-order__info-item {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 60px;
}

.pp-order__info-icon {
	background: #fff;
	width: 42px;
	height: 42px;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.pp-order__info-text {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pp-order__info-title {
	font-family: 'VAG World', sans-serif;
	font-weight: 700;
	color: #3852b4;
	font-size: 18px;
	line-height: 1;
}

.pp-order__info-desc {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #060606;
	font-size: 16px;
	letter-spacing: 1.1px;
	line-height: 1;
}

.pp-order__info-tg {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #3852b4;
	font-size: 16px;
	letter-spacing: 1.1px;
	line-height: 1;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color .2s;
}

.pp-order__info-tg:hover {
	color: #FF931E;
}

.pp-order__form-head {
	display: flex;
	align-items: center;
	gap: 10px;
}

.pp-order__form-titles {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pp-order__form-title {
	font-family: 'VAG World', sans-serif;
	font-weight: 900;
	color: #fff;
	font-size: 22px;
	line-height: 1;
}

.pp-order__form-subtitle {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #fff;
	font-size: 18px;
	letter-spacing: 1.1px;
	line-height: 1;
}

.pp-order__form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pp-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pp-field__label {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #fff;
	font-size: 16px;
	letter-spacing: 1.1px;
	margin-bottom: 5px;
}

.pp-field__input {
	background: #f7f7f7;
	border: 1px solid rgba(56, 82, 180, .08);
	border-radius: 10px;
	padding: 15px 17px;
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
	color: #060606;
	font-size: 16px;
	width: 100%;
	outline: none;
	transition: border-color .2s;
}

.pp-field__input::placeholder {
	color: rgba(6, 6, 6, .3);
}

.pp-field__input:focus {
	border-color: rgba(56, 82, 180, .4);
}

.pp-order__submit-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pp-order__legal {
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
	color: #fff;
	font-size: 16px;
	line-height: 1.375;
	margin: 0;
}

.pp-order__success {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 32px 0;
	text-align: center;
}

.pp-order__success-icon {
	background: rgba(255, 255, 255, .2);
	width: 64px;
	height: 64px;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pp-order__success-title {
	font-family: 'VAG World', sans-serif;
	font-weight: 900;
	color: #fff;
	font-size: 22px;
	line-height: 1.25;
	margin: 0;
}

.pp-order__success-desc {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: rgba(255, 255, 255, .8);
	font-size: 16px;
	letter-spacing: 1.1px;
	margin: 0;
}

/* ============================================================
   MAP
   ============================================================ */
.pp-map {
	background: #f7f7f7;
	padding: 64px 0;
}

@media (min-width: 1024px) {
	.pp-map {
		padding: 80px 0;
	}
}

.pp-map__tabs {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	flex-wrap: wrap;
	margin-top: 15px;
}

.pp-map__tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 9999px;
	font-family: 'VAG World', sans-serif;
	font-weight: 700;
	font-size: 15px;
	background: rgba(56, 82, 180, .08);
	color: #3852b4;
	transition: background .2s, color .2s;
}

.pp-map__tab:hover {
	background: rgba(56, 82, 180, .15);
}

.pp-map__tab.is-active {
	background: #3852b4;
	color: #fff;
}

.pp-map__dot {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 9999px;
	background: rgba(56, 82, 180, .3);
	flex-shrink: 0;
}

.pp-map__tab.is-active .pp-map__dot {
	background: #FF931E;
}

.pp-map__row {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: stretch;
}

@media (min-width: 1024px) {
	.pp-map__row {
		flex-direction: row;
	}
}

.pp-map__frame {
	flex: 1;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(56, 82, 180, .24);
	min-height: clamp(280px, 35vw, 448px);
}

.pp-map__frame iframe {
	width: 100%;
	height: 100%;
	display: block;
	min-height: inherit;
	border: 0;
}

.pp-map__card {
	flex-shrink: 0;
	background: #fff;
	border-radius: 20px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	border: 1px solid rgba(56, 82, 180, .24);
}

@media (min-width: 1024px) {
	.pp-map__card {
		width: 260px;
	}
}

.pp-map__card-head {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pp-map__card-titles {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.pp-map__card-city {
	font-family: 'VAG World', sans-serif;
	font-weight: 700;
	color: #3852b4;
	font-size: 18px;
	line-height: 1;
}

.pp-map__card-address {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #060606;
	font-size: 15px;
	letter-spacing: 1px;
	line-height: 1.375;
}

.pp-map__row-icon {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #060606;
	font-size: 14px;
	letter-spacing: 1px;
}

.pp-map__row-icon--start {
	align-items: flex-start;
}

.pp-map__row-icon a {
	transition: color .2s;
}

.pp-map__row-icon a:hover {
	color: #3852b4;
}

.pp-map__tg-link {
	color: #3852b4;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.pp-map__tg-link:hover {
	color: #FF931E !important;
}

.pp-map__cta {
	margin-top: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.pp-footer {
	position: relative;
	background: #f7f7f7;
	overflow: hidden;
}

.pp-footer__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom;
	opacity: .5;
	pointer-events: none;
}

.pp-footer__inner {
	position: relative;
	z-index: 10;
	padding-top: 40px;
	padding-bottom: 0;
}

.pp-footer__row {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding-bottom: 40px;
}

@media (min-width: 1024px) {
	.pp-footer__row {
		flex-direction: row;
		justify-content: space-between;
		gap: 0;
	}
}

.pp-footer__col-left {
	display: flex;
	flex-direction: column;
	gap: 40px;
	flex-shrink: 0;
}

@media (min-width: 1024px) {
	.pp-footer__col-left {
		width: 300px;
	}
}

.pp-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pp-footer__taglines {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pp-footer__tagline {
	font-family: 'VAG World', sans-serif;
	font-weight: 900;
	color: #2b2b2b;
	font-size: 22px;
	line-height: 1.375;
	margin: 0;
}

.pp-footer__sub {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #060606;
	font-size: 16px;
	letter-spacing: 1.1px;
	line-height: 1;
	margin: 0;
}

.pp-footer__social {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pp-footer__social-label {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #060606;
	font-size: 14px;
	letter-spacing: 1.1px;
	line-height: 1;
}

.pp-footer__social-icons {
	display: flex;
	gap: 10px;
}

.pp-footer__social-icon {
	width: 36px;
	height: 36px;
	border-radius: 9999px;
	border: 1px solid #3852b4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .2s;
}

.pp-footer__social-icon:hover {
	background: rgba(56, 82, 180, .08);
}

.pp-footer__col-right {
	display: flex;
	flex-direction: column;
	gap: 40px;
	flex-shrink: 0;
}

@media (min-width: 1024px) {
	.pp-footer__col-right {
		width: 692px;
	}
}

.pp-footer__nav-row {
	display: flex;
	gap: 40px;
}

@media (min-width: 640px) {
	.pp-footer__nav-row {
		gap: 0;
		justify-content: space-between;
	}
}

.pp-footer__nav-col {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

@media (min-width: 1024px) {
	.pp-footer__nav-col:first-child {
		width: 183px;
	}
}

@media (min-width: 1024px) {
	.pp-footer__nav-col:last-child {
		width: 285px;
	}
}

.pp-footer__nav-head {
	font-family: 'VAG World', sans-serif;
	font-weight: 900;
	color: #2b2b2b;
	font-size: 18px;
	line-height: 1;
}

.pp-footer__nav-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pp-footer__nav-link {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #3852b4;
	font-size: 15px;
	letter-spacing: 1.1px;
	line-height: 1;
	transition: color .2s;
}

.pp-footer__nav-link:hover {
	color: #FF931E;
}

.pp-footer__contacts {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pp-footer__contacts-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

@media (min-width: 640px) {
	.pp-footer__contacts-list {
		flex-direction: row;
		justify-content: space-between;
		gap: 8px;
	}
}

.pp-footer__contact {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.pp-footer__contact-icon {
	width: 24px;
	height: 24px;
	padding: 4px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.pp-footer__contact-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.pp-footer__contact a {
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
	color: #060606;
	font-size: 16px;
	letter-spacing: 1.1px;
	transition: color .2s;
}

.pp-footer__contact a:hover {
	color: #3852b4;
}

.pp-footer__contact > span:last-child {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #060606;
	font-size: 16px;
	letter-spacing: 1.1px;
}

.pp-footer__bottombar {
	position: relative;
	z-index: 10;
	background: #3852b4;
}

.pp-footer__bottombar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	padding-top: 8px;
	padding-bottom: 8px;
	gap: 10px;
}

@media screen and (min-width: 768px) {
	.pp-footer__bottombar-inner {
		flex-direction: row;
		padding-top: 12px;
		padding-bottom: 12px;
	}
}

@media screen and (min-width: 1280px) {
	.pp-footer__bottombar-inner {
		padding-top: 19px;
		padding-bottom: 19px; }}


.pp-footer__copy {
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #fff;
	font-size: 13px;
	letter-spacing: 1.1px;
	line-height: 1;
}

.pp-footer__author {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #fff;
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 1.1px;
	line-height: 1;
}

#services {
	background-image: url("../images/bubbles.webp");
	background-position:0 20px;
	background-size: contain;
	background-repeat: no-repeat;
}

@media screen and (min-width: 1280px) {
	#services {
		background-position: top center;
		background-size: 87%;
	}
}

#reviews {
	background-image: url("../images/bubbles-2.webp");
	background-position:0 20px;
	background-size: contain;
	background-repeat: no-repeat;
}

@media screen and (min-width: 1280px) {
	#reviews {
		background-position: top center;
		background-size: 87%;
	}
}

.pp-footer__author-logo {
	width: 47px;
}

.wpcf7-submit {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.wpcf7-submit br {
	display: none;
}

.wpcf7-submit span {
	flex: 1;
	text-align: left;
}

.wpcf7-submit svg {
	flex-shrink: 0;
}

.pp-field > p {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.pp-field > p > br {
	display: none;
}


#order .pp-container{
	background-image: url("../images/bubbles-3.webp");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding-top: 60px;
	padding-bottom: 60px;
}

@media screen and (min-width: 1280px) {
#order .pp-container{
	padding-top: 130px;
	padding-bottom: 130px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
}

.pp-comparison .pp-container {
	padding-top: 30px;
	padding-bottom: 30px;
	background-image: url("../images/bubbles-5.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

@media screen and (min-width: 1280px) {
	.pp-comparison .pp-container {
		padding-top: 80px;
		padding-bottom: 80px;
		background-size: contain;
	}
}

.pp-header__phones, .pp-footer__phones {
	display: flex;
	flex-direction: column;
	gap: 5px;
}