/**
 * Presets Vibe Manager - All Styles
 * 
 * This file contains all CSS styles consolidated from templates.
 * Last Updated: 2025-11-09
 * 
 * @package Presets_Vibe_Manager
 */

/* ============================================
   CSS Variables & Root
   ============================================ */
:root {
	--pvm-primary: #4f46e5;
	--pvm-primary-dark: #3730a3;
	--pvm-secondary: #9333ea;
	--pvm-card-bg: #ffffff;
	--pvm-card-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
	--pvm-card-shadow-hover: 0 20px 40px rgba(15, 23, 42, 0.15);
	--pvm-radius: 18px;
	--pvm-text-muted: #6b7280;
	--pvm-star-color: #fbbf24;
	--pvm-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--pvm-transition-fast: all 0.2s ease;
	--pvm-spacing-xs: 8px;
	--pvm-spacing-sm: 12px;
	--pvm-spacing-md: 24px;
	--pvm-spacing-lg: 32px;
	--pvm-spacing-xl: 48px;
}

/* Base Typography Improvements */
body {
	font-size: 1.125rem;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Global Components - Header & Footer
   ============================================ */

/* Header Styles */
.pvm-site-header {
	background: #ffffff;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.12);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 24px 0;
	backdrop-filter: blur(10px);
	transition: var(--pvm-transition-fast);
}
.pvm-site-header:hover {
	box-shadow: 0 6px 24px rgba(15, 23, 42, 0.15);
}
.pvm-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}
.pvm-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}
.pvm-logo a {
	text-decoration: none;
}
.pvm-logo h2 {
	font-size: 3.1rem;
	font-weight: 800;
	margin: 0;
	background: linear-gradient(135deg, #6a11cb, #2575fc);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.pvm-logo span {
	color: #2575fc;
}
.pvm-main-nav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 28px;
}
.pvm-main-nav a {
	color: #334155;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.7rem;
	transition: color 0.2s ease;
	position: relative;
}
.pvm-main-nav a:hover,
.pvm-main-nav a.active {
	color: #6a11cb;
}
.pvm-main-nav a::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 0;
	height: 2px;
	background: #6a11cb;
	transition: width 0.3s ease;
}
.pvm-main-nav a:hover::after,
.pvm-main-nav a.active::after {
	width: 100%;
}
.pvm-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.pvm-menu-toggle span {
	display: block;
	width: 26px;
	height: 3px;
	background: #334155;
	border-radius: 2px;
	transition: all 0.3s ease;
}
.pvm-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}
.pvm-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}
.pvm-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Footer Styles */
.pvm-site-footer {
	background: #1e293b;
	color: #e2e8f0;
	padding: 70px 0 30px;
	margin-top: 80px;
}
.pvm-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 40px;
	margin-bottom: 48px;
}
.pvm-footer-section h3,
.pvm-footer-section h4 {
	color: #f8fafc;
	margin-bottom: 20px;
	font-weight: 700;
	position: relative;
	padding-bottom: 12px;
}
.pvm-footer-section h3 {
	font-size: 2.7rem;
	background: linear-gradient(135deg, #6a11cb, #2575fc);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.pvm-footer-section h3 span {
	color: #2575fc;
}
.pvm-footer-section h3::after,
.pvm-footer-section h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background: linear-gradient(90deg, #6a11cb, #2575fc);
}
.pvm-footer-section p {
	color: #cbd5e1;
	line-height: 1.7;
	margin-bottom: 20px;
}
.pvm-footer-section ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.pvm-footer-section li {
	margin-bottom: 12px;
	font-size: 2rem;
}
.pvm-footer-section a {
	color: #cbd5e1;
	text-decoration: none;
	transition: all 0.2s ease;
	display: inline-block;
}
.pvm-footer-section a:hover {
	color: #f8fafc;
	padding-left: 6px;
}
.pvm-social-links {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}
.pvm-social-links a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.0rem;
	transition: all 0.3s ease;
	padding: 0;
}
.pvm-social-links a:hover {
	background: linear-gradient(135deg, #6a11cb, #2575fc);
	transform: translateY(-4px);
	padding-left: 0;
}
.pvm-footer-bottom {
	text-align: center;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #94a3b8;
	font-size: 1.6rem;
}

/* ============================================
   Card Components
   ============================================ */
.pvm-card {
	background: var(--pvm-card-bg);
	border-radius: var(--pvm-radius);
	box-shadow: var(--pvm-card-shadow);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: var(--pvm-transition);
	border: 1px solid rgba(15, 23, 42, 0.05);
}
.pvm-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: var(--pvm-card-shadow-hover);
	border-color: rgba(106, 17, 203, 0.2);
}
.pvm-card__media {
	position: relative;
	overflow: hidden;
	height: 240px;
}
.pvm-compare-wrapper {
	position: relative;
	height: 100%;
}
.pvm-image-before,
.pvm-image-after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pvm-image-after {
	clip-path: inset(0 0 0 50%);
}
.pvm-slider-handle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #ffffff;
	border-radius: 50%;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
	cursor: ew-resize;
	z-index: 3;
	transition: transform 0.2s ease;
}
.pvm-slider-handle svg {
	width: 22px;
	height: 22px;
	fill: #475569;
}
.pvm-card:hover .pvm-slider-handle {
	transform: translate(-50%, -50%) scale(1.05);
}
.pvm-card__body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.pvm-card__title {
	font-size: 2.2rem;
	font-weight: 700;
	color: #111827;
	margin: 0;
}
.pvm-card__excerpt {
	color: var(--pvm-text-muted);
	line-height: 1.6;
	margin: 0;
}
.pvm-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
}
.pvm-rating {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--pvm-text-muted);
	font-weight: 600;
}
.pvm-rating__stars {
	display: inline-flex;
	gap: 2px;
	color: var(--pvm-star-color);
	font-size: 1.8rem;
}
.pvm-download-count {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--pvm-text-muted);
	font-weight: 600;
}
.pvm-card__actions {
	display: flex;
	gap: 12px;
	margin-top: 16px;
}
.pvm-button {
	flex: 1;
	border-radius: 999px;
	padding: 12px 18px;
	font-weight: 600;
	font-size: 1.7rem;
	text-align: center;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.pvm-button--ghost {
	background: transparent;
	color: var(--pvm-secondary);
	border: 2px solid var(--pvm-secondary);
}
.pvm-button--ghost:hover {
	background: rgba(147, 51, 234, 0.1);
	transform: translateY(-2px);
}
.pvm-button--primary {
	background: linear-gradient(135deg, var(--pvm-secondary), var(--pvm-primary));
	color: #ffffff;
	border: none;
}
.pvm-button--primary:hover {
	filter: brightness(0.95);
	transform: translateY(-2px);
	color: #ffffff;
}
.pvm-card__footer {
	margin-top: auto;
}
.pvm-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
}

