/**
 * ParlaVale — VIP Vale (Stitch → BEM .pv-vv-*)
 */

body.pv-vv {
	overflow-x: clip;
	background: #071325;
}

body.pv-vv,
body.pv-vv .pv-vv {
	--pv-vv-bg: #071325;
	--pv-vv-surface-low: #101c2e;
	--pv-vv-surface: #142032;
	--pv-vv-surface-high: #1f2a3d;
	--pv-vv-gold: #e6c364;
	--pv-vv-gold-dim: #c9a84c;
	--pv-vv-gold-border: rgba(201, 168, 76, 0.2);
	--pv-vv-gold-glow: 0 0 40px rgba(201, 168, 76, 0.05);
	--pv-vv-text: #d7e3fc;
	--pv-vv-muted: #d0c5b2;
	--pv-vv-on-gold: #241a00;
	--pv-vv-container: 1200px;
	--pv-vv-gutter: 24px;
	--pv-vv-section-pad: clamp(64px, 10vw, 120px);
	--pv-vv-font-serif: 'Playfair Display', Georgia, serif;
	--pv-vv-font-sans: 'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;
	--pv-vv-font-accent: 'EB Garamond', Georgia, serif;
	--pv-vv-ease: cubic-bezier(0.22, 1, 0.36, 1);
	color: var(--pv-vv-text);
}

body.pv-vv .gelbi-call-fab,
body.pv-vv .gelbi-wa-fab {
	display: none !important;
}

@media (max-width: 1023px) {
	body.pv-vv .pv-hero__contact-bar--desktop {
		display: none !important;
	}
}

.pv-vv-glass-card {
	background: rgba(42, 53, 72, 0.4);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--pv-vv-gold-border);
}

.pv-vv-gold-border {
	border: 1px solid var(--pv-vv-gold-border);
}

.pv-vv__container {
	width: 100%;
	max-width: var(--pv-vv-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--pv-vv-gutter);
	padding-right: var(--pv-vv-gutter);
}

.pv-vv-label {
	display: block;
	font-family: var(--pv-vv-font-sans);
	font-size: 12px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--pv-vv-gold);
}

.pv-vv-title {
	font-family: var(--pv-vv-font-serif);
	font-size: clamp(28px, 4vw, 32px);
	line-height: 1.3;
	font-weight: 700;
	color: var(--pv-vv-gold);
	margin: 0 0 1rem;
}

.pv-vv-accent {
	font-family: var(--pv-vv-font-accent);
	font-style: italic;
	color: var(--pv-vv-gold);
}

.pv-vv-body {
	font-family: var(--pv-vv-font-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--pv-vv-muted);
	margin: 0;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.pv-vv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2.5rem;
	font-family: var(--pv-vv-font-sans);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	transition: opacity 0.3s var(--pv-vv-ease), background 0.3s var(--pv-vv-ease), border-color 0.3s var(--pv-vv-ease);
}

.pv-vv-btn--gold {
	background: linear-gradient(180deg, #f0d078 0%, #e6c364 50%, #c9a84c 100%);
	color: var(--pv-vv-on-gold);
	border: 1px solid rgba(230, 195, 100, 0.85);
	box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
	transition:
		transform 0.35s var(--pv-vv-ease),
		box-shadow 0.35s var(--pv-vv-ease),
		filter 0.35s var(--pv-vv-ease),
		border-color 0.35s var(--pv-vv-ease);
}

.pv-vv-btn--gold:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
	filter: brightness(1.05);
}

.pv-vv-btn--outline {
	background: transparent;
	color: var(--pv-vv-text);
	border: 1px solid rgba(153, 144, 126, 0.6);
}

.pv-vv-btn--outline:hover {
	background: rgba(255, 255, 255, 0.05);
}

.pv-vv-btn--outline-gold {
	background: rgba(7, 19, 37, 0.6);
	color: var(--pv-vv-gold);
	border: 1px solid rgba(230, 195, 100, 0.55);
	gap: 10px;
	transition:
		transform 0.35s var(--pv-vv-ease),
		background 0.35s var(--pv-vv-ease),
		border-color 0.35s var(--pv-vv-ease),
		color 0.35s var(--pv-vv-ease);
}

.pv-vv-btn--outline-gold:hover {
	background: rgba(230, 195, 100, 0.1);
	border-color: var(--pv-vv-gold);
	color: var(--pv-vv-gold);
	transform: translateY(-2px);
}

.pv-vv-btn--pill {
	border-radius: 999px;
}

.pv-vv-btn--sm {
	padding: 0.75rem 2rem;
}

.pv-vv-btn--lg {
	padding: 1.25rem 3rem;
	font-size: 14px;
}

.pv-vv-btn--block {
	width: 100%;
}

.pv-vv-tick {
	color: var(--pv-vv-gold);
	flex-shrink: 0;
}

/* Hero */
.pv-vv-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-align: center;
	padding: clamp(100px, 14vw, 140px) 0 clamp(140px, 16vw, 180px);
}

.pv-vv-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.pv-vv-hero__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.6;
}

.pv-vv-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 19, 37, 0.8) 0%, transparent 45%, rgba(7, 19, 37, 1) 100%);
}

.pv-vv-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 800px;
}

.pv-vv-hero__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.35rem 0.5rem;
	margin-bottom: 2rem;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--pv-vv-muted);
}

.pv-vv-hero__breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.pv-vv-hero__breadcrumb a:hover {
	color: var(--pv-vv-gold);
}

.pv-vv-hero__breadcrumb-current {
	color: var(--pv-vv-gold);
}

.pv-vv-hero__badge {
	margin: 0 0 1.5rem;
}

.pv-vv-hero__badge span {
	display: inline-block;
	border: 1px solid var(--pv-vv-gold);
	padding: 0.25rem 1rem;
	font-size: 20px;
}

.pv-vv-hero__title {
	font-family: var(--pv-vv-font-serif);
	font-size: clamp(40px, 6vw, 64px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	font-weight: 700;
	color: var(--pv-vv-text);
	margin: 0 0 1rem;
}

.pv-vv-hero__tagline {
	font-size: clamp(18px, 2.5vw, 20px);
	margin: 0 0 2rem;
}

.pv-vv-hero__lede {
	max-width: 36rem;
	margin: 0 auto 3rem;
}

.pv-vv-hero__cta {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: center;
	justify-content: center;
}

@media (min-width: 640px) {
	.pv-vv-hero__cta {
		flex-direction: row;
	}
}

/* Hero trust: see premium marquee block below */

/* Intro */
.pv-vv-intro {
	padding: var(--pv-vv-section-pad) 0;
	background: var(--pv-vv-surface-low);
}

.pv-vv-intro__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.pv-vv-intro__grid {
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
	}
}