/* ============================================
   Home Page Styles
   ============================================ */
/* Hero Section */
.pvm-hero {
	background: linear-gradient(135deg, rgba(106, 17, 203, 0.95), rgba(37, 117, 252, 0.95)),
	            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect fill="url(%23grid)" width="1200" height="600"/></svg>');
	background-size: cover;
	background-position: center;
	color: #ffffff;
	padding: 140px 0 120px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.pvm-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
	border-radius: 50%;
}
.pvm-hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
}
.pvm-hero h1 {
	font-size: clamp(4.5rem, 9.0vw, 7.2rem);
	font-weight: 900;
	margin-bottom: 24px;
	line-height: 1.1;
	text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.pvm-hero p {
	font-size: clamp(2.0rem, 3.6vw, 2.4rem);
	margin-bottom: 36px;
	opacity: 0.95;
	line-height: 1.6;
}
.pvm-hero-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
.pvm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 32px;
	border-radius: 14px;
	font-weight: 700;
	font-size: 1.9rem;
	text-decoration: none;
	transition: all 0.3s ease;
	min-width: 200px;
}
.pvm-btn-primary {
	background: #ffffff;
	color: #6a11cb;
	box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}
.pvm-btn-primary:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(0,0,0,0.2);
}
.pvm-btn-outline {
	background: transparent;
	color: #ffffff;
	border: 2px solid rgba(255,255,255,0.5);
}
.pvm-btn-outline:hover {
	background: rgba(255,255,255,0.15);
	border-color: #ffffff;
	transform: translateY(-4px);
}
.pvm-btn-secondary {
	background: transparent;
	color: #6a11cb;
	border: 2px solid #6a11cb;
}
.pvm-btn-secondary:hover {
	background: #6a11cb;
	color: #ffffff;
}

/* Preview Gallery */
.pvm-preview-section {
	padding: 80px 0;
	background: #f8fafc;
}
.pvm-section-header {
	text-align: center;
	margin-bottom: 56px;
}
.pvm-section-header h2 {
	font-size: clamp(3.6rem, 7.2vw, 5.0rem);
	font-weight: 800;
	margin-bottom: 16px;
	color: #1e293b;
}
.pvm-section-header p {
	font-size: 2.1rem;
	color: #64748b;
	max-width: 700px;
	margin: 0 auto;
}
.pvm-gallery-slider {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}
.pvm-slider-container {
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
	position: relative;
	height: 500px;
}
.pvm-slide {
	display: none;
	height: 100%;
}
.pvm-slide.active {
	display: block;
}
.pvm-before-after {
	position: relative;
	height: 100%;
}
.pvm-before-after img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pvm-slider-nav {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 28px;
}
.pvm-slider-nav button {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #6a11cb;
	color: #ffffff;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.2rem;
}
.pvm-slider-nav button:hover {
	background: #2575fc;
	transform: scale(1.1);
}

/* Niches Section */
.pvm-niches-section {
	padding: 80px 0;
	background: #ffffff;
}
.pvm-niches-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
}
.pvm-niche-card {
	background: #ffffff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
	transition: var(--pvm-transition);
	text-align: center;
	border: 1px solid rgba(15, 23, 42, 0.05);
}
.pvm-niche-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 24px 56px rgba(15, 23, 42, 0.18);
	border-color: rgba(106, 17, 203, 0.2);
}
.pvm-niche-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}
.pvm-niche-card-content {
	padding: 24px;
}
.pvm-niche-card h3 {
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: #1e293b;
}
.pvm-niche-card p {
	color: #64748b;
	margin-bottom: 20px;
	line-height: 1.6;
}
.pvm-niche-card .pvm-btn {
	width: 100%;
	background: transparent;
	color: #6a11cb;
	border: 2px solid #6a11cb;
	padding: 12px 24px;
	min-width: auto;
}
.pvm-niche-card .pvm-btn:hover {
	background: #6a11cb;
	color: #ffffff;
}

/* Stats Section */
.pvm-stats-section {
	background: linear-gradient(135deg, #6a11cb, #2575fc);
	color: #ffffff;
	padding: 70px 0;
}
.pvm-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 32px;
	text-align: center;
}
.pvm-stat-item h3 {
	font-size: 5.4rem;
	font-weight: 900;
	margin-bottom: 8px;
}
.pvm-stat-item p {
	font-size: 2.1rem;
	opacity: 0.9;
}

/* Testimonials */
.pvm-testimonials-section {
	padding: 80px 0;
	background: #f8fafc;
}
.pvm-testimonial-slider {
	max-width: 900px;
	margin: 0 auto;
}
.pvm-testimonial {
	display: none;
	background: #ffffff;
	border-radius: 24px;
	padding: 48px;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
	text-align: center;
}
.pvm-testimonial.active {
	display: block;
}
.pvm-testimonial p {
	font-size: 2.2rem;
	font-style: italic;
	color: #475569;
	margin-bottom: 24px;
	line-height: 1.8;
}
.pvm-testimonial h4 {
	color: #6a11cb;
	font-size: 2.0rem;
	font-weight: 700;
}