.pv-vv-intro__features {
	list-style: none;
	margin: 0 0 3rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.pv-vv-intro__feature {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 16px;
	color: var(--pv-vv-text);
}

.pv-vv-intro__media {
	position: relative;
}

.pv-vv-intro__frame {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	padding: 0.5rem;
}

.pv-vv-intro__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pv-vv-intro__secondary {
	display: none;
	position: absolute;
	bottom: -2.5rem;
	left: -2.5rem;
	width: 16rem;
	aspect-ratio: 1;
	padding: 0.5rem;
	background: var(--pv-vv-bg);
}

@media (min-width: 768px) {
	.pv-vv-intro__secondary {
		display: block;
	}
}

/* Intro ribbon: see premium block below */

/* Scope */
.pv-vv-scope {
	padding: var(--pv-vv-section-pad) 0;
	background: var(--pv-vv-bg);
}

.pv-vv-scope__head {
	text-align: center;
	margin-bottom: 4rem;
}

.pv-vv-scope__title {
	color: var(--pv-vv-text);
}

.pv-vv-scope__rule {
	width: 6rem;
	height: 1px;
	background: var(--pv-vv-gold);
	margin: 1rem auto 0;
}

.pv-vv-scope__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.pv-vv-scope__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.pv-vv-scope__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Scope cards: see premium block below */

.pv-vv-scope__card-title {
	font-family: var(--pv-vv-font-serif);
	font-size: 20px;
	font-weight: 700;
	color: var(--pv-vv-text);
	margin: 0 0 1rem;
}

/* Process */
.pv-vv-process {
	padding: var(--pv-vv-section-pad) 0;
	background: var(--pv-vv-surface-low);
	overflow: hidden;
}

.pv-vv-process__title {
	text-align: center;
	font-size: clamp(24px, 3vw, 32px);
	margin: 0 0 4rem;
}

.pv-vv-process__timeline {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

@media (min-width: 768px) {
	.pv-vv-process__timeline {
		flex-direction: row;
		justify-content: space-between;
		gap: 1.5rem;
	}
}

.pv-vv-process__line {
	display: none;
}

@media (min-width: 768px) {
	.pv-vv-process__line {
		display: block;
		position: absolute;
		top: 50%;
		left: 0;
		right: 0;
		height: 1px;
		background: rgba(230, 195, 100, 0.2);
		transform: translateY(-50%);
		z-index: 0;
	}
}

.pv-vv-process__step {
	position: relative;
	z-index: 1;
	flex: 1;
	text-align: center;
	background: var(--pv-vv-surface);
	padding: 2rem;
}

.pv-vv-process__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: var(--pv-vv-gold);
	color: var(--pv-vv-on-gold);
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.pv-vv-process__step-title {
	font-family: var(--pv-vv-font-serif);
	font-size: 18px;
	color: var(--pv-vv-text);
	margin: 0 0 0.5rem;
}

.pv-vv-process__step-desc {
	font-size: 14px;
	color: var(--pv-vv-muted);
	margin: 0;
}

/* Pricing */
.pv-vv-pricing {
	padding: var(--pv-vv-section-pad) 0;
	background: var(--pv-vv-bg);
}

.pv-vv-pricing__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: end;
}

@media (min-width: 768px) {
	.pv-vv-pricing__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.pv-vv-pricing__card {
	position: relative;
	background: var(--pv-vv-surface);
	padding: 2.5rem;
	text-align: center;
}

.pv-vv-pricing__card--featured {
	background: var(--pv-vv-surface-high);
	border-width: 2px;
	border-color: var(--pv-vv-gold);
	box-shadow: var(--pv-vv-gold-glow);
}

@media (min-width: 1024px) {
	.pv-vv-pricing__card--featured {
		transform: scale(1.05);
	}
}

.pv-vv-pricing__badge {
	position: absolute;
	top: -1rem;
	left: 50%;
	transform: translateX(-50%);
	background: var(--pv-vv-gold);
	color: var(--pv-vv-on-gold);
	padding: 0.25rem 1.5rem;
	font-weight: 700;
}

.pv-vv-pricing__price-row {
	margin: 2rem 0;
}

.pv-vv-pricing__price {
	font-family: var(--pv-vv-font-serif);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--pv-vv-text);
}

.pv-vv-pricing__suffix {
	color: var(--pv-vv-muted);
	font-size: 14px;
}

.pv-vv-pricing__plan-desc {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	line-height: 1.8;
	color: var(--pv-vv-muted);
	margin-bottom: 2.5rem;
}

.pv-vv-pricing__features {
	list-style: none;
	margin: 0 0 2.5rem;
	padding: 0;
	text-align: left;
}

.pv-vv-pricing__feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--pv-vv-muted);
	margin-bottom: 1rem;
}

.pv-vv-pricing__card--featured .pv-vv-pricing__feature {
	color: var(--pv-vv-text);
	font-weight: 700;
}

.pv-vv-pricing__check {
	color: var(--pv-vv-gold);
}

/* Reviews */
.pv-vv-reviews {
	padding: var(--pv-vv-section-pad) 0;
	background: var(--pv-vv-surface-low);
}

.pv-vv-reviews__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.pv-vv-reviews__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.pv-vv-reviews__card {
	margin: 0;
	padding: 2.5rem;
}

.pv-vv-reviews__stars {
	display: flex;
	gap: 0.15rem;
	color: var(--pv-vv-gold);
	margin-bottom: 1.5rem;
}

.pv-vv-reviews__quote {
	font-size: 18px;
	line-height: 1.5;
	margin: 0 0 2rem;
}

.pv-vv-reviews__author {
	font-style: normal;
	font-weight: 700;
	color: var(--pv-vv-text);
}

/* FAQ */
.pv-vv-faq {
	padding: var(--pv-vv-section-pad) 0;
	background: var(--pv-vv-bg);
}

.pv-vv-faq__inner {
	max-width: 800px;
}

.pv-vv-faq__title {
	text-align: center;
	color: var(--pv-vv-text);
	margin-bottom: 4rem;
}

/* FAQ items: premium panel styles below */

.pv-vv-faq__question {
	font-family: var(--pv-vv-font-serif);
	font-size: 18px;
	color: var(--pv-vv-text);
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.pv-vv-faq__question::-webkit-details-marker {
	display: none;
}

.pv-vv-faq__question::after {
	content: '▾';
	color: var(--pv-vv-gold);
	flex-shrink: 0;
	transition: transform 0.25s var(--pv-vv-ease);
}

.pv-vv-faq__item[open] .pv-vv-faq__question::after {
	transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
	.pv-vv-faq__question::after {
		transition: none;
	}
}

.pv-vv-faq__question:hover {
	color: var(--pv-vv-gold);
}

.pv-vv-faq__answer {
	margin: 1rem 0 0;
}

/* CTA */
.pv-vv-cta {
	position: relative;
	padding: 5rem 0;
	background: var(--pv-vv-surface);
	overflow: hidden;
}

.pv-vv-cta__glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center, rgba(230, 195, 100, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

.pv-vv-cta__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.pv-vv-cta__inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

.pv-vv-cta__copy {
	text-align: center;
	max-width: 36rem;
}

@media (min-width: 1024px) {
	.pv-vv-cta__copy {
		text-align: left;
	}
}

.pv-vv-cta__copy .pv-vv-title {
	color: var(--pv-vv-text);
}

.pv-vv-cta__actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: stretch;
	width: 100%;
}

@media (min-width: 1024px) {
	.pv-vv-cta__actions {
		align-items: flex-end;
		width: auto;
	}
}

.pv-vv-cta__btn-group {
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
	max-width: 420px;
}

@media (min-width: 640px) {
	.pv-vv-cta__btn-group {
		flex-direction: row;
		flex-wrap: wrap;
		max-width: none;
	}
}

.pv-vv-cta__btn-primary,
.pv-vv-cta__btn-call {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 1rem 2rem;
}

@media (max-width: 639px) {
	.pv-vv-cta__btn-primary,
	.pv-vv-cta__btn-call {
		width: 100%;
	}
}

.pv-vv-cta__btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.pv-vv-cta__btn-icon svg {
	display: block;
}

.pv-vv-cta__phone {
	display: none !important;
}

/* ── Premium motion & micro-interactions ───────────────────────────── */

.pv-vv-animate {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.7s var(--pv-vv-ease),
		transform 0.7s var(--pv-vv-ease),
		border-color 0.35s var(--pv-vv-ease),
		box-shadow 0.35s var(--pv-vv-ease);
}

.pv-vv-animate--visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.pv-vv-animate,
	.pv-vv-animate--visible {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.pv-vv-hero__trust-track {
		animation: none !important;
	}

	.pv-vv-cta__glow {
		animation: none !important;
	}

	.pv-vv-intro__check.pv-vv-tick-pulse {
		animation: none !important;
	}
}

.pv-vv-btn {
	transition:
		opacity 0.3s var(--pv-vv-ease),
		background 0.3s var(--pv-vv-ease),
		border-color 0.3s var(--pv-vv-ease),
		transform 0.3s var(--pv-vv-ease),
		box-shadow 0.3s var(--pv-vv-ease);
}

.pv-vv-btn--gold:hover {
	transform: translateY(-2px);
	box-shadow: var(--pv-vv-gold-glow);
}

.pv-vv-btn--pill {
	border-radius: 999px;
	padding-left: 2.75rem;
	padding-right: 2.75rem;
}

.pv-vv-glass-card {
	position: relative;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pv-vv-glass-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	box-shadow: inset 0 0 0 1px rgba(230, 195, 100, 0.08);
}

/* Hero trust marquee */
.pv-vv-hero__trust-wrap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2.5rem;
	z-index: 2;
	padding-top: 1.5rem;
}