/* CTA Section */
.pvm-cta-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #1e293b, #0f172a);
	color: #ffffff;
	text-align: center;
}
.pvm-cta-section h2 {
	font-size: clamp(4.0rem, 7.2vw, 5.4rem);
	font-weight: 900;
	margin-bottom: 20px;
}
.pvm-cta-section p {
	font-size: 2.2rem;
	margin-bottom: 36px;
	opacity: 0.9;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* ============================================
   Single Preset Page Styles
   ============================================ */
/* Reset & Base */
.preset-landing-page {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
	color: #0f172a;
	background: #ffffff;
	line-height: 1.6;
}
.preset-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Floating Download Bar */
.preset-floating-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.35);
	padding: 18px 24px;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 9999;
	backdrop-filter: blur(12px);
}
.preset-floating-bar.visible {
	transform: translateY(0);
}
.preset-floating-content {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.preset-floating-info h3 {
	color: #f8fafc;
	font-size: 2.1rem;
	font-weight: 700;
	margin: 0 0 4px;
}
.preset-floating-info p {
	color: #cbd5e1;
	font-size: 1.6rem;
	margin: 0;
}
.preset-floating-actions {
	display: flex;
	gap: 12px;
	align-items: center;
}
.preset-floating-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1.8rem;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
}
.preset-floating-btn-primary {
	background: linear-gradient(135deg, #f97316, #ef4444);
	color: #fff;
	box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}
.preset-floating-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(249, 115, 22, 0.5);
}

/* Hero Compare Section */
.preset-hero-compare {
	padding: 14px 0 4px;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.preset-compare-showcase {
	position: relative;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 32px 80px rgba(15, 23, 42, 0.25);
	height: clamp(400px, 60vh, 700px);
	max-width: 1200px;
	margin: 0 auto;
}
.preset-compare-showcase::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 32px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
	pointer-events: none;
}
.preset-image-before,
.preset-image-after {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.preset-image-after {
	clip-path: inset(0 0 0 50%);
	transition: clip-path 0.15s ease;
}
.preset-slider-handle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #ffffff;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.4);
	cursor: ew-resize;
	z-index: 10;
	transition: transform 0.2s ease;
}
.preset-slider-handle:hover {
	transform: translate(-50%, -50%) scale(1.08);
}
.preset-slider-handle svg {
	width: 32px;
	height: 32px;
	fill: #334155;
}
.preset-compare-label {
	position: absolute;
	top: 28px;
	background: rgba(15, 23, 42, 0.75);
	color: #f8fafc;
	padding: 10px 18px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1.7rem;
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	gap: 8px;
}
.preset-compare-label.left {
	left: 28px;
}
.preset-compare-label.right {
	right: 28px;
}

/* Info Section */
.preset-info-section {
	padding: 20px 0;
}
.preset-info-wrapper {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}
.preset-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 24px;
}
.preset-badge {
	background: rgba(124, 58, 237, 0.12);
	color: #7c3aed;
	padding: 8px 18px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 1.6rem;
}
.preset-title {
	font-size: clamp(3.5rem, 9.0vw, 2.2rem);
	font-weight: 900;
	margin-bottom: 28px;
	line-height: 1.1;
	background: linear-gradient(135deg, #1e293b, #4338ca);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.preset-meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	align-items: center;
	margin-bottom: 32px;
}
.preset-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: #f1f5f9;
	border-radius: 999px;
	font-weight: 600;
	color: #334155;
}
.preset-rating-stars {
	color: #fbbf24;
	display: inline-flex;
	gap: 2px;
	font-size: 2.0rem;
}
.preset-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-top: 36px;
}
.preset-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 32px;
	border-radius: 14px;
	font-weight: 700;
	font-size: 2.0rem;
	text-decoration: none;
	min-width: 220px;
	transition: all 0.3s ease;
}
.preset-btn-primary {
	background: linear-gradient(135deg, #f97316, #ef4444);
	color: #fff;
	box-shadow: 0 16px 32px rgba(249, 115, 22, 0.35);
}
.preset-btn-primary:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(249, 115, 22, 0.45);
}
.preset-btn-outline {
	background: #fff;
	color: #4338ca;
	border: 2px solid #4338ca;
}
.preset-btn-outline:hover {
	background: #4338ca;
	color: #fff;
	transform: translateY(-4px);
}

/* Description Section */
.preset-description-section {
	padding: 25px 0;
	background: #f8fafc;
}
.preset-description-wrapper {
	max-width: 1100px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 32px;
	padding: 72px;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
	border: 1px solid rgba(15, 23, 42, 0.05);
	transition: var(--pvm-transition);
}
.preset-description-wrapper:hover {
	box-shadow: 0 32px 80px rgba(15, 23, 42, 0.12);
	transform: translateY(-4px);
}
.preset-description-wrapper h2 {
	font-size: 4.5rem;
	font-weight: 800;
	margin-bottom: 24px;
	color: #1e293b;
}
.preset-description-wrapper h3 {
	font-size: 3.2rem;
	font-weight: 700;
	margin-top: 48px;
	margin-bottom: 20px;
	color: #334155;
}
.preset-description-wrapper p {
	font-size: 2.0rem;
	line-height: 1.9;
	color: #475569;
	margin-bottom: 24px;
}
.preset-description-wrapper img {
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	margin: 32px 0;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}
.preset-description-wrapper ul,
.preset-description-wrapper ol {
	margin: 24px 0 24px 32px;
	font-size: 1.9rem;
	color: #475569;
}
.preset-description-wrapper li {
	margin-bottom: 12px;
	line-height: 1.8;
}
.preset-description-wrapper blockquote {
	border-left: 4px solid #4338ca;
	padding: 20px 28px;
	background: #f1f5f9;
	border-radius: 12px;
	margin: 32px 0;
	font-style: italic;
	color: #334155;
}