.pv-vv-hero__trust-rule {
	height: 1px;
	margin-bottom: 1.5rem;
	background: linear-gradient(90deg, transparent, rgba(230, 195, 100, 0.45), transparent);
}

.pv-vv-hero__trust {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.pv-vv-hero__trust-track {
	display: flex;
	align-items: center;
	gap: clamp(32px, 6vw, 80px);
	width: max-content;
	animation: pv-vv-trust-marquee 40s linear infinite;
}

.pv-vv-hero__trust:hover .pv-vv-hero__trust-track {
	animation-play-state: paused;
}

@keyframes pv-vv-trust-marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.pv-vv-hero__trust-item {
	font-family: var(--pv-vv-font-serif);
	font-size: clamp(16px, 2vw, 20px);
	font-style: italic;
	letter-spacing: 0.04em;
	color: rgba(215, 227, 252, 0.75);
	opacity: 0.65;
	white-space: nowrap;
	transition:
		color 0.35s var(--pv-vv-ease),
		opacity 0.35s var(--pv-vv-ease),
		text-shadow 0.35s var(--pv-vv-ease);
}

.pv-vv-hero__trust-item:hover,
.pv-vv-hero__trust:focus-within .pv-vv-hero__trust-item:hover {
	color: var(--pv-vv-gold);
	opacity: 1;
	text-shadow: 0 0 24px rgba(230, 195, 100, 0.25);
}

.pv-vv-hero__trust-logo {
	display: block;
	height: 28px;
	width: auto;
	opacity: 0.75;
	filter: grayscale(1);
	transition:
		opacity 0.35s var(--pv-vv-ease),
		filter 0.35s var(--pv-vv-ease);
}

.pv-vv-hero__trust-item--logo:hover .pv-vv-hero__trust-logo,
.pv-vv-hero__trust-item:hover .pv-vv-hero__trust-logo {
	opacity: 1;
	filter: grayscale(0) brightness(1.05) sepia(0.15);
}

/* Intro ribbon & collage */
.pv-vv-intro__media {
	overflow: visible;
}

.pv-vv-intro__frame {
	box-shadow:
		0 32px 64px rgba(0, 0, 0, 0.45),
		inset 0 0 0 1px rgba(230, 195, 100, 0.15);
	transition: transform 0.7s var(--pv-vv-ease);
}

.pv-vv-intro__frame:hover {
	transform: scale(1.02);
}

.pv-vv-intro__frame .pv-vv-intro__img {
	transition: transform 0.7s var(--pv-vv-ease);
}

.pv-vv-intro__frame:hover .pv-vv-intro__img {
	transform: scale(1.03);
}

.pv-vv-intro__ribbon-wrap {
	position: absolute;
	top: 10%;
	right: 0;
	z-index: 3;
	max-height: 70%;
	pointer-events: none;
}

.pv-vv-intro__ribbon {
	display: inline-block;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	padding: 1rem 0.65rem;
	font-family: var(--pv-vv-font-sans);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--pv-vv-on-gold);
	background: linear-gradient(180deg, #f0d078 0%, #e6c364 55%, #c9a84c 100%);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
	white-space: nowrap;
}

@media (max-width: 767px) {
	.pv-vv-intro__ribbon-wrap {
		display: none;
	}
}

.pv-vv-intro__check.pv-vv-tick-pulse {
	animation: pv-vv-tick-pulse 1.2s var(--pv-vv-ease) 1;
}

@keyframes pv-vv-tick-pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.06);
	}
}