/* Installation Section */
.preset-install-section {
	padding: 80px 0;
	background: #ffffff;
}
.preset-install-header {
	text-align: center;
	margin-bottom: 48px;
}
.preset-install-header h2 {
	font-size: 5.0rem;
	font-weight: 800;
	margin-bottom: 16px;
}
.preset-install-header p {
	font-size: 2.1rem;
	color: #64748b;
}
.preset-video-wrapper {
	max-width: 900px;
	margin: 0 auto 60px;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
}
.preset-video-wrapper iframe {
	width: 100%;
	height: 500px;
	border: none;
	display: block;
}
.preset-steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
	max-width: 1100px;
	margin: 0 auto;
}
.preset-step-card {
	background: #f8fafc;
	border-radius: 20px;
	padding: 32px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.preset-step-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}
.preset-step-icon {
	width: 72px;
	height: 72px;
	background: linear-gradient(135deg, #4338ca, #7c3aed);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 3.6rem;
	color: #fff;
	font-weight: 800;
}
.preset-step-card h3 {
	font-size: 2.3rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: #1e293b;
}
.preset-step-card p {
	color: #64748b;
	line-height: 1.7;
	font-size: 2rem;
}

/* Related Section */
.preset-related-section {
	padding: 80px 0;
	background: #f8fafc;
}
.preset-related-header {
	text-align: center;
	margin-bottom: 48px;
}
.preset-related-header h2 {
	font-size: 5.0rem;
	font-weight: 800;
	margin-bottom: 12px;
}
.preset-related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
	max-width: 1200px;
	margin: 0 auto;
}
.preset-related-card {
	background: #ffffff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.preset-related-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 56px rgba(15, 23, 42, 0.15);
}
.preset-related-compare {
	position: relative;
	height: 240px;
	overflow: hidden;
}
.preset-related-compare img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.preset-related-compare .preset-image-after {
	clip-path: inset(0 0 0 50%);
}
.preset-related-compare .preset-slider-handle {
	width: 48px;
	height: 48px;
}
.preset-related-compare .preset-slider-handle svg {
	width: 20px;
	height: 20px;
}
.preset-related-body {
	padding: 24px;
}
.preset-related-body h3 {
	font-size: 2.3rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: #1e293b;
}
.preset-related-body p {
	color: #64748b;
	margin-bottom: 16px;
	line-height: 1.6;
}
.preset-related-link {
	color: #4338ca;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 2rem;
}
.preset-related-link:hover {
	gap: 10px;
}

/* ============================================
   Archive & Taxonomy Styles
   ============================================ */
.pvm-archive__header {
	text-align: center;
	margin-bottom: 40px;
}
.pvm-archive__header h1 {
	font-size: 4.0rem;
	margin-bottom: 12px;
}
.pvm-single {
	max-width: 960px;
	margin: 0 auto;
	padding: 48px 20px;
}
.pvm-single__title {
	font-size: 4.5rem;
	margin-bottom: 12px;
	text-align: center;
}
.pvm-single__categories {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	font-weight: 600;
	color: var(--pvm-secondary);
}
.pvm-single__card {
	margin: 32px 0;
}
.pvm-single__content {
	color: var(--pvm-text-muted);
	line-height: 1.8;
	font-size: 1.9rem;
}

/* Archive Preset */
.pvm-archive-header {
	background: linear-gradient(135deg, rgba(106, 17, 203, 0.9), rgba(37, 117, 252, 0.9));
	color: #ffffff;
	padding: 80px 0;
	text-align: center;
}
.pvm-archive-header h1 {
	font-size: clamp(4.5rem, 7.2vw, 6.3rem);
	font-weight: 900;
	margin-bottom: 16px;
}
.pvm-archive-header p {
	font-size: 2.2rem;
	opacity: 0.95;
	max-width: 700px;
	margin: 0 auto;
}
.pvm-filter-section {
	padding: 40px 0;
	background: #f8fafc;
	border-bottom: 1px solid #e2e8f0;
	position: sticky;
	top: 70px;
	z-index: 100;
}
.pvm-filter-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}
.pvm-filter-group {
	display: flex;
	align-items: center;
	gap: 12px;
}
.pvm-filter-group label {
	font-weight: 600;
	color: #334155;
	white-space: nowrap;
}
.pvm-filter-group select {
	padding: 10px 16px;
	border-radius: 10px;
	border: 2px solid #e2e8f0;
	background: #ffffff;
	font-size: 1.8rem;
	font-weight: 500;
	min-width: 180px;
	cursor: pointer;
	transition: all 0.2s ease;
}
.pvm-filter-group select:focus {
	outline: none;
	border-color: #6a11cb;
}
.pvm-results-count {
	color: #64748b;
	font-weight: 600;
}
.pvm-presets-section {
	padding: 60px 0 80px;
	background: #ffffff;
}
.pvm-presets-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 32px;
}
.pvm-preset-card {
	background: #ffffff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
	transition: var(--pvm-transition);
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(15, 23, 42, 0.05);
}
.pvm-preset-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 24px 56px rgba(15, 23, 42, 0.18);
	border-color: rgba(106, 17, 203, 0.2);
}
.pvm-preset-compare {
	position: relative;
	height: 240px;
	overflow: hidden;
	cursor: pointer;
}
.pvm-preset-compare img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pvm-preset-compare .pvm-after-img {
	clip-path: inset(0 0 0 50%);
	transition: clip-path 0.2s ease;
}
.pvm-compare-handle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #ffffff;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.3);
	cursor: ew-resize;
	z-index: 5;
}
.pvm-compare-handle svg {
	width: 22px;
	height: 22px;
	fill: #334155;
}
.pvm-preset-info {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex-grow: 1;
}
.pvm-preset-info h3 {
	font-size: 2.3rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0;
}
.pvm-preset-info h3 a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}
.pvm-preset-info h3 a:hover {
	color: #6a11cb;
}
.pvm-preset-info p {
	color: #64748b;
	line-height: 1.6;
	margin: 0;
	flex-grow: 1;
}
.pvm-preset-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 12px;
	border-top: 1px solid #f1f5f9;
	font-size: 1.6rem;
}
.pvm-preset-meta .pvm-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #fbbf24;
	font-weight: 600;
}
.pvm-preset-meta .pvm-downloads {
	color: #64748b;
	font-weight: 600;
}
.pvm-preset-actions {
	display: flex;
	gap: 10px;
	margin-top: 12px;
}
.pvm-preset-actions .pvm-btn {
	flex: 1;
	padding: 12px 20px;
	text-align: center;
	font-size: 1.7rem;
	min-width: auto;
}
.pvm-pagination {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 60px;
	flex-wrap: wrap;
}
.pvm-pagination a,
.pvm-pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 52px;
	height: 52px;
	padding: 0 20px;
	border-radius: 14px;
	background: #ffffff;
	border: 2px solid #e2e8f0;
	color: #334155;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.08rem;
	transition: var(--pvm-transition-fast);
}
.pvm-pagination a:hover,
.pvm-pagination span.current {
	background: linear-gradient(135deg, #6a11cb, #2575fc);
	color: #ffffff;
	border-color: transparent;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 20px rgba(106, 17, 203, 0.3);
}
.pvm-no-results {
	text-align: center;
	padding: 80px 20px;
}
.pvm-no-results h3 {
	font-size: 3.6rem;
	color: #334155;
	margin-bottom: 16px;
}
.pvm-no-results p {
	color: #64748b;
	font-size: 2.0rem;
	margin-bottom: 24px;
}

/* Taxonomy Preset Category */
.pvm-niche-hero {
	background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
	color: #ffffff;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}
.pvm-niche-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect fill="url(%23dots)" width="1200" height="600"/></svg>');
	opacity: 0.3;
}
.pvm-niche-hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.pvm-niche-info h1 {
	font-size: clamp(4.5rem, 7.2vw, 6.3rem);
	font-weight: 900;
	margin-bottom: 20px;
	line-height: 1.1;
}
.pvm-niche-info p {
	font-size: 2.2rem;
	line-height: 1.7;
	margin-bottom: 28px;
	opacity: 0.95;
}
.pvm-niche-stats {
	display: flex;
	gap: 32px;
	margin-bottom: 32px;
}
.pvm-niche-stat {
	text-align: center;
}
.pvm-niche-stat strong {
	display: block;
	font-size: 4.0rem;
	font-weight: 900;
	margin-bottom: 4px;
}
.pvm-niche-stat span {
	font-size: 1.7rem;
	opacity: 0.85;
}
.pvm-niche-featured {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
	height: 400px;
}
.pvm-niche-featured img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pvm-niche-featured .pvm-after-img {
	clip-path: inset(0 0 0 50%);
}
.pvm-niche-presets {
	padding: 80px 0;
	background: #ffffff;
}

/* ============================================
   Blog Styles
   ============================================ */
.pvm-post-header {
	background: linear-gradient(135deg, #1e293b, #334155);
	color: #ffffff;
	padding: 60px 0 40px;
}
.pvm-post-header-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}
.pvm-post-categories {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-bottom: 20px;
}
.pvm-post-category {
	background: rgba(255, 255, 255, 0.15);
	padding: 8px 18px;
	border-radius: 20px;
	font-size: 1.6rem;
	font-weight: 600;
	text-decoration: none;
	color: #ffffff;
	transition: all 0.2s ease;
}
.pvm-post-category:hover {
	background: rgba(255, 255, 255, 0.25);
}
.pvm-post-header h1 {
	font-size: clamp(3.6rem, 7.2vw, 5.4rem);
	font-weight: 900;
	margin-bottom: 24px;
	line-height: 1.2;
}
.pvm-post-meta {
	display: flex;
	gap: 24px;
	justify-content: center;
	font-size: 1.8rem;
	opacity: 0.9;
}
.pvm-post-meta span {
	display: flex;
	align-items: center;
	gap: 8px;
}
.pvm-post-content-wrapper {
	padding: 60px 0 80px;
	background: #ffffff;
}
.pvm-post-layout {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 60px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}
.pvm-post-main {
	min-width: 0;
}
.pvm-post-featured-image {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
	margin-bottom: 48px;
}
.pvm-post-featured-image img {
	width: 100%;
	height: auto;
	display: block;
}
.pvm-post-content {
	font-size: 2.0rem;
	line-height: 1.8;
	color: #334155;
}
.pvm-post-content h2,
.pvm-post-content h3,
.pvm-post-content h4 {
	color: #1e293b;
	font-weight: 800;
	margin-top: 48px;
	margin-bottom: 24px;
	line-height: 1.3;
}
.pvm-post-content h2 {
	font-size: 3.6rem;
}
.pvm-post-content h3 {
	font-size: 2.9rem;
}
.pvm-post-content p {
	margin-bottom: 24px;
}
.pvm-post-content ul,
.pvm-post-content ol {
	margin-bottom: 24px;
	padding-left: 32px;
}
.pvm-post-content li {
	margin-bottom: 12px;
}
.pvm-post-content img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	margin: 32px 0;
}
.pvm-post-content a {
	color: #6a11cb;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: border-color 0.2s ease;
}
.pvm-post-content a:hover {
	border-bottom-color: #6a11cb;
}
.pvm-post-content blockquote {
	border-left: 4px solid #6a11cb;
	padding-left: 24px;
	margin: 32px 0;
	font-style: italic;
	color: #64748b;
	font-size: 2.2rem;
}
.pvm-post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 48px;
	padding-top: 32px;
	border-top: 2px solid #f1f5f9;
}
.pvm-post-tag {
	background: #f8fafc;
	padding: 10px 18px;
	border-radius: 20px;
	font-size: 1.6rem;
	font-weight: 600;
	color: #64748b;
	text-decoration: none;
	transition: all 0.2s ease;
}
.pvm-post-tag:hover {
	background: #6a11cb;
	color: #ffffff;
}
.pvm-post-sidebar {
	position: sticky;
	top: 90px;
	align-self: start;
}
.pvm-sidebar-widget {
	background: #f8fafc;
	border-radius: 20px;
	padding: 28px;
	margin-bottom: 28px;
}
.pvm-sidebar-widget h3 {
	font-size: 2.3rem;
	font-weight: 800;
	color: #1e293b;
	margin-bottom: 20px;
}
.pvm-related-posts {
	list-style: none;
	padding: 0;
	margin: 0;
}
.pvm-related-post {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e2e8f0;
}
.pvm-related-post:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.pvm-related-post a {
	color: #1e293b;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.9rem;
	line-height: 1.4;
	transition: color 0.2s ease;
}
.pvm-related-post a:hover {
	color: #6a11cb;
}
.pvm-related-post-date {
	color: #64748b;
	font-size: 1.5rem;
	margin-top: 6px;
}
.pvm-comments-section {
	max-width: 900px;
	margin: 60px auto 0;
	padding: 0 24px;
}