.pv-vv-animate--visible .pv-vv-intro__check {
	animation: pv-vv-tick-pulse 1.2s var(--pv-vv-ease) 0.35s 1;
}

/* Scope cards */
.pv-vv-scope__grid {
	gap: 32px;
}

.pv-vv-scope__card {
	position: relative;
	padding: 2.5rem;
	background: rgba(20, 32, 50, 0.72);
	transition:
		transform 0.4s var(--pv-vv-ease),
		border-color 0.4s var(--pv-vv-ease),
		box-shadow 0.4s var(--pv-vv-ease),
		background 0.4s var(--pv-vv-ease);
}

.pv-vv-scope__card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 1.5rem;
	right: 1.5rem;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(230, 195, 100, 0.35), transparent);
	opacity: 0.6;
}

.pv-vv-scope__card:hover {
	transform: translateY(-6px);
	border-color: rgba(230, 195, 100, 0.5);
	box-shadow: var(--pv-vv-gold-glow);
	background: var(--pv-vv-surface-high);
}

.pv-vv-scope__icon-ring {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 1.5rem;
	border-radius: 50%;
	border: 1px solid rgba(230, 195, 100, 0.35);
	transition: box-shadow 0.35s var(--pv-vv-ease);
}

.pv-vv-scope__card:hover .pv-vv-scope__icon-ring {
	box-shadow: 0 0 24px rgba(230, 195, 100, 0.2);
}

.pv-vv-scope__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 1.5rem;
	line-height: 1;
	color: var(--pv-vv-gold);
}

.pv-vv-scope__icon .pv-icon-gold,
.pv-vv-scope__icon .pv-vv-icon-el,
.pv-vv-scope__icon .pv-el-icon,
.pv-vv-scope__icon .elementor-icon,
.pv-vv-scope__icon i {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 1.25em;
	height: 1.25em;
	font-size: 1.5rem;
	line-height: 1;
	color: var(--pv-vv-gold) !important;
	fill: currentColor;
}

.pv-vv-scope__icon .pv-icon-gold svg,
.pv-vv-scope__icon .elementor-icon svg {
	width: 1.25em;
	height: 1.25em;
}

.pv-vv-scope__card-line {
	display: block;
	width: 0;
	height: 1px;
	margin: 0.75rem 0 1rem;
	background: var(--pv-vv-gold);
	transition: width 0.5s var(--pv-vv-ease);
}

.pv-vv-scope__card:hover .pv-vv-scope__card-line,
.pv-vv-animate--visible .pv-vv-scope__card-line {
	width: 40px;
}

/* Process timeline */
.pv-vv-process__timeline.pv-vv-animate--visible .pv-vv-process__line-draw {
	transform: scaleX(1);
}

.pv-vv-process__line {
	overflow: hidden;
	background: transparent;
}

.pv-vv-process__line-draw {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, var(--pv-vv-gold), transparent);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 1s var(--pv-vv-ease) 0.2s;
}

.pv-vv-process__step {
	background: rgba(20, 32, 50, 0.65);
	transition:
		transform 0.4s var(--pv-vv-ease),
		border-color 0.4s var(--pv-vv-ease),
		box-shadow 0.4s var(--pv-vv-ease);
}

.pv-vv-process__step:hover {
	transform: translateY(-4px);
	box-shadow: var(--pv-vv-gold-glow);
}

.pv-vv-process__num {
	box-shadow: 0 0 0 4px rgba(230, 195, 100, 0.15);
	transition: box-shadow 0.35s var(--pv-vv-ease);
}