/* Blog Archive */
.pvm-blog-header {
	background: linear-gradient(135deg, #1e293b, #334155);
	color: #ffffff;
	padding: 80px 0;
	text-align: center;
}
.pvm-blog-header h1 {
	font-size: clamp(4.5rem, 7.2vw, 6.3rem);
	font-weight: 900;
	margin-bottom: 16px;
}
.pvm-blog-header p {
	font-size: 2.2rem;
	opacity: 0.9;
	max-width: 700px;
	margin: 0 auto;
}
.pvm-blog-content {
	padding: 80px 0;
	background: #f8fafc;
}
.pvm-blog-layout {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 48px;
}
.pvm-blog-main {
	min-width: 0;
}
.pvm-blog-grid {
	display: grid;
	gap: 40px;
}
.pvm-blog-card {
	background: #ffffff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
	transition: all 0.3s ease;
	display: grid;
	grid-template-columns: 350px 1fr;
	gap: 0;
}
.pvm-blog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(15, 23, 42, 0.15);
}
.pvm-blog-card-image {
	position: relative;
	overflow: hidden;
}
.pvm-blog-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.pvm-blog-card:hover .pvm-blog-card-image img {
	transform: scale(1.08);
}
.pvm-blog-card-content {
	padding: 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.pvm-blog-meta {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
	font-size: 1.6rem;
	color: #64748b;
}
.pvm-blog-meta span {
	display: flex;
	align-items: center;
	gap: 6px;
}
.pvm-blog-card h2 {
	font-size: 3.1rem;
	font-weight: 800;
	margin-bottom: 16px;
	line-height: 1.3;
}
.pvm-blog-card h2 a {
	color: #1e293b;
	text-decoration: none;
	transition: color 0.2s ease;
}
.pvm-blog-card h2 a:hover {
	color: #6a11cb;
}
.pvm-blog-card p {
	color: #64748b;
	line-height: 1.8;
	margin-bottom: 24px;
	font-size: 1.08rem;
}
.pvm-read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #6a11cb;
	font-weight: 700;
	text-decoration: none;
	transition: gap 0.2s ease;
}
.pvm-read-more:hover {
	gap: 12px;
}
.pvm-blog-sidebar {
	position: sticky;
	top: 90px;
	align-self: start;
}
.pvm-category-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.pvm-category-list li {
	margin-bottom: 12px;
}
.pvm-category-list a {
	color: #64748b;
	text-decoration: none;
	transition: color 0.2s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pvm-category-list a:hover {
	color: #6a11cb;
}

/* Stories Archive */
.pvm-stories-header {
	background: linear-gradient(135deg, #6a11cb, #2575fc);
	color: #ffffff;
	padding: 100px 0;
	text-align: center;
}
.pvm-stories-header h1 {
	font-size: clamp(4.5rem, 7.2vw, 6.8rem);
	font-weight: 900;
	margin-bottom: 20px;
}
.pvm-stories-header p {
	font-size: 2.3rem;
	opacity: 0.95;
	max-width: 750px;
	margin: 0 auto;
	line-height: 1.6;
}
.pvm-stories-section {
	padding: 80px 0;
	background: #f8fafc;
}
.pvm-stories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
	gap: 40px;
}
.pvm-story-card {
	background: #ffffff;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
	transition: all 0.3s ease;
}
.pvm-story-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 24px 56px rgba(15, 23, 42, 0.15);
}
.pvm-story-image {
	position: relative;
	height: 280px;
	overflow: hidden;
}
.pvm-story-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.pvm-story-card:hover .pvm-story-image img {
	transform: scale(1.1);
}
.pvm-story-content {
	padding: 32px;
}
.pvm-story-content h2 {
	font-size: 2.9rem;
	font-weight: 800;
	color: #1e293b;
	margin-bottom: 16px;
	line-height: 1.3;
}
.pvm-story-content h2 a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}
.pvm-story-content h2 a:hover {
	color: #6a11cb;
}
.pvm-story-excerpt {
	color: #64748b;
	line-height: 1.7;
	margin-bottom: 20px;
}
.pvm-story-author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 20px;
	border-top: 2px solid #f1f5f9;
}
.pvm-story-author-info strong {
	display: block;
	color: #1e293b;
	font-weight: 700;
	margin-bottom: 4px;
}
.pvm-story-author-info span {
	color: #64748b;
	font-size: 1.6rem;
}

/* ============================================
   Page Templates Styles
   ============================================ */
/* FAQ Page */
.pvm-faq-hero {
	background: linear-gradient(135deg, #6a11cb, #2575fc);
	color: #ffffff;
	padding: 80px 0;
	text-align: center;
}
.pvm-faq-hero h1 {
	font-size: clamp(4.5rem, 7.2vw, 6.3rem);
	font-weight: 900;
	margin-bottom: 20px;
}
.pvm-faq-hero p {
	font-size: 2.2rem;
	opacity: 0.95;
	margin-bottom: 32px;
}
.pvm-faq-search {
	max-width: 600px;
	margin: 0 auto;
	position: relative;
}
.pvm-faq-search input {
	width: 100%;
	padding: 18px 24px;
	border-radius: 50px;
	border: none;
	font-size: 2.0rem;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.pvm-faq-search input:focus {
	outline: none;
}
.pvm-faq-section {
	padding: 80px 0;
	background: #f8fafc;
}
.pvm-faq-container {
	max-width: 900px;
	margin: 0 auto;
}
.pvm-faq-item {
	background: #ffffff;
	border-radius: 16px;
	margin-bottom: 16px;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
	overflow: hidden;
	transition: all 0.3s ease;
}
.pvm-faq-item:hover {
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}
.pvm-faq-question {
	padding: 24px 28px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	user-select: none;
}
.pvm-faq-question h3 {
	font-size: 2.2rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0;
}
.pvm-faq-icon {
	font-size: 2.7rem;
	color: #6a11cb;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}
.pvm-faq-item.active .pvm-faq-icon {
	transform: rotate(45deg);
}
.pvm-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}
.pvm-faq-answer-content {
	padding: 0 28px 24px;
	color: #64748b;
	line-height: 1.7;
	font-size: 1.9rem;
}
.pvm-faq-item.active .pvm-faq-answer {
	max-height: 500px;
}
.pvm-faq-cta {
	background: #ffffff;
	padding: 48px;
	border-radius: 24px;
	text-align: center;
	margin-top: 60px;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}
.pvm-faq-cta h2 {
	font-size: 3.6rem;
	font-weight: 800;
	color: #1e293b;
	margin-bottom: 16px;
}
.pvm-faq-cta p {
	color: #64748b;
	margin-bottom: 24px;
	font-size: 2.0rem;
}

/* About Page */
.pvm-about-hero {
	background: linear-gradient(135deg, #6a11cb, #2575fc);
	color: #ffffff;
	padding: 100px 0;
	text-align: center;
}
.pvm-about-hero h1 {
	font-size: clamp(4.5rem, 7.2vw, 6.3rem);
	font-weight: 900;
	margin-bottom: 24px;
}
.pvm-about-hero p {
	font-size: 2.3rem;
	opacity: 0.95;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.7;
}
.pvm-about-section {
	padding: 80px 0;
}
.pvm-about-section:nth-child(even) {
	background: #f8fafc;
}
.pvm-about-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}
.pvm-about-content h2 {
	font-size: 4.5rem;
	font-weight: 800;
	color: #1e293b;
	margin-bottom: 24px;
}
.pvm-about-content p {
	font-size: 2.1rem;
	line-height: 1.8;
	color: #64748b;
	margin-bottom: 20px;
}
.pvm-values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
	margin-top: 60px;
}
.pvm-value-card {
	background: #ffffff;
	padding: 40px;
	border-radius: 24px;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
	text-align: center;
	transition: all 0.3s ease;
}
.pvm-value-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 48px rgba(15, 23, 42, 0.15);
}
.pvm-value-icon {
	font-size: 5.4rem;
	margin-bottom: 20px;
}
.pvm-value-card h3 {
	font-size: 2.7rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 16px;
}
.pvm-value-card p {
	color: #64748b;
	line-height: 1.6;
}