.pv-vv-process__step:hover .pv-vv-process__num {
	box-shadow: 0 0 0 6px rgba(230, 195, 100, 0.22);
}

@media (max-width: 767px) {
	.pv-vv-process__timeline {
		padding-left: 2.5rem;
	}

	.pv-vv-process__line {
		display: block;
		left: 1.25rem;
		right: auto;
		width: 1px;
		height: calc(100% - 2rem);
		top: 1rem;
		transform: none;
	}

	.pv-vv-process__line-draw {
		transform: scaleY(0);
		transform-origin: top center;
		background: linear-gradient(180deg, var(--pv-vv-gold), transparent);
	}

	.pv-vv-process__timeline.pv-vv-animate--visible .pv-vv-process__line-draw {
		transform: scaleY(1);
	}

	.pv-vv-process__step {
		text-align: left;
	}
}

/* Pricing */
.pv-vv-pricing__card {
	transition:
		transform 0.4s var(--pv-vv-ease),
		border-color 0.4s var(--pv-vv-ease),
		box-shadow 0.4s var(--pv-vv-ease);
}

.pv-vv-pricing__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--pv-vv-gold-glow);
}

.pv-vv-pricing__card--featured:hover {
	transform: scale(1.05) translateY(-4px);
}

/* Reviews */
.pv-vv-reviews__card {
	position: relative;
	overflow: hidden;
	transition:
		transform 0.4s var(--pv-vv-ease),
		border-color 0.4s var(--pv-vv-ease),
		box-shadow 0.4s var(--pv-vv-ease);
}

.pv-vv-reviews__card::before {
	content: '\201C';
	position: absolute;
	top: 0.5rem;
	right: 1rem;
	font-family: var(--pv-vv-font-serif);
	font-size: 4rem;
	line-height: 1;
	color: rgba(230, 195, 100, 0.12);
	pointer-events: none;
}

.pv-vv-reviews__card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: linear-gradient(180deg, var(--pv-vv-gold), transparent);
	opacity: 0.85;
}

.pv-vv-reviews__card--alt.pv-vv-animate {
	transform: translateX(16px);
}

.pv-vv-reviews__card--alt.pv-vv-animate--visible {
	transform: none;
}

.pv-vv-reviews__card:hover {
	transform: translateY(-4px);
	border-color: rgba(230, 195, 100, 0.45);
	box-shadow: var(--pv-vv-gold-glow);
}

.pv-vv-reviews__star {
	opacity: 0;
	transition: opacity 0.35s var(--pv-vv-ease);
}

.pv-vv-animate--visible .pv-vv-reviews__star {
	opacity: 1;
}

.pv-vv-animate--visible .pv-vv-reviews__star:nth-child(1) {
	transition-delay: 0.05s;
}
.pv-vv-animate--visible .pv-vv-reviews__star:nth-child(2) {
	transition-delay: 0.1s;
}
.pv-vv-animate--visible .pv-vv-reviews__star:nth-child(3) {
	transition-delay: 0.15s;
}
.pv-vv-animate--visible .pv-vv-reviews__star:nth-child(4) {
	transition-delay: 0.2s;
}
.pv-vv-animate--visible .pv-vv-reviews__star:nth-child(5) {
	transition-delay: 0.25s;
}

/* FAQ premium */
.pv-vv-faq__panel {
	margin-bottom: 12px;
	border: 1px solid rgba(201, 168, 76, 0.15);
	border-radius: 12px;
	background: rgba(20, 32, 50, 0.45);
	overflow: hidden;
	transition:
		border-color 0.35s var(--pv-vv-ease),
		background 0.35s var(--pv-vv-ease);
}

.pv-vv-faq__panel[open] {
	border-color: rgba(230, 195, 100, 0.35);
	background: rgba(230, 195, 100, 0.06);
}

.pv-vv-faq__panel .pv-vv-faq__question {
	padding: 1.25rem 1.5rem;
	border-bottom: none;
}

.pv-vv-faq__answer-wrap {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s var(--pv-vv-ease);
}

.pv-vv-faq__panel[open] .pv-vv-faq__answer-wrap {
	grid-template-rows: 1fr;
}

.pv-vv-faq__answer-wrap > .pv-vv-faq__answer {
	overflow: hidden;
	padding: 0 1.5rem;
	opacity: 0;
	transition: opacity 0.35s var(--pv-vv-ease), padding 0.35s var(--pv-vv-ease);
}

.pv-vv-faq__panel[open] .pv-vv-faq__answer {
	padding-bottom: 1.25rem;
	opacity: 1;
}

.pv-vv-faq__item {
	border-bottom: none;
	padding: 0;
}

/* CTA */
.pv-vv-cta__glow {
	animation: pv-vv-cta-glow 4s ease-in-out infinite;
}

@keyframes pv-vv-cta-glow {
	0%,
	100% {
		opacity: 0.08;
	}
	50% {
		opacity: 0.14;
	}
}

body.pv-vv .pv-vv-cta__phone,
body.pv-vv .pv-vv-cta__phone .pv-vv-cta__phone-num {
	display: none !important;
}

/* Float bar — VIP premium (no visible phone number) */
body.pv-vv .pv-hero__contact-bar--vv-premium {
	gap: 12px;
	opacity: 0;
	transform: translateX(20px);
	transition:
		opacity 0.6s var(--pv-vv-ease),
		transform 0.6s var(--pv-vv-ease);
}

body.pv-vv .pv-hero__contact-bar--vv-premium.pv-hero__contact-bar--vv-entered {
	opacity: 1;
	transform: translateX(0);
}

body.pv-vv .pv-hero__contact-bar--vv-premium .pv-contact-card {
	background: rgba(42, 53, 72, 0.55);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(201, 168, 76, 0.25);
	border-radius: 12px;
	transition:
		transform 0.35s var(--pv-vv-ease),
		border-color 0.35s var(--pv-vv-ease),
		box-shadow 0.35s var(--pv-vv-ease);
}

body.pv-vv .pv-hero__contact-bar--vv-premium .pv-contact-card:hover {
	transform: translateX(-4px);
	border-color: rgba(230, 195, 100, 0.5);
	box-shadow: var(--pv-vv-gold-glow);
}

body.pv-vv .pv-hero__contact-bar--vv-premium .pv-contact-card--call {
	background: linear-gradient(145deg, #f0d078, #e6c364);
	border-color: rgba(230, 195, 100, 0.6);
	color: var(--pv-vv-on-gold);
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1rem 0.85rem;
	min-width: 5.5rem;
}

body.pv-vv .pv-hero__contact-bar--vv-premium .pv-contact-card--call .pv-icon-gold,
body.pv-vv .pv-hero__contact-bar--vv-premium .pv-contact-card--call svg {
	color: var(--pv-vv-on-gold);
}

body.pv-vv .pv-hero__contact-bar--vv-premium .pv-contact-card__stack {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.15rem;
}

body.pv-vv .pv-hero__contact-bar--vv-premium .pv-contact-card__label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--pv-vv-on-gold);
}

body.pv-vv .pv-hero__contact-bar--vv-premium .pv-contact-card__hint {
	font-size: 9px;
	letter-spacing: 0.06em;
	opacity: 0.85;
	color: var(--pv-vv-on-gold);
}

body.pv-vv .pv-hero__contact-bar--vv-premium .pv-contact-card__sub,
body.pv-vv .pv-hero__contact-bar--vv-premium .pv-contact-card__text .pv-contact-card__sub {
	display: none !important;
}

body.pv-vv .pv-hero__contact-bar--vv-premium .pv-contact-card--wa span,
body.pv-vv .pv-hero__contact-bar--vv-premium .pv-contact-card--gold span {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.06em;
}