/* Contact Page */
.pvm-contact-hero {
	background: linear-gradient(135deg, #6a11cb, #2575fc);
	color: #ffffff;
	padding: 80px 0;
	text-align: center;
}
.pvm-contact-hero h1 {
	font-size: clamp(4.5rem, 7.2vw, 6.3rem);
	font-weight: 900;
	margin-bottom: 20px;
}
.pvm-contact-hero p {
	font-size: 2.2rem;
	opacity: 0.95;
}
.pvm-contact-section {
	padding: 80px 0;
	background: #f8fafc;
}
.pvm-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}
.pvm-contact-info h2 {
	font-size: 4.0rem;
	font-weight: 800;
	color: #1e293b;
	margin-bottom: 24px;
}
.pvm-contact-info p {
	font-size: 2.0rem;
	color: #64748b;
	line-height: 1.7;
	margin-bottom: 32px;
}
.pvm-contact-methods {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.pvm-contact-method {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.pvm-contact-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #6a11cb, #2575fc);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.7rem;
	flex-shrink: 0;
}
.pvm-contact-method-info h3 {
	font-size: 2.0rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 6px;
}
.pvm-contact-method-info a {
	color: #6a11cb;
	text-decoration: none;
	font-weight: 600;
}
.pvm-contact-form {
	background: #ffffff;
	padding: 48px;
	border-radius: 24px;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}
.pvm-contact-form h3 {
	font-size: 3.2rem;
	font-weight: 800;
	color: #1e293b;
	margin-bottom: 28px;
}
.pvm-form-group {
	margin-bottom: 24px;
}
.pvm-form-group label {
	display: block;
	font-weight: 600;
	color: #334155;
	margin-bottom: 8px;
}
.pvm-form-group input,
.pvm-form-group textarea {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	font-size: 1.8rem;
	transition: border-color 0.2s ease;
}
.pvm-form-group input:focus,
.pvm-form-group textarea:focus {
	outline: none;
	border-color: #6a11cb;
}
.pvm-form-group textarea {
	min-height: 150px;
	resize: vertical;
}

/* How It Works Page */
.pvm-hiw-hero {
	background: linear-gradient(135deg, #6a11cb, #2575fc);
	color: #ffffff;
	padding: 100px 0;
	text-align: center;
}
.pvm-hiw-hero h1 {
	font-size: clamp(4.5rem, 7.2vw, 6.8rem);
	font-weight: 900;
	margin-bottom: 24px;
}
.pvm-hiw-hero p {
	font-size: 2.3rem;
	opacity: 0.95;
	max-width: 750px;
	margin: 0 auto;
}
.pvm-steps-section {
	padding: 100px 0;
	background: #ffffff;
}
.pvm-steps-grid {
	display: grid;
	gap: 80px;
	max-width: 1000px;
	margin: 0 auto;
}
.pvm-step {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 40px;
	align-items: center;
}
.pvm-step:nth-child(even) {
	grid-template-columns: 1fr 120px;
}
.pvm-step:nth-child(even) .pvm-step-number {
	order: 2;
}
.pvm-step-number {
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, #6a11cb, #2575fc);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5.4rem;
	font-weight: 900;
	color: #ffffff;
	box-shadow: 0 16px 40px rgba(106, 17, 203, 0.3);
}
.pvm-step-content h2 {
	font-size: 3.6rem;
	font-weight: 800;
	color: #1e293b;
	margin-bottom: 16px;
}
.pvm-step-content p {
	font-size: 2.1rem;
	line-height: 1.7;
	color: #64748b;
}

/* 404 Page */
.pvm-404-page {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 0;
	background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}
.pvm-404-content {
	text-align: center;
	max-width: 700px;
}
.pvm-404-number {
	font-size: clamp(14.4rem, 27.0vw, 21.6rem);
	font-weight: 900;
	background: linear-gradient(135deg, #6a11cb, #2575fc);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 24px;
	animation: float 3s ease-in-out infinite;
}
@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-20px); }
}
.pvm-404-content h1 {
	font-size: clamp(3.6rem, 7.2vw, 5.4rem);
	font-weight: 800;
	color: #1e293b;
	margin-bottom: 20px;
}
.pvm-404-content p {
	font-size: 2.2rem;
	color: #64748b;
	margin-bottom: 40px;
	line-height: 1.7;
}
.pvm-404-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
.pvm-404-actions .pvm-btn {
	min-width: 200px;
}
.pvm-404-suggestions {
	margin-top: 60px;
	padding-top: 48px;
	border-top: 2px solid #e2e8f0;
}
.pvm-404-suggestions h2 {
	font-size: 3.2rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 32px;
}
.pvm-suggestions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}
.pvm-suggestion-link {
	padding: 20px;
	background: #ffffff;
	border-radius: 16px;
	text-decoration: none;
	color: #334155;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}
.pvm-suggestion-link:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
	color: #6a11cb;
}
.pvm-suggestion-link span {
	font-size: 3.6rem;
	display: block;
	margin-bottom: 12px;
}

/* ============================================
   Media Queries - Responsive Design
   ============================================ */
@media (max-width: 992px) {
	.pvm-menu-toggle {
		display: flex;
	}
	.pvm-main-nav {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 80%;
		max-width: 320px;
		height: calc(100vh - 70px);
		background: #ffffff;
		box-shadow: 4px 0 16px rgba(15, 23, 42, 0.1);
		transition: left 0.3s ease;
		overflow-y: auto;
		padding: 24px 0;
	}
	.pvm-main-nav.active {
		left: 0;
	}
	.pvm-main-nav ul {
		flex-direction: column;
		gap: 0;
	}
	.pvm-main-nav li {
		border-bottom: 1px solid #f1f5f9;
	}
	.pvm-main-nav a {
		display: block;
		padding: 16px 24px;
	}
	.pvm-main-nav a::after {
		display: none;
	}
	.pvm-footer-content {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.pvm-niche-hero-content {
		grid-template-columns: 1fr;
	}
	.pvm-niche-featured {
		height: 320px;
	}
	.pvm-niche-stats {
		justify-content: center;
	}
	.pvm-presets-grid {
		grid-template-columns: 1fr;
	}
	.pvm-blog-layout {
		grid-template-columns: 1fr;
	}
	.pvm-blog-card {
		grid-template-columns: 1fr;
	}
	.pvm-blog-sidebar {
		position: static;
	}
	.pvm-post-layout {
		grid-template-columns: 1fr;
	}
	.pvm-post-sidebar {
		position: static;
	}
	.pvm-contact-grid {
		grid-template-columns: 1fr;
	}
	.pvm-step,
	.pvm-step:nth-child(even) {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.pvm-step:nth-child(even) .pvm-step-number {
		order: 1;
	}
	.pvm-step-number {
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.pvm-site-footer {
		padding: 50px 0 24px;
	}
	.pvm-hero {
		padding: 80px 0 60px;
	}
	.pvm-hero-actions {
		flex-direction: column;
	}
	.pvm-btn {
		width: 100%;
	}
	.pvm-slider-container {
		height: 350px;
	}
	.pvm-stats-grid {
		grid-template-columns: 1fr 1fr;
	}
	.pvm-testimonial {
		padding: 32px 24px;
	}
	.pvm-filter-wrapper {
		flex-direction: column;
		align-items: stretch;
	}
	.pvm-filter-group {
		flex-direction: column;
		align-items: stretch;
	}
	.pvm-filter-group select {
		width: 100%;
	}
	.pvm-filter-section {
		position: static;
	}
	.preset-floating-content {
		flex-direction: column;
		text-align: center;
	}
	.preset-floating-actions {
		width: 100%;
		flex-direction: column;
	}
	.preset-floating-btn {
		width: 100%;
	}
	.preset-hero-compare {
		padding: 12px 0 1px;
	}
	.preset-compare-showcase {
		height: 350px;
	}
	.preset-description-wrapper {
		padding: 32px 24px;
	}
	.preset-video-wrapper iframe {
		height: 280px;
	}
	.preset-actions {
		flex-direction: column;
	}
	.preset-btn {
		width: 100%;
	}
	.pvm-stories-grid {
		grid-template-columns: 1fr;
	}
	.pvm-card__media {
		height: 200px;
	}
}

@media (max-width: 640px) {
	.pvm-card__media {
		height: 200px;
	}
}

