/*
Theme Name: Professional Followers
Theme URI: https://professional-followers.com
Description: Custom LinkedIn-inspired theme for Professional Followers - the social media growth platform.
Author: Professional Followers
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pf-theme
Tags: blog, e-commerce, linkedin, professional
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
	--pf-blue:         #0A66C2;
	--pf-blue-dark:    #004182;
	--pf-blue-mid:     #1874C7;
	--pf-blue-light:   #EAF4FF;
	--pf-navy:         #1D2226;
	--pf-bg:           #F3F2EF;
	--pf-card:         #FFFFFF;
	--pf-text:         #1D2226;
	--pf-text-muted:   #595959;
	--pf-text-light:   #86888A;
	--pf-border:       #E0DFDC;
	--pf-border-dark:  #C8C8C8;
	--pf-green:        #057642;
	--pf-radius:       8px;
	--pf-radius-sm:    4px;
	--pf-shadow:       0 0 0 1px var(--pf-border), 0 2px 4px rgba(0,0,0,.06);
	--pf-shadow-hover: 0 0 0 1px var(--pf-border-dark), 0 4px 16px rgba(0,0,0,.12);
	--pf-transition:   0.18s ease;
	--pf-container:    1200px;
	--pf-content:      760px;
	--pf-sidebar:      300px;
	--pf-gap:          24px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--pf-text);
	background: var(--pf-bg);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--pf-blue); text-decoration: none; transition: color var(--pf-transition); }
a:hover { color: var(--pf-blue-dark); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.3;
	color: var(--pf-text);
}

button { cursor: pointer; font-family: inherit; }

/* ============================================================
   LAYOUT
   ============================================================ */
.pf-container {
	max-width: var(--pf-container);
	margin: 0 auto;
	padding: 0 20px;
}

.pf-site-wrap { display: flex; flex-direction: row; min-height: 100vh; }
.pf-main-area { flex: 1; min-width: 0; display: flex; flex-direction: column; }
#pf-content { flex: 1; padding: 32px 0 48px; }

/* Content + Sidebar grid */
.pf-content-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--pf-gap);
}
@media (min-width: 1024px) {
	.pf-content-grid {
		grid-template-columns: 1fr var(--pf-sidebar);
		align-items: start;
	}
	.pf-content-grid.no-sidebar { grid-template-columns: 1fr; }
}

/* ============================================================
   SKIP LINK
   ============================================================ */
.pf-skip-link {
	position: absolute;
	top: -100px;
	left: 16px;
	background: var(--pf-blue);
	color: #fff;
	padding: 8px 16px;
	border-radius: var(--pf-radius-sm);
	font-weight: 600;
	z-index: 9999;
	transition: top var(--pf-transition);
}
.pf-skip-link:focus { top: 8px; color: #fff; }

/* ============================================================
   BUTTONS (used across site)
   ============================================================ */
.pf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 8px 20px;
	border-radius: 24px;
	font-size: 0.875rem;
	font-weight: 700;
	border: none;
	transition: background var(--pf-transition), box-shadow var(--pf-transition), transform var(--pf-transition);
	white-space: nowrap;
	cursor: pointer;
}
.pf-btn:hover { transform: translateY(-1px); }

.pf-btn-primary {
	background: var(--pf-blue);
	color: #fff;
}
.pf-btn-primary:hover {
	background: var(--pf-blue-dark);
	color: #fff;
	box-shadow: 0 4px 12px rgba(10,102,194,0.4);
}

/* ============================================================
   PAGE HERO (category/archive/search header)
   ============================================================ */
.pf-page-hero {
	background: var(--pf-card);
	border-radius: var(--pf-radius);
	box-shadow: var(--pf-shadow);
	padding: 28px 32px;
	margin-bottom: var(--pf-gap);
}
.pf-page-hero h1 {
	font-size: 1.75rem;
	margin-bottom: 8px;
}
.pf-page-hero p {
	color: var(--pf-text-muted);
	margin: 0;
}

/* ============================================================
   ARCHIVE / BLOG CARD GRID
   ============================================================ */
.pf-posts-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
@media (min-width: 600px) {
	.pf-posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.pf-posts-grid.has-sidebar { grid-template-columns: 1fr; }
}
@media (min-width: 1300px) {
	.pf-posts-grid:not(.has-sidebar) { grid-template-columns: repeat(3, 1fr); }
}

/* Post card */
.pf-post-card {
	background: var(--pf-card);
	border-radius: var(--pf-radius);
	box-shadow: var(--pf-shadow);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow var(--pf-transition), transform var(--pf-transition);
}
.pf-post-card:hover {
	box-shadow: var(--pf-shadow-hover);
	transform: translateY(-3px);
}

.pf-card-thumb {
	overflow: hidden;
	aspect-ratio: 16/9;
	background: var(--pf-blue-light);
	position: relative;
}
.pf-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.pf-post-card:hover .pf-card-thumb img { transform: scale(1.05); }

.pf-card-thumb-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--pf-blue-light) 0%, #d4e8ff 100%);
}
.pf-card-thumb-placeholder svg { width: 48px; height: 48px; opacity: 0.35; }

.pf-card-body {
	padding: 18px 20px 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* Category badge */
.pf-card-cats { margin-bottom: 10px; }
.pf-cat-badge {
	display: inline-flex;
	align-items: center;
	background: var(--pf-blue-light);
	color: var(--pf-blue);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: var(--pf-radius-sm);
	margin-right: 4px;
	margin-bottom: 4px;
	transition: background var(--pf-transition), color var(--pf-transition);
}
.pf-cat-badge:hover {
	background: var(--pf-blue);
	color: #fff;
}

/* Card title */
.pf-card-title {
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 10px;
	color: var(--pf-text);
}
.pf-card-title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--pf-transition);
}
.pf-card-title a:hover { color: var(--pf-blue); }

/* Card excerpt */
.pf-card-excerpt {
	font-size: 0.875rem;
	line-height: 1.65;
	color: var(--pf-text-muted);
	margin-bottom: 14px;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Card footer */
.pf-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 12px;
	border-top: 1px solid var(--pf-border);
	margin-top: auto;
}
.pf-card-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--pf-text-light);
}
.pf-card-meta .pf-avatar {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid var(--pf-border);
}
.pf-card-meta .pf-avatar img { width: 100%; height: 100%; object-fit: cover; }

.pf-read-more {
	font-size: 12px;
	font-weight: 600;
	color: var(--pf-blue);
	display: flex;
	align-items: center;
	gap: 4px;
	transition: gap var(--pf-transition), color var(--pf-transition);
}
.pf-read-more:hover { color: var(--pf-blue-dark); gap: 8px; }
.pf-read-more svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================================
   SINGLE POST
   ============================================================ */
.pf-single-wrap { max-width: var(--pf-content); }

/* Single post article */
.pf-article {
	background: var(--pf-card);
	border-radius: var(--pf-radius);
	box-shadow: var(--pf-shadow);
	overflow: hidden;
	margin-bottom: var(--pf-gap);
	position: relative;
}
.pf-article::before {
	content: "";
	display: block;
	height: 4px;
	background: linear-gradient(90deg, var(--pf-blue) 0%, #70B5F9 100%);
}

.pf-article-hero img {
	width: 100%;
	max-height: 480px;
	object-fit: cover;
}

.pf-article-body { padding: 36px 40px 40px; }
@media (max-width: 767px) { .pf-article-body { padding: 24px 20px 28px; } }

/* Article category badges */
.pf-article-cats { margin-bottom: 14px; }

/* Article title */
.pf-article-title {
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.25;
	color: var(--pf-text);
	margin-bottom: 16px;
}
@media (max-width: 767px) { .pf-article-title { font-size: 1.5rem; } }

/* Article meta row */
.pf-article-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 16px;
	font-size: 13px;
	color: var(--pf-text-light);
	padding-bottom: 20px;
	margin-bottom: 24px;
	border-bottom: 2px solid var(--pf-border);
}
.pf-article-meta .pf-meta-author {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--pf-text-muted);
	font-weight: 600;
}
.pf-article-meta .pf-meta-author img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid var(--pf-blue-light);
}
.pf-article-meta .pf-meta-author a { color: inherit; }
.pf-article-meta .pf-meta-author a:hover { color: var(--pf-blue); }
.pf-article-meta .pf-meta-date { display: flex; align-items: center; gap: 5px; }
.pf-article-meta svg { width: 14px; height: 14px; opacity: 0.6; }

/* Article content */
.pf-article-content {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: var(--pf-text);
}
.pf-article-content > * + * { margin-top: 1.4em; }
.pf-article-content p { margin-top: 0; margin-bottom: 1.25em; }

.pf-article-content h2 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 2em;
	margin-bottom: 0.6em;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--pf-blue-light);
	color: var(--pf-text);
}
.pf-article-content h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-top: 1.6em;
	margin-bottom: 0.5em;
	color: var(--pf-blue-dark);
}
.pf-article-content h4 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-top: 1.4em;
	margin-bottom: 0.4em;
}

.pf-article-content a {
	color: var(--pf-blue);
	text-decoration: underline;
	text-decoration-color: rgba(10,102,194,0.35);
}
.pf-article-content a:hover {
	color: var(--pf-blue-dark);
	text-decoration-color: var(--pf-blue-dark);
}

.pf-article-content ul,
.pf-article-content ol {
	padding-left: 1.5em;
	margin-bottom: 1.25em;
}
.pf-article-content ul { list-style: disc; }
.pf-article-content ol { list-style: decimal; }
.pf-article-content li { margin-bottom: 0.45em; }
.pf-article-content li > ul, .pf-article-content li > ol { margin-top: 0.35em; margin-bottom: 0.35em; }
.pf-article-content ul li::marker { color: var(--pf-blue); }

.pf-article-content blockquote {
	border-left: 4px solid var(--pf-blue);
	background: var(--pf-blue-light);
	padding: 16px 20px 16px 24px;
	border-radius: 0 var(--pf-radius) var(--pf-radius) 0;
	font-style: italic;
	color: var(--pf-text-muted);
	margin: 1.5em 0;
}
.pf-article-content blockquote p { margin: 0; }
.pf-article-content blockquote cite {
	display: block;
	margin-top: 8px;
	font-size: 0.85em;
	font-style: normal;
	font-weight: 600;
	color: var(--pf-blue);
}

.pf-article-content code {
	background: var(--pf-blue-light);
	color: var(--pf-blue-dark);
	font-size: 0.875em;
	padding: 2px 6px;
	border-radius: var(--pf-radius-sm);
	font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
}
.pf-article-content pre {
	background: var(--pf-navy);
	color: #e2e8f0;
	padding: 20px 24px;
	border-radius: var(--pf-radius);
	overflow-x: auto;
	font-size: 0.875rem;
	line-height: 1.7;
	margin: 1.5em 0;
}
.pf-article-content pre code {
	background: none;
	color: inherit;
	padding: 0;
	font-size: inherit;
}

.pf-article-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5em 0;
	font-size: 0.9rem;
	border-radius: var(--pf-radius);
	overflow: hidden;
	box-shadow: var(--pf-shadow);
}
.pf-article-content th {
	background: var(--pf-blue);
	color: #fff;
	font-weight: 700;
	padding: 11px 16px;
	text-align: left;
}
.pf-article-content td {
	padding: 10px 16px;
	border-bottom: 1px solid var(--pf-border);
	color: var(--pf-text);
}
.pf-article-content tr:last-child td { border-bottom: none; }
.pf-article-content tr:nth-child(even) td { background: var(--pf-blue-light); }

.pf-article-content hr {
	border: none;
	border-top: 2px solid var(--pf-border);
	margin: 2em 0;
}
.pf-article-content img {
	border-radius: var(--pf-radius-sm);
	box-shadow: var(--pf-shadow);
	margin: 0.5em 0;
}

/* Video wrapper */
.pf-video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: var(--pf-radius);
	box-shadow: var(--pf-shadow);
	margin: 1.5em 0;
}
.pf-video-wrapper iframe,
.pf-video-wrapper embed,
.pf-video-wrapper object {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Article tags */
.pf-article-tags {
	padding-top: 16px;
	margin-top: 24px;
	border-top: 1px solid var(--pf-border);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}
.pf-article-tags .pf-tags-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--pf-text-light);
}
.pf-tag-pill {
	display: inline-flex;
	align-items: center;
	background: #f1f0ee;
	color: var(--pf-text-muted);
	font-size: 12px;
	font-weight: 500;
	padding: 5px 12px;
	border-radius: var(--pf-radius-sm);
	border: 1px solid var(--pf-border);
	transition: background var(--pf-transition), color var(--pf-transition), border-color var(--pf-transition);
}
.pf-tag-pill:hover {
	background: var(--pf-blue-light);
	color: var(--pf-blue);
	border-color: var(--pf-blue);
}

/* ============================================================
   POST NAVIGATION (prev / next)
   ============================================================ */
.pf-post-nav {
	position: fixed !important;
	bottom: 0;
	left: 0;
	right: 56px;
	z-index: 9980;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	margin: 0;
	padding: 0;
	background: #fff;
	border-top: 1px solid #E2E8F0;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
	border-radius: 0;
	contain: none !important;
}
.pf-post-nav-prev,
.pf-post-nav-next {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 14px 20px;
}
.pf-post-nav-prev {
	border-right: 1px solid #E2E8F0;
}
.pf-post-nav-next { text-align: right; }
.pf-post-nav-label {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #0A66C2;
}
.pf-post-nav a {
	font-size: 0.82rem;
	font-weight: 600;
	color: #334155;
	line-height: 1.35;
	transition: color 0.2s;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.pf-post-nav a:hover { color: #0A66C2; }

/* Space at bottom of post so content isn't hidden behind fixed nav */
.single-post #pf-content {
	padding-bottom: 80px;
}

@media (max-width: 768px) {
	.pf-post-nav {
		right: 44px;
	}
	.pf-post-nav-prev,
	.pf-post-nav-next {
		padding: 12px 14px;
	}
	.pf-post-nav a {
		font-size: 0.78rem;
	}
}
@media (max-width: 480px) {
	.pf-post-nav {
		right: 40px;
	}
}
@media (max-width: 600px) {
	.pf-post-nav-next { text-align: left; }
}

/* ============================================================
   AUTHOR BOX
   ============================================================ */
.pf-author-box {
	background: var(--pf-card);
	border-radius: var(--pf-radius);
	box-shadow: var(--pf-shadow);
	padding: 24px;
	margin-bottom: var(--pf-gap);
	border-top: 4px solid var(--pf-blue);
}
.pf-author-inner {
	display: flex;
	gap: 18px;
}
@media (max-width: 600px) { .pf-author-inner { flex-direction: column; align-items: center; text-align: center; } }

.pf-author-avatar img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 3px solid var(--pf-blue);
	flex-shrink: 0;
}
.pf-author-info { flex: 1; }
.pf-author-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--pf-blue);
	margin-bottom: 4px;
}
.pf-author-name {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--pf-text);
	margin-bottom: 6px;
}
.pf-author-name a { color: inherit; }
.pf-author-name a:hover { color: var(--pf-blue); }
.pf-author-bio {
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--pf-text-muted);
	margin-bottom: 10px;
}
.pf-author-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.pf-social-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--pf-blue-light);
	color: var(--pf-blue);
	border: 1px solid var(--pf-border);
	font-size: 0.875rem;
	transition: background var(--pf-transition), color var(--pf-transition), border-color var(--pf-transition);
	text-decoration: none;
}
.pf-social-btn:hover {
	background: var(--pf-blue);
	color: #fff;
	border-color: var(--pf-blue);
}

/* ============================================================
   RELATED POSTS
   ============================================================ */
.pf-related {
	background: var(--pf-card);
	border-radius: var(--pf-radius);
	box-shadow: var(--pf-shadow);
	padding: 28px;
	margin-bottom: var(--pf-gap);
}
.pf-section-title {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--pf-text);
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--pf-border);
	display: flex;
	align-items: center;
	gap: 10px;
}
.pf-section-title::before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 1.1em;
	background: var(--pf-blue);
	border-radius: 2px;
	flex-shrink: 0;
}
.pf-related-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}
@media (min-width: 600px) { .pf-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .pf-related-grid { grid-template-columns: repeat(3, 1fr); } }

.pf-related-card {
	background: var(--pf-bg);
	border: 1px solid var(--pf-border);
	border-radius: var(--pf-radius);
	overflow: hidden;
	transition: box-shadow var(--pf-transition), transform var(--pf-transition);
}
.pf-related-card:hover {
	box-shadow: var(--pf-shadow-hover);
	transform: translateY(-2px);
}
.pf-related-card img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
}
.pf-related-card-body { padding: 12px 14px; }
.pf-related-card-body h4 {
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 6px;
}
.pf-related-card-body h4 a { color: var(--pf-text); }
.pf-related-card-body h4 a:hover { color: var(--pf-blue); }
.pf-related-card-body .pf-related-meta {
	font-size: 11px;
	color: var(--pf-text-light);
}

/* ============================================================
   COMMENTS
   ============================================================ */
.pf-comments {
	background: var(--pf-card);
	border-radius: var(--pf-radius);
	box-shadow: var(--pf-shadow);
	padding: 28px 32px;
	margin-bottom: var(--pf-gap);
}
@media (max-width: 767px) { .pf-comments { padding: 20px 16px; } }

.pf-comments .comments-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 24px; }

.comment-list { list-style: none; }
.comment-list li { list-style: none; }
.comment-body { padding: 16px 0; border-bottom: 1px solid var(--pf-border); }
.comment-list > li:last-child .comment-body { border-bottom: none; }

.comment-author img.avatar { border-radius: 50%; border: 2px solid var(--pf-blue-light); }
.comment-author .fn a { color: var(--pf-text); font-weight: 700; }
.comment-author .fn a:hover { color: var(--pf-blue); }
.comment-meta a, .comment-metadata a { color: var(--pf-text-light); font-size: 12px; }
.comment-meta a:hover, .comment-metadata a:hover { color: var(--pf-blue); }
.reply a {
	color: var(--pf-blue);
	font-size: 12px;
	font-weight: 600;
}
.reply a:hover { color: var(--pf-blue-dark); text-decoration: underline; }

#respond { margin-top: 28px; }
#respond .comment-reply-title { font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
#respond .comment-form label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--pf-text);
	margin-bottom: 5px;
}
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"],
#respond textarea {
	width: 100%;
	border: 1px solid var(--pf-border);
	border-radius: var(--pf-radius-sm);
	padding: 10px 14px;
	font-size: 0.9rem;
	font-family: inherit;
	color: var(--pf-text);
	background: var(--pf-card);
	transition: border-color var(--pf-transition), box-shadow var(--pf-transition);
	box-sizing: border-box;
}
#respond input:focus, #respond textarea:focus {
	border-color: var(--pf-blue);
	box-shadow: 0 0 0 3px rgba(10,102,194,0.15);
	outline: none;
}
#respond .form-submit input[type="submit"] {
	background: var(--pf-blue);
	color: #fff;
	border: none;
	border-radius: var(--pf-radius-sm);
	padding: 10px 24px;
	font-size: 0.9rem;
	font-weight: 700;
	cursor: pointer;
	transition: background var(--pf-transition);
}
#respond .form-submit input[type="submit"]:hover { background: var(--pf-blue-dark); }

/* ============================================================
   SIDEBAR
   ============================================================ */
.pf-sidebar { display: flex; flex-direction: column; gap: 16px; }

.pf-widget {
	background: var(--pf-card);
	border-radius: var(--pf-radius);
	box-shadow: var(--pf-shadow);
	padding: 20px;
}
.pf-widget-title {
	font-size: 0.875rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--pf-text);
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--pf-blue);
}

.widget ul { list-style: none; }
.widget ul li a {
	display: block;
	padding: 7px 0;
	font-size: 0.9rem;
	color: var(--pf-text-muted);
	border-bottom: 1px solid var(--pf-border);
	transition: color var(--pf-transition), padding-left var(--pf-transition);
}
.widget ul li:last-child a { border-bottom: none; }
.widget ul li a:hover { color: var(--pf-blue); padding-left: 6px; }

.widget_search .search-form {
	display: flex;
}
.widget_search .search-field {
	flex: 1;
	border: 1px solid var(--pf-border);
	border-right: none;
	border-radius: var(--pf-radius-sm) 0 0 var(--pf-radius-sm);
	padding: 9px 12px;
	font-size: 0.875rem;
	color: var(--pf-text);
}
.widget_search .search-field:focus { border-color: var(--pf-blue); outline: none; }
.widget_search .search-submit {
	background: var(--pf-blue);
	color: #fff;
	border: none;
	padding: 9px 14px;
	border-radius: 0 var(--pf-radius-sm) var(--pf-radius-sm) 0;
	font-size: 0.875rem;
	cursor: pointer;
	transition: background var(--pf-transition);
}
.widget_search .search-submit:hover { background: var(--pf-blue-dark); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pf-pagination {
	display: flex;
	justify-content: center;
	margin: 8px 0 24px;
}
.pf-pagination .nav-links {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
	justify-content: center;
}
.pf-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border-radius: var(--pf-radius-sm);
	background: var(--pf-card);
	border: 1px solid var(--pf-border);
	color: var(--pf-text);
	font-size: 14px;
	font-weight: 500;
	transition: background var(--pf-transition), color var(--pf-transition), border-color var(--pf-transition);
}
.pf-pagination .page-numbers:hover {
	background: var(--pf-blue-light);
	color: var(--pf-blue);
	border-color: var(--pf-blue);
}
.pf-pagination .page-numbers.current {
	background: var(--pf-blue);
	color: #fff;
	border-color: var(--pf-blue);
}
@media (max-width: 768px) {
	.pf-pagination {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 56px;
		z-index: 9980;
		margin: 0;
		padding: 10px 16px;
		background: #fff;
		border-top: 1px solid #e2e8f0;
		box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
	}
	.pf-pagination .page-numbers {
		min-width: 32px;
		height: 32px;
		font-size: 13px;
	}
	/* Add bottom padding so content isn't hidden */
	body.blog #pf-content,
	body.archive #pf-content,
	body.search #pf-content {
		padding-bottom: 80px;
	}
}
@media (max-width: 480px) {
	.pf-pagination {
		right: 40px;
	}
}

/* ============================================================
   STATIC PAGE
   ============================================================ */
.pf-page {
	background: var(--pf-card);
	border-radius: var(--pf-radius);
	box-shadow: var(--pf-shadow);
	padding: 40px;
	margin-bottom: var(--pf-gap);
}
@media (max-width: 767px) { .pf-page { padding: 24px 20px; } }
.pf-page-title {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--pf-border);
}
.pf-page-content { font-size: 1.0625rem; line-height: 1.8; color: var(--pf-text); }
.pf-page-content > * + * { margin-top: 1.25em; }
.pf-page-content h2 { font-size: 1.4rem; margin-top: 1.8em; margin-bottom: 0.6em; color: var(--pf-text); }
.pf-page-content h3 { font-size: 1.15rem; margin-top: 1.5em; margin-bottom: 0.5em; color: var(--pf-blue-dark); }
.pf-page-content a { color: var(--pf-blue); text-decoration: underline; }
.pf-page-content a:hover { color: var(--pf-blue-dark); }
.pf-page-content ul { list-style: disc; padding-left: 1.5em; }
.pf-page-content ol { list-style: decimal; padding-left: 1.5em; }
.pf-page-content blockquote {
	border-left: 4px solid var(--pf-blue);
	background: var(--pf-blue-light);
	padding: 14px 18px 14px 22px;
	border-radius: 0 var(--pf-radius-sm) var(--pf-radius-sm) 0;
	margin: 1.5em 0;
	font-style: italic;
	color: var(--pf-text-muted);
}

/* ============================================================
   404 & NO RESULTS
   ============================================================ */
.pf-not-found {
	background: var(--pf-card);
	border-radius: var(--pf-radius);
	box-shadow: var(--pf-shadow);
	padding: 60px 40px;
	text-align: center;
	max-width: 560px;
	margin: 0 auto;
}
.pf-not-found-icon {
	font-size: 4rem;
	margin-bottom: 16px;
	opacity: 0.3;
}
.pf-not-found h1 { font-size: 5rem; font-weight: 900; color: var(--pf-blue); line-height: 1; margin-bottom: 8px; }
.pf-not-found h2 { font-size: 1.5rem; margin-bottom: 16px; }
.pf-not-found p { color: var(--pf-text-muted); margin-bottom: 24px; }
.pf-not-found .pf-btn { margin: 0 auto; }

/* ============================================================
   SEARCH RESULTS
   ============================================================ */
.pf-search-form-large {
	display: flex;
	gap: 0;
	margin-bottom: 28px;
}
.pf-search-form-large input[type="search"] {
	flex: 1;
	border: 2px solid var(--pf-border);
	border-right: none;
	border-radius: var(--pf-radius-sm) 0 0 var(--pf-radius-sm);
	padding: 12px 16px;
	font-size: 1rem;
	font-family: inherit;
	color: var(--pf-text);
}
.pf-search-form-large input:focus { border-color: var(--pf-blue); outline: none; }
.pf-search-form-large button {
	background: var(--pf-blue);
	color: #fff;
	border: none;
	padding: 12px 20px;
	border-radius: 0 var(--pf-radius-sm) var(--pf-radius-sm) 0;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: background var(--pf-transition);
}
.pf-search-form-large button:hover { background: var(--pf-blue-dark); }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.pf-breadcrumbs {
	font-size: 12px;
	color: var(--pf-text-light);
	margin-bottom: 14px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
}
.pf-breadcrumbs a { color: var(--pf-text-muted); font-weight: 500; }
.pf-breadcrumbs a:hover { color: var(--pf-blue); }
.pf-breadcrumbs .sep { opacity: 0.4; }

/* ============================================================
   FOOTER
   ============================================================ */
#pf-footer {
	background: var(--pf-navy);
	color: rgba(255,255,255,0.75);
	margin-top: auto;
}

.pf-footer-top {
	padding: 48px 0 36px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pf-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 32px;
}
@media (max-width: 900px) { .pf-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pf-footer-grid { grid-template-columns: 1fr; } }

.pf-footer-brand .pf-logo a { color: #fff; font-size: 1.1rem; }
.pf-footer-brand p {
	font-size: 0.875rem;
	line-height: 1.7;
	margin-top: 12px;
	color: rgba(255,255,255,0.55);
}

.pf-footer-col h4 {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255,255,255,0.9);
	margin-bottom: 14px;
}
.pf-footer-col ul { list-style: none; }
.pf-footer-col ul li { margin-bottom: 8px; }
.pf-footer-col ul li a {
	font-size: 0.875rem;
	color: rgba(255,255,255,0.55);
	transition: color var(--pf-transition);
}
.pf-footer-col ul li a:hover { color: #fff; }

.pf-footer-bottom {
	padding: 16px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.pf-footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); margin: 0; }
.pf-footer-bottom nav a {
	font-size: 12px;
	color: rgba(255,255,255,0.4);
	margin-left: 16px;
	transition: color var(--pf-transition);
}
.pf-footer-bottom nav a:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   WORDPRESS BLOCKS & ALIGN CLASSES
   ============================================================ */
.alignleft { float: left; margin-right: 1.5em; margin-bottom: 0.5em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 0.5em; }
.aligncenter { clear: both; display: block; margin-left: auto; margin-right: auto; }
.alignfull { width: 100%; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--pf-text-light); margin-top: 6px; text-align: center; }
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

/* Gutenberg blocks */
.wp-block-image img { border-radius: var(--pf-radius-sm); }
.wp-block-quote {
	border-left: 4px solid var(--pf-blue);
	background: var(--pf-blue-light);
	padding: 16px 20px 16px 24px;
	border-radius: 0 var(--pf-radius) var(--pf-radius) 0;
}
.wp-block-code {
	background: var(--pf-navy);
	color: #e2e8f0;
	border-radius: var(--pf-radius);
	padding: 16px 20px;
}
.wp-block-separator { border-color: var(--pf-border); }

/* ============================================================
   WOOCOMMERCE BASIC COMPATIBILITY
   ============================================================ */
.woocommerce-page .pf-page-hero h1 { font-size: 1.5rem; }
.woocommerce ul.products { list-style: none; padding: 0; }
.woocommerce ul.products li.product {
	background: var(--pf-card);
	border-radius: var(--pf-radius);
	box-shadow: var(--pf-shadow);
	overflow: hidden;
	padding: 0;
	transition: box-shadow var(--pf-transition), transform var(--pf-transition);
}
.woocommerce ul.products li.product:hover {
	box-shadow: var(--pf-shadow-hover);
	transform: translateY(-3px);
}
.woocommerce ul.products li.product a img {
	width: 100%;
	display: block;
}
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	padding: 12px 16px 4px;
	font-size: 1rem;
	color: var(--pf-text);
}
.woocommerce ul.products li.product .price {
	padding: 0 16px 12px;
	color: var(--pf-blue);
	font-weight: 700;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	background: var(--pf-blue);
	color: #fff;
	border: none;
	border-radius: var(--pf-radius-sm);
	padding: 10px 20px;
	font-weight: 700;
	cursor: pointer;
	transition: background var(--pf-transition);
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: var(--pf-blue-dark);
	color: #fff;
}

/* ============================================================
   PERFORMANCE — GPU HINTS & LAYOUT CONTAINMENT
   ============================================================ */

/* Contain layout/style on cards so browser only repaints the card, not the whole page */
.pf-post-card,
.pf-related-card,
.pf-widget,
.pf-article,
.pf-page,
.pf-author-box,
.pf-related,
.pf-comments {
	contain: layout style;
}

/* GPU-composite only the elements that animate */
.pf-post-card,
.pf-related-card {
	will-change: transform;
}

/* Remove animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	.pf-post-card,
	.pf-related-card {
		will-change: auto;
	}
}

/* Prevent layout shift for images by reserving space before load */
img {
	height: auto;
	max-width: 100%;
}
.pf-card-thumb img,
.pf-article-hero img,
.pf-related-card img {
	width: 100%;
	height: 100%;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.pf-text-center { text-align: center; }
.pf-mt-0 { margin-top: 0; }
.pf-hidden { display: none; }

/* ============================================================
   ADMIN BAR OFFSET
   ============================================================ */

/* ============================================================
   PREMIUM SINGLE POST EXPERIENCE
   ============================================================ */
.single-post #pf-content {
	padding-top: 40px;
}

.single-post .pf-single-wrap {
	max-width: 1240px;
	margin: 0 auto;
}

.single-post .pf-breadcrumbs {
	margin-bottom: 20px;
	padding: 0 10px;
}

.pf-reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 56px;
	z-index: 9970;
	height: 3px;
	background: rgba(148, 163, 184, 0.16);
	overflow: hidden;
}
.admin-bar .pf-reading-progress {
	top: 32px;
}
@media (max-width: 782px) {
	.admin-bar .pf-reading-progress { top: 46px; }
}
@media (max-width: 768px) {
	.pf-reading-progress { right: 44px; }
}
@media (max-width: 480px) {
	.pf-reading-progress { right: 40px; }
}

.pf-reading-progress-bar {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, #0A66C2 0%, #3B82F6 50%, #60A5FA 100%);
	transition: width 0.12s linear;
}

.pf-article-premium {
	overflow: visible;
	border-radius: 32px;
}

.pf-article-premium .pf-article-hero {
	padding: 18px 18px 0;
}

.pf-article-premium .pf-article-hero img {
	max-height: 620px;
	border-radius: 24px;
}

.pf-article-header {
	margin-bottom: 30px;
}

.pf-article-dek {
	font-size: clamp(1.1rem, 1.6vw, 1.35rem);
	line-height: 1.75;
	color: #475569;
	max-width: 60ch;
	margin-top: 18px;
}

/* ── Article meta bar (inline) ── */
.pf-article-meta-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid #E2E8F0;
}
.pf-meta-left {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	font-size: 0.82rem;
	color: #64748b;
	font-weight: 500;
}
.pf-meta-author-inline {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	color: #0f172a;
}
.pf-meta-sep {
	color: #cbd5e1;
}

/* ── Author box placeholder ── */
.pf-author-avatar-placeholder {
	width: 64px;
	height: 64px;
	background: #EFF6FF;
	border: 2px solid #DBEAFE;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Legacy (unused but kept for compat) */
.pf-article-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
	font-size: 13px;
	color: #475569;
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}

.pf-meta-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(148, 163, 184, 0.2);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.pf-meta-pill svg {
	width: 14px;
	height: 14px;
	opacity: 0.6;
}

.single-post .pf-article-body {
	padding: 44px 52px 52px;
}

.single-post .pf-article-title {
	font-size: clamp(2rem, 4.6vw, 2.75rem);
	line-height: 1;
	letter-spacing: -0.025em;
}

.single-post .pf-article-content {
	max-width: 760px;
	margin: 0 auto;
	font-size: 1.125rem;
	line-height: 1.95;
	text-align: justify;
}

.single-post .pf-article-content > p:first-of-type {
	font-size: 1.2rem;
	color: #334155;
}

.single-post .pf-article-content > p:first-of-type::first-letter {
	float: left;
	font-size: 4.3rem;
	line-height: 0.9;
	font-weight: 800;
	padding-right: 10px;
	color: #0A66C2;
}

.single-post .pf-article-content h2,
.single-post .pf-article-content h3,
.single-post .pf-article-content h4,
.single-post .pf-article-tags {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.single-post .pf-post-nav,
.single-post .pf-author-box,
.single-post .pf-related,
.single-post .pf-comments {
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
}

.single-post .pf-related-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

@media (max-width: 1024px) {
	.single-post .pf-article-body {
		padding: 32px 24px 36px;
	}
}

@media (max-width: 767px) {
	.single-post #pf-content {
		padding-top: 24px;
	}

	.single-post .pf-breadcrumbs {
		padding: 0;
	}

	.pf-article-premium .pf-article-hero {
		padding: 12px 12px 0;
	}

	.pf-article-premium .pf-article-hero img {
		border-radius: 20px;
	}

	.single-post .pf-article-title {
		max-width: none;
	}

	.single-post .pf-article-content > p:first-of-type::first-letter {
		font-size: 3.2rem;
		padding-right: 8px;
	}

	.single-post .pf-related-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   PREMIUM OVERRIDES
   ============================================================ */
:root {
	--pf-surface: rgba(255,255,255,0.78);
	--pf-surface-strong: rgba(255,255,255,0.92);
	--pf-premium-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
	--pf-premium-border: rgba(255,255,255,0.72);
}

body {
	background:
		radial-gradient(circle at top left, rgba(10, 102, 194, 0.12), transparent 32%),
		radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 28%),
		linear-gradient(180deg, #f6f9fc 0%, #eef3f8 55%, #f4f7fb 100%);
}

.pf-btn {
	border-radius: 999px;
}

.pf-btn-primary {
	background: linear-gradient(135deg, #0A66C2 0%, #2F7FD6 55%, #4DA3FF 100%);
	box-shadow: 0 14px 30px rgba(10, 102, 194, 0.24);
}

.pf-btn-primary:hover {
	box-shadow: 0 18px 34px rgba(10, 102, 194, 0.28);
}

.pf-page-hero,
.pf-post-card,
.pf-article,
.pf-page,
.pf-widget,
.pf-author-box,
.pf-related,
.pf-comments,
.pf-related-card,
.woocommerce ul.products li.product {
	background: var(--pf-surface-strong);
	border: 1px solid rgba(255,255,255,0.8);
	border-radius: 24px;
	box-shadow: var(--pf-premium-shadow);
}
/* post-nav is fixed at bottom — no card styling */

.pf-post-card:hover,
.pf-related-card:hover,
.woocommerce ul.products li.product:hover {
	transform: translateY(-5px);
}

.pf-card-thumb,
.pf-related-card,
.pf-article-hero img,
.pf-page img {
	border-radius: 20px;
}

.pf-article::before {
	height: 5px;
	background: linear-gradient(90deg, #0A66C2 0%, #3B82F6 55%, #93C5FD 100%);
}

.pf-section-title,
.pf-page-title,
.pf-article-title {
	letter-spacing: -0.03em;
}

.pf-page-title,
.pf-article-title {
	color: #0f172a;
}

.pf-article-body,
.pf-page,
.pf-related,
.pf-comments {
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

#pf-footer {
	background:
		radial-gradient(circle at top center, rgba(10,102,194,0.18), transparent 32%),
		linear-gradient(180deg, #0b1220 0%, #09111d 100%);
}

/* Homepage full-width layout */
#pf-content.pf-content-front {
	padding-top: 0;
}

#pf-content .pf-container-front {
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

body.home #pf-content.pf-content-front,
body.blog #pf-content.pf-content-front {
	padding-top: 0;
}

.pf-front-page,
.pf-front-stream {
	position: relative;
}

.pf-front-cover {
	position: relative;
	min-height: clamp(340px, 48vw, 680px);
	overflow: hidden;
}

.pf-front-cover img {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
}

.pf-front-cover-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(6, 12, 24, 0.12) 0%, rgba(6, 12, 24, 0.46) 100%),
		radial-gradient(circle at top right, rgba(10, 102, 194, 0.34), transparent 30%);
}

.pf-front-shell {
	position: relative;
	padding: 0 0 72px;
}

.pf-front-page.has-cover .pf-front-shell {
	margin-top: -110px;
	z-index: 2;
}

.pf-front-content {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0;
}

.pf-front-content-inner > * + * {
	margin-top: 28px;
}

.pf-front-content-inner > .wp-block-group:not(.alignfull):not(.alignwide),
.pf-front-content-inner > .wp-block-columns:not(.alignfull):not(.alignwide),
.pf-front-content-inner > .wp-block-media-text:not(.alignfull):not(.alignwide),
.pf-front-content-inner > .wp-block-kadence-rowlayout:not(.alignfull):not(.alignwide) {
	background: var(--pf-surface);
	border: 1px solid var(--pf-premium-border);
	border-radius: 30px;
	box-shadow: var(--pf-premium-shadow);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	padding: clamp(24px, 4vw, 54px);
}

.pf-front-content-inner > p,
.pf-front-content-inner > h1,
.pf-front-content-inner > h2,
.pf-front-content-inner > h3,
.pf-front-content-inner > h4,
.pf-front-content-inner > ul,
.pf-front-content-inner > ol,
.pf-front-content-inner > blockquote,
.pf-front-content-inner > .wp-block-buttons,
.pf-front-content-inner > .wp-block-image {
	max-width: 1220px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 8px;
	padding-right: 8px;
}

.pf-front-content-inner > h1,
.pf-front-content-inner > h2 {
	font-size: clamp(2.2rem, 4vw, 4.4rem);
	line-height: 1.04;
	letter-spacing: -0.05em;
	color: #0f172a;
}

.pf-front-content-inner > h3 {
	font-size: clamp(1.3rem, 2.2vw, 2rem);
	color: #0f172a;
}

.pf-front-content-inner p {
	font-size: clamp(1rem, 1.25vw, 1.12rem);
	line-height: 1.85;
	color: #475569;
}

.pf-front-content-inner .wp-block-button__link,
.pf-front-content-inner .wp-element-button {
	background: linear-gradient(135deg, #0A66C2 0%, #3B82F6 100%);
	color: #fff;
	border-radius: 999px;
	padding: 14px 26px;
	font-weight: 700;
	box-shadow: 0 16px 30px rgba(10, 102, 194, 0.22);
}

.pf-front-content-inner .wp-block-button__link:hover,
.pf-front-content-inner .wp-element-button:hover {
	color: #fff;
	transform: translateY(-1px);
}

.pf-front-content-inner .alignwide {
	max-width: 1360px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0;
	padding-right: 0;
}

.pf-front-content-inner .alignfull {
	margin-left: 0;
	margin-right: 0;
	width: 100%;
}

.pf-front-content-inner .wp-block-cover,
.pf-front-content-inner .wp-block-group.alignfull {
	overflow: hidden;
}

.pf-front-hero {
	padding: 0 0 46px;
	background:
		radial-gradient(circle at top left, rgba(10,102,194,0.16), transparent 28%),
		linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.42));
}

.pf-front-hero-inner,
.pf-front-section-head {
	max-width: 1280px;
	margin: 0 auto;
	padding-left: 0;
	padding-right: 0;
}

.pf-front-kicker {
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #0A66C2;
	margin-bottom: 14px;
}

.pf-front-hero-title {
	font-size: clamp(2.8rem, 5vw, 5.6rem);
	line-height: 0.95;
	letter-spacing: -0.06em;
	color: #0f172a;
	max-width: 11ch;
}

.pf-front-hero-copy {
	font-size: clamp(1.05rem, 1.4vw, 1.2rem);
	line-height: 1.8;
	color: #475569;
	max-width: 58ch;
	margin-top: 20px;
}

.pf-front-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.pf-front-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.pf-front-trust span {
	background: rgba(255,255,255,0.74);
	border: 1px solid rgba(255,255,255,0.8);
	border-radius: 999px;
	padding: 10px 14px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #334155;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.pf-front-stream {
	padding: 0 0 72px;
}

.pf-front-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 16px;
	padding: 0 0 26px;
}

.pf-front-section-head h2 {
	font-size: clamp(2rem, 3vw, 3rem);
	letter-spacing: -0.04em;
}

.pf-posts-grid-front {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 740px) {
	.pf-posts-grid-front {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1200px) {
	.pf-posts-grid-front {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.pf-front-page.has-cover .pf-front-shell {
		margin-top: -44px;
	}

	.pf-front-content {
		padding: 0;
	}

	.pf-front-hero {
		padding: 0 0 34px;
	}
}

/* ============================================================
   RIGHT CTA SIDEBAR (Full-height static column)
   ============================================================ */
.pf-right-sidebar {
	position: sticky;
	top: 0;
	right: 0;
	width: 56px;
	min-width: 56px;
	height: 100vh;
	z-index: 9990;
	display: flex;
	flex-direction: column;
	background: #1e293b;
	border-left: 1px solid rgba(255,255,255,0.06);
	order: 2;
}

/* ── Brand / Logo at top (white background) ── */
.pf-rsb-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 16px 6px 14px;
	text-decoration: none;
	background: #fff;
	border-bottom: 1px solid #e2e8f0;
	flex: 1;
	justify-content: flex-start;
	min-height: 0;
	overflow: hidden;
}
.pf-rsb-logo-img {
	width: 30px;
	height: 30px;
	border-radius: 6px;
	object-fit: contain;
	flex-shrink: 0;
}
.pf-rsb-logo-icon {
	width: 30px;
	height: 30px;
	background: linear-gradient(135deg, #0A66C2, #3B82F6);
	color: #fff;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: -0.05em;
	flex-shrink: 0;
}
.pf-rsb-brand-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	transition: color 0.2s;
}
.pf-rsb-brand-text span {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #0f172a;
	white-space: nowrap;
}
.pf-rsb-brand-text span:last-child {
	font-weight: 600;
	color: #0A66C2;
}
.pf-rsb-brand:hover .pf-rsb-brand-text span {
	color: #0A66C2;
}

/* ── Shared button base ── */
.pf-rsb-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	position: relative;
}
.pf-rsb-label {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	white-space: nowrap;
}

/* ── MENU button ── */
.pf-rsb-menu {
	background: #1e293b;
	color: #fff;
	flex-direction: column;
	gap: 5px;
	height: 72px;
	flex-shrink: 0;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pf-rsb-menu:hover {
	background: #334155;
}
.pf-rsb-menu .pf-rsb-menu-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}
.pf-rsb-menu .pf-rsb-label {
	writing-mode: horizontal-tb;
	font-size: 8px;
	letter-spacing: 0.12em;
}

/* ── GET STARTED button ── */
.pf-rsb-getstarted {
	background: #0A66C2;
	color: #fff;
	flex-direction: column;
	gap: 0;
	flex: 0 0 auto;
	padding: 28px 0;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pf-rsb-getstarted:hover {
	background: #0b5faf;
}

/* ── BLOG button ── */
.pf-rsb-blog {
	background: #1e293b;
	color: #fff;
	flex-direction: column;
	gap: 5px;
	height: 72px;
	flex-shrink: 0;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pf-rsb-blog:hover {
	background: #334155;
}
.pf-rsb-blog .pf-rsb-label {
	writing-mode: horizontal-tb;
	font-size: 8px;
	letter-spacing: 0.12em;
}

/* ── WhatsApp button (square) ── */
.pf-rsb-whatsapp {
	background: #25D366;
	color: #fff;
	height: 56px;
	flex-shrink: 0;
}
.pf-rsb-whatsapp:hover {
	background: #1da851;
}

/* ============================================================
   NAVIGATION PANEL (Menu Sidebar)
   ============================================================ */
.pf-nav-panel {
	position: fixed;
	inset: 0;
	z-index: 99998;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s 0.3s, opacity 0.3s ease;
}
.pf-nav-panel.active {
	visibility: visible;
	opacity: 1;
	transition: visibility 0s, opacity 0.3s ease;
}
.pf-nav-panel-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 40, 80, 0.35);
	backdrop-filter: blur(3px);
}
.pf-nav-panel-content {
	position: absolute;
	right: 56px;
	top: 0;
	bottom: 0;
	width: 420px;
	max-width: calc(100vw - 56px);
	background: linear-gradient(180deg, #EAF4FF 0%, #F0F7FF 40%, #fff 100%);
	box-shadow: -6px 0 30px rgba(10, 102, 194, 0.1);
	overflow-y: auto;
	padding: 28px 24px;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.pf-nav-panel.active .pf-nav-panel-content {
	transform: translateX(0);
}

.pf-nav-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
}
.pf-nav-panel-title {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #0A66C2;
}
.pf-nav-panel-close {
	background: none;
	border: none;
	font-size: 28px;
	color: #4A90C4;
	cursor: pointer;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background 0.15s;
}
.pf-nav-panel-close:hover {
	background: rgba(10, 102, 194, 0.08);
	color: #0A66C2;
}

/* Nav card buttons */
.pf-nav-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 10px;
}
.pf-nav-card {
	display: flex;
	align-items: center;
	padding: 16px 18px;
	background: rgba(255, 255, 255, 0.85);
	border: 1.5px solid #BFDBFE;
	border-radius: 10px;
	font-size: 0.88rem;
	font-weight: 700;
	color: #1d2226;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: all 0.15s;
}
.pf-nav-card:hover {
	border-color: #0A66C2;
	color: #0A66C2;
	background: #EAF4FF;
	box-shadow: 0 4px 12px rgba(10, 102, 194, 0.1);
}

/* Services expandable card */
.pf-nav-services-card {
	background: rgba(255, 255, 255, 0.85);
	border: 1.5px solid #BFDBFE;
	border-radius: 10px;
	margin-bottom: 10px;
	overflow: hidden;
}
.pf-nav-services-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 16px 18px;
	background: none;
	border: none;
	font-size: 0.88rem;
	font-weight: 700;
	color: #1d2226;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: color 0.15s;
}
.pf-nav-services-toggle:hover {
	color: #0A66C2;
}
.pf-nav-chevron {
	transition: transform 0.25s ease;
	color: #5BA3D9;
}
.pf-nav-services-toggle.open .pf-nav-chevron {
	transform: rotate(180deg);
}

.pf-nav-services-list {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 18px;
}
.pf-nav-services-list.open {
	max-height: 400px;
	padding: 0 18px 16px;
}
.pf-nav-services-list a {
	display: block;
	padding: 7px 0;
	font-size: 0.88rem;
	color: #475569;
	text-decoration: none;
	position: relative;
	padding-left: 14px;
	transition: color 0.15s;
}
.pf-nav-services-list a::before {
	content: '\2022';
	position: absolute;
	left: 0;
	color: #93C5FD;
}
.pf-nav-services-list a:hover {
	color: #0A66C2;
}

/* ============================================================
   SIDEBAR PANEL — Premium Start Here Form
   ============================================================ */
.pf-sidebar-panel {
	position: fixed;
	inset: 0;
	z-index: 99999;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s 0.3s, opacity 0.3s ease;
}
.pf-sidebar-panel.active {
	visibility: visible;
	opacity: 1;
	transition: visibility 0s, opacity 0.3s ease;
}
.pf-sp-overlay {
	position: absolute;
	inset: 0;
	background: rgba(6, 20, 50, 0.45);
	backdrop-filter: blur(6px);
}
.pf-sp-content {
	position: absolute;
	right: -460px;
	top: 0;
	bottom: 0;
	width: 440px;
	max-width: 100vw;
	background: #fff;
	box-shadow: -12px 0 60px rgba(10, 102, 194, 0.12);
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pf-sidebar-panel.active .pf-sp-content {
	right: 0;
}

/* ── Top bar (brand + close) ── */
.pf-sp-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	border-bottom: 1px solid #f0f4f8;
	flex-shrink: 0;
}
.pf-sp-topbar-brand {
	display: flex;
	align-items: center;
	gap: 10px;
}
.pf-sp-topbar-icon {
	width: 30px;
	height: 30px;
	background: linear-gradient(135deg, #0A66C2, #3B82F6);
	color: #fff;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: -0.05em;
}
.pf-sp-topbar-text {
	font-size: 0.82rem;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: -0.01em;
}
.pf-sp-close {
	background: none;
	border: 1px solid #e2e8f0;
	color: #94a3b8;
	cursor: pointer;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	transition: all 0.15s;
}
.pf-sp-close:hover {
	background: #f1f5f9;
	color: #334155;
	border-color: #cbd5e1;
}

/* ── Progress bar ── */
.pf-sp-progressbar {
	padding: 20px 24px 0;
	flex-shrink: 0;
}
.pf-sp-pbar-track {
	height: 3px;
	background: #e2e8f0;
	border-radius: 99px;
	overflow: hidden;
	margin-bottom: 12px;
}
.pf-sp-pbar-fill {
	height: 100%;
	background: linear-gradient(90deg, #0A66C2, #3B82F6);
	border-radius: 99px;
	transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pf-sp-pbar-dots {
	display: flex;
	justify-content: space-between;
}
.pf-sp-dot {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	background: #f1f5f9;
	color: #94a3b8;
	border: 2px solid #e2e8f0;
	transition: all 0.3s ease;
}
.pf-sp-dot.active {
	background: #DBEAFE;
	color: #0A66C2;
	border-color: #93C5FD;
}
.pf-sp-dot.current {
	background: #0A66C2;
	color: #fff;
	border-color: #0A66C2;
	box-shadow: 0 0 0 4px rgba(10, 102, 194, 0.15);
}

/* ── Body area ── */
.pf-sp-body {
	flex: 1;
	padding: 24px;
	overflow-y: auto;
}

/* ── Steps ── */
.pf-sp-step {
	display: none;
}
.pf-sp-step.active {
	display: block;
	animation: pfSlideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes pfSlideUp {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ── Hero block (icon + title + subtitle per step) ── */
.pf-sp-hero-block {
	text-align: center;
	margin-bottom: 24px;
}
.pf-sp-emoji-ring {
	width: 72px;
	height: 72px;
	margin: 0 auto 16px;
	background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
	border: 2px solid #BFDBFE;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pf-sp-hero-block h2 {
	font-size: 1.4rem;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.02em;
	margin-bottom: 6px;
}
.pf-sp-hero-block p {
	font-size: 0.88rem;
	color: #64748b;
	line-height: 1.55;
	max-width: 32ch;
	margin: 0 auto;
}

/* ── WhatsApp skip button ── */
.pf-sp-wa-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 13px;
	background: #25D366;
	color: #fff;
	font-weight: 700;
	font-size: 0.88rem;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}
.pf-sp-wa-btn:hover {
	background: #1ebe5b;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.pf-sp-divider {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 18px 0;
	font-size: 12px;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 600;
}
.pf-sp-divider::before,
.pf-sp-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #e2e8f0;
}

/* ── Glass card wrapper ── */
.pf-sp-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 16px;
	margin-bottom: 16px;
}
.pf-sp-label {
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	color: #64748b;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.pf-sp-input {
	width: 100%;
	padding: 13px 14px;
	border: 1.5px solid #e2e8f0;
	border-radius: 10px;
	font-size: 0.95rem;
	color: #0f172a;
	background: #fff;
	transition: all 0.2s;
	font-family: inherit;
}
.pf-sp-input:focus {
	outline: none;
	border-color: #3B82F6;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}
.pf-sp-input-lg {
	font-size: 1.1rem;
	padding: 16px;
	text-align: center;
	font-weight: 600;
	letter-spacing: 0.02em;
}

/* ── Service selection buttons ── */
.pf-sp-services {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.pf-sp-service-btn {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border: 1.5px solid #e2e8f0;
	border-radius: 12px;
	background: #fff;
	color: #334155;
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	text-align: left;
}
.pf-sp-svc-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.2s;
}
.pf-sp-svc-icon svg {
	stroke: #64748b;
	transition: stroke 0.2s;
}
.pf-sp-svc-text {
	flex: 1;
}
.pf-sp-svc-check {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	background: #e2e8f0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.2s;
}
.pf-sp-svc-check svg {
	stroke: transparent;
	transition: stroke 0.2s;
}
.pf-sp-service-btn:hover {
	border-color: #93C5FD;
	background: #f8fafc;
}
.pf-sp-service-btn.selected {
	border-color: #3B82F6;
	background: #EFF6FF;
}
.pf-sp-service-btn.selected .pf-sp-svc-icon {
	background: #DBEAFE;
}
.pf-sp-service-btn.selected .pf-sp-svc-icon svg {
	stroke: #0A66C2;
}
.pf-sp-service-btn.selected .pf-sp-svc-check {
	background: #0A66C2;
}
.pf-sp-service-btn.selected .pf-sp-svc-check svg {
	stroke: #fff;
}

/* ── Contact method cards ── */
.pf-sp-contact-methods {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.pf-sp-method-btn {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
	border: 1.5px solid #e2e8f0;
	border-radius: 14px;
	background: #fff;
	cursor: pointer;
	transition: all 0.2s;
	text-align: left;
}
.pf-sp-method-btn:hover {
	border-color: #93C5FD;
	background: #f8fafc;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(10, 102, 194, 0.08);
}
.pf-sp-method-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.pf-sp-method-wa { background: #eff6ff; }
.pf-sp-method-em { background: #eff6ff; }
.pf-sp-method-so { background: #eff6ff; }
.pf-sp-method-label {
	font-size: 0.95rem;
	font-weight: 700;
	color: #0f172a;
	display: block;
}
.pf-sp-method-hint {
	font-size: 0.78rem;
	color: #94a3b8;
	display: block;
	margin-top: 2px;
}

/* ── Navigation ── */
.pf-sp-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid #f0f4f8;
}
.pf-sp-nav:has(.pf-sp-back) {
	justify-content: space-between;
}
.pf-sp-btn-next,
.pf-sp-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 36px;
	background: #0A66C2;
	color: #fff;
	font-weight: 700;
	font-size: 0.92rem;
	border: none;
	border-radius: 0;
	cursor: pointer;
	transition: all 0.2s;
	box-shadow: 0 4px 14px rgba(10, 102, 194, 0.2);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.pf-sp-btn-next:hover,
.pf-sp-submit:hover {
	background: #004182;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(10, 102, 194, 0.3);
}
.pf-sp-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 11px 18px;
	background: #fff;
	border: 1.5px solid #e2e8f0;
	border-radius: 12px;
	color: #64748b;
	font-weight: 600;
	font-size: 0.85rem;
	cursor: pointer;
	transition: all 0.15s;
}
.pf-sp-back:hover {
	border-color: #cbd5e1;
	color: #334155;
	background: #f8fafc;
}

/* ── Captcha ── */
.pf-sp-captcha-card {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.pf-sp-captcha-label {
	font-size: 0.82rem;
	font-weight: 600;
	color: #64748b;
}
.pf-sp-captcha-q {
	font-size: 1rem;
	font-weight: 800;
	color: #0f172a;
}
.pf-sp-captcha-input {
	width: 64px;
	padding: 10px;
	border: 1.5px solid #e2e8f0;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	color: #0f172a;
	background: #fff;
	transition: all 0.2s;
	font-family: inherit;
}
.pf-sp-captcha-input:focus {
	outline: none;
	border-color: #3B82F6;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* ── Success state ── */
.pf-sp-success-step {
	text-align: center;
	padding-top: 32px;
}
.pf-sp-success-anim {
	margin-bottom: 24px;
}
.pf-sp-success-circle {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0A66C2, #3B82F6);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	box-shadow: 0 8px 30px rgba(10, 102, 194, 0.25);
	animation: pfPulseIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes pfPulseIn {
	0% { transform: scale(0); opacity: 0; }
	60% { transform: scale(1.15); }
	100% { transform: scale(1); opacity: 1; }
}
.pf-sp-success-step h2 {
	font-size: 1.5rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 10px;
	letter-spacing: -0.02em;
}
.pf-sp-success-step p {
	font-size: 0.9rem;
	color: #64748b;
	line-height: 1.6;
	max-width: 30ch;
	margin: 0 auto 24px;
}
.pf-sp-success-wa {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: #25D366;
	color: #fff;
	font-weight: 700;
	font-size: 0.88rem;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.2s;
	box-shadow: 0 4px 14px rgba(37, 211, 102, 0.2);
}
.pf-sp-success-wa:hover {
	background: #1ebe5b;
	color: #fff;
	transform: translateY(-1px);
}

/* ============================================================
   LEAD CAPTURE POPUP — Premium Redesign
   ============================================================ */
.pf-lead-popup {
	position: fixed;
	inset: 0;
	z-index: 99999;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s 0.3s, opacity 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pf-lead-popup.active {
	visibility: visible;
	opacity: 1;
	transition: visibility 0s, opacity 0.3s ease;
}
.pf-lead-overlay {
	position: absolute;
	inset: 0;
	background: rgba(6, 20, 50, 0.5);
	backdrop-filter: blur(6px);
}
.pf-lead-modal {
	position: relative;
	width: 500px;
	max-width: 94vw;
	max-height: 92vh;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 24px 80px rgba(10, 102, 194, 0.15), 0 0 0 1px rgba(0,0,0,0.04);
	overflow: hidden;
	transform: scale(0.95) translateY(10px);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.pf-lead-popup.active .pf-lead-modal {
	transform: scale(1) translateY(0);
}

/* ── Top bar ── */
.pf-lead-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
	background: #0f172a;
	flex-shrink: 0;
}
.pf-lead-topbar-left {
	display: flex;
	align-items: center;
	gap: 12px;
}
.pf-lead-topbar-icon {
	width: 28px;
	height: 28px;
	background: linear-gradient(135deg, #0A66C2, #3B82F6);
	color: #fff;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 900;
}
.pf-lead-topbar-badge {
	font-size: 0.82rem;
	font-weight: 700;
	color: #60A5FA;
}
.pf-lead-close {
	background: rgba(255,255,255,0.08);
	border: none;
	color: #94a3b8;
	cursor: pointer;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	transition: all 0.15s;
}
.pf-lead-close:hover {
	background: rgba(255,255,255,0.15);
	color: #fff;
}

/* ── Body ── */
.pf-lead-body {
	flex: 1;
	overflow-y: auto;
	padding: 24px;
}

/* ── Sections with step numbers ── */
.pf-lead-section {
	margin-bottom: 22px;
}
.pf-lead-section-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}
.pf-lead-step-num {
	width: 24px;
	height: 24px;
	background: #0A66C2;
	color: #fff;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 800;
	flex-shrink: 0;
}
.pf-lead-section-head label {
	font-size: 0.88rem;
	font-weight: 700;
	color: #0f172a;
}

/* ── Input fields ── */
.pf-lead-input {
	width: 100%;
	padding: 13px 14px;
	border: 1.5px solid #e2e8f0;
	border-radius: 10px;
	font-size: 0.92rem;
	color: #0f172a;
	background: #f8fafc;
	transition: all 0.2s;
	font-family: inherit;
}
.pf-lead-input:focus {
	outline: none;
	border-color: #3B82F6;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
	background: #fff;
}

/* ── Contact method buttons ── */
.pf-lead-methods {
	display: flex;
	gap: 8px;
	margin-bottom: 10px;
}
.pf-lead-method {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
	padding: 11px 12px;
	border: 1.5px solid #e2e8f0;
	border-radius: 10px;
	background: #fff;
	color: #475569;
	font-size: 0.8rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	justify-content: center;
}
.pf-lead-method-icon {
	width: 28px;
	height: 28px;
	background: #f1f5f9;
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.2s;
}
.pf-lead-method-icon svg {
	stroke: #64748b;
	transition: stroke 0.2s;
}
.pf-lead-method:hover {
	border-color: #93C5FD;
}
.pf-lead-method.active {
	border-color: #0A66C2;
	background: #EFF6FF;
	color: #0A66C2;
}
.pf-lead-method.active .pf-lead-method-icon {
	background: #DBEAFE;
}
.pf-lead-method.active .pf-lead-method-icon svg {
	stroke: #0A66C2;
}

/* Contact inputs */
.pf-lead-contact-inputs {
	position: relative;
}
.pf-lead-contact-input {
	display: none;
}
.pf-lead-contact-input.active {
	display: block;
}

/* ── Urgency buttons ── */
.pf-lead-urgency-row {
	display: flex;
	gap: 8px;
}
.pf-lead-urgency-btn {
	flex: 1;
	padding: 10px 8px;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
	background: #fff;
	color: #475569;
	font-size: 0.78rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s;
	text-align: center;
}
.pf-lead-urgency-btn:hover {
	border-color: #93C5FD;
}
.pf-lead-urgency-btn.active {
	border-color: #0A66C2;
	background: #0A66C2;
	color: #fff;
}

/* ── Consultation toggle switch ── */
.pf-lead-consult-section {
	margin-bottom: 20px;
}
.pf-lead-consult-toggle {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	font-size: 0.88rem;
	font-weight: 600;
	color: #334155;
}
.pf-lead-consult-toggle input {
	display: none;
}
.pf-lead-consult-switch {
	width: 40px;
	height: 22px;
	background: #e2e8f0;
	border-radius: 11px;
	position: relative;
	transition: background 0.2s;
	flex-shrink: 0;
}
.pf-lead-consult-switch::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 16px;
	height: 16px;
	background: #fff;
	border-radius: 50%;
	transition: transform 0.2s;
	box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.pf-lead-consult-toggle input:checked + .pf-lead-consult-switch {
	background: #0A66C2;
}
.pf-lead-consult-toggle input:checked + .pf-lead-consult-switch::after {
	transform: translateX(18px);
}

/* ── Submit button ── */
.pf-lead-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px;
	background: #0A66C2;
	color: #fff;
	font-weight: 700;
	font-size: 0.88rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: none;
	border-radius: 0;
	cursor: pointer;
	transition: all 0.2s;
	box-shadow: 0 4px 14px rgba(10, 102, 194, 0.2);
}
.pf-lead-submit:hover {
	background: #004182;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(10, 102, 194, 0.3);
}
.pf-lead-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* ── Success state ── */
.pf-lead-success {
	text-align: center;
	padding: 32px 0 16px;
}
.pf-lead-success-circle {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0A66C2, #3B82F6);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	box-shadow: 0 8px 24px rgba(10, 102, 194, 0.25);
	animation: pfPulseIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pf-lead-success h3 {
	font-size: 1.4rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 8px;
}
.pf-lead-success p {
	color: #64748b;
	line-height: 1.6;
	font-size: 0.9rem;
	margin-bottom: 20px;
}
.pf-lead-success-wa {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	background: #25D366;
	color: #fff;
	font-weight: 700;
	font-size: 0.82rem;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.2s;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}
.pf-lead-success-wa:hover {
	background: #1ebe5b;
	color: #fff;
	transform: translateY(-1px);
}

/* ── Step indicator bar ── */
.pf-lead-steps-bar {
	display: flex;
	align-items: center;
	gap: 0;
	padding: 18px 24px 0;
}
.pf-lead-step-dot {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #e2e8f0;
	color: #94a3b8;
	font-size: 12px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
	border: 2px solid #e2e8f0;
}
.pf-lead-step-dot.active {
	background: #0A66C2;
	color: #fff;
	border-color: #0A66C2;
}
.pf-lead-step-line {
	flex: 1;
	height: 3px;
	background: #e2e8f0;
	border-radius: 99px;
	overflow: hidden;
	margin: 0 6px;
}
.pf-lead-step-line-fill {
	display: block;
	height: 100%;
	width: 0;
	background: #0A66C2;
	border-radius: 99px;
	transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Pages (step 1 / step 2) ── */
.pf-lead-page {
	display: none;
}
.pf-lead-page.active {
	display: block;
	animation: pfLeadFadeIn 0.3s ease;
}
@keyframes pfLeadFadeIn {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ── Continue button (step 1) ── */
.pf-lead-continue {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px;
	background: #0A66C2;
	color: #fff;
	font-weight: 700;
	font-size: 0.88rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: none;
	border-radius: 0;
	cursor: pointer;
	transition: all 0.2s;
	box-shadow: 0 4px 14px rgba(10, 102, 194, 0.2);
}
.pf-lead-continue:hover {
	background: #004182;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(10, 102, 194, 0.3);
}

/* ── Step 2 confirmation line ── */
.pf-lead-s2-confirmation {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 16px;
	background: #EFF6FF;
	border: 1px solid #DBEAFE;
	border-radius: 10px;
	margin-bottom: 24px;
}
.pf-lead-s2-confirmation p {
	font-size: 0.9rem;
	font-weight: 700;
	color: #0A66C2;
	margin: 0;
}
.pf-lead-s2-title {
	text-align: center;
	font-size: 1.1rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 6px;
}

/* ── Extra services (step 2) ── */
.pf-lead-extra-hint {
	font-size: 0.82rem;
	color: #94a3b8;
	margin: 0 0 16px;
	text-align: center;
}
.pf-lead-extra-services {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.pf-lead-extra-btn {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
	border: 1.5px solid #e2e8f0;
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	transition: all 0.2s;
	text-align: left;
}
.pf-lead-extra-btn:hover {
	border-color: #93C5FD;
	background: #f8fafc;
}
.pf-lead-extra-check {
	width: 24px;
	height: 24px;
	border-radius: 6px;
	background: #f1f5f9;
	border: 1.5px solid #e2e8f0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.2s;
}
.pf-lead-extra-check svg {
	stroke: transparent;
	transition: stroke 0.2s;
}
.pf-lead-extra-icon {
	width: 40px;
	height: 40px;
	background: #f1f5f9;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.2s;
}
.pf-lead-extra-icon svg {
	stroke: #64748b;
	transition: stroke 0.2s;
}
.pf-lead-extra-text {
	flex: 1;
	font-size: 0.92rem;
	font-weight: 600;
	color: #334155;
}

/* Selected state */
.pf-lead-extra-btn.selected {
	border-color: #0A66C2;
	background: #EFF6FF;
}
.pf-lead-extra-btn.selected .pf-lead-extra-check {
	background: #0A66C2;
	border-color: #0A66C2;
}
.pf-lead-extra-btn.selected .pf-lead-extra-check svg {
	stroke: #fff;
}
.pf-lead-extra-btn.selected .pf-lead-extra-icon {
	background: #DBEAFE;
}
.pf-lead-extra-btn.selected .pf-lead-extra-icon svg {
	stroke: #0A66C2;
}
.pf-lead-extra-btn.selected .pf-lead-extra-text {
	color: #0A66C2;
}

/* ── Step 2 actions (back + submit) ── */
.pf-lead-s2-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid #f0f4f8;
}
.pf-lead-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 20px;
	background: #fff;
	border: 1.5px solid #e2e8f0;
	border-radius: 0;
	color: #64748b;
	font-weight: 600;
	font-size: 0.85rem;
	cursor: pointer;
	transition: all 0.15s;
}
.pf-lead-back:hover {
	border-color: #cbd5e1;
	color: #334155;
	background: #f8fafc;
}
.pf-lead-s2-actions .pf-lead-submit {
	flex: 1;
}

/* ── Responsive ── */
@media (max-width: 520px) {
	.pf-lead-modal {
		max-width: 100vw;
		max-height: 100vh;
		border-radius: 0;
		width: 100%;
		height: 100%;
	}
	.pf-lead-body {
		padding: 20px 18px;
	}
	.pf-lead-methods {
		flex-direction: column;
	}
	.pf-lead-urgency-row {
		flex-direction: column;
	}
}

/* ============================================================
   HOMEPAGE CTA SECTIONS
   ============================================================ */
.pf-home-cta-bar {
	background: linear-gradient(135deg, #0A66C2 0%, #2B7ED5 50%, #5DA9FF 100%);
	padding: 48px 24px;
	text-align: center;
	border-radius: 24px;
	margin: 40px auto;
	max-width: 1280px;
	box-shadow: 0 20px 50px rgba(10, 102, 194, 0.25);
}
.pf-home-cta-bar h2 {
	color: #fff;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	letter-spacing: -0.03em;
	margin-bottom: 12px;
}
.pf-home-cta-bar p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.05rem;
	margin-bottom: 24px;
	max-width: 50ch;
	margin-left: auto;
	margin-right: auto;
}
.pf-home-cta-bar .pf-btn {
	background: #fff;
	color: #0A66C2;
	font-weight: 700;
	padding: 14px 28px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 1rem;
	border: none;
	cursor: pointer;
	transition: all 0.15s;
	text-decoration: none;
}
.pf-home-cta-bar .pf-btn:hover {
	background: #f0f7ff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	color: #004182;
}

.pf-home-services {
	padding: 48px 0;
	max-width: 1280px;
	margin: 0 auto;
}
.pf-home-services h2 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	letter-spacing: -0.03em;
	text-align: center;
	margin-bottom: 32px;
}
.pf-home-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}
.pf-home-service-card {
	background: var(--pf-surface-strong);
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 20px;
	padding: 28px 24px;
	text-align: center;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
	transition: transform 0.2s, box-shadow 0.2s;
}
.pf-home-service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}
.pf-home-service-card h3 {
	font-size: 1.1rem;
	margin-top: 12px;
	color: #0f172a;
}
.pf-home-service-card p {
	color: #64748b;
	font-size: 0.9rem;
	line-height: 1.6;
	margin-top: 8px;
}

/* ============================================================
   RESPONSIVE: SIDEBAR + POPUP
   ============================================================ */
@media (max-width: 768px) {
	.pf-right-sidebar {
		width: 44px;
		min-width: 44px;
	}
	.pf-rsb-label {
		font-size: 8px;
		letter-spacing: 0.08em;
	}
	.pf-rsb-menu,
	.pf-rsb-whatsapp {
		height: 44px;
	}
	.pf-rsb-menu {
		height: 56px;
	}
	.pf-rsb-logo-icon {
		width: 24px;
		height: 24px;
		font-size: 9px;
	}
	.pf-rsb-brand-text span {
		font-size: 11px;
	}
	.pf-rsb-getstarted {
		padding: 22px 0;
	}
	.pf-nav-panel-content {
		right: 44px;
		max-width: calc(100vw - 44px);
	}
	.pf-sp-content {
		width: calc(100vw - 44px);
	}
}
@media (max-width: 480px) {
	.pf-right-sidebar {
		width: 40px;
		min-width: 40px;
	}
	.pf-rsb-label {
		font-size: 7px;
	}
	.pf-rsb-brand-text span {
		font-size: 10px;
	}
	.pf-rsb-menu {
		height: 48px;
	}
	.pf-rsb-menu .pf-rsb-label {
		font-size: 7px;
	}
	.pf-sp-content {
		width: 100vw;
	}
	.pf-sp-body {
		padding: 20px 18px;
	}
	.pf-sp-hero-block h2 {
		font-size: 1.2rem;
	}
	.pf-lead-modal {
		padding: 24px 20px;
		border-radius: 16px;
	}
	.pf-lead-toggle-group {
		flex-direction: column;
	}
	.pf-lead-toggle {
		flex: none;
	}
	.pf-nav-panel-content {
		right: 40px;
		width: calc(100vw - 40px);
		padding: 24px 18px;
	}
}

/* ============================================================
   HOMEPAGE PREMIUM REDESIGN — Pastel LinkedIn Theme
   Overrides plugin styles from global-glassmorphism.css
   ============================================================ */

/* ── HERO SECTION ── */
.pf-premium-hero-section {
	background: linear-gradient(160deg, #f0f7ff 0%, #e8f1fc 30%, #f6f9ff 60%, #ffffff 100%) !important;
	padding: 100px 28px 80px !important;
	position: relative !important;
}
.pf-premium-hero-section::before {
	content: '';
	position: absolute;
	top: -40%;
	right: -10%;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(10, 102, 194, 0.06) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}
.pf-premium-hero-section::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -15%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}
.pf-hero-container {
	max-width: 1200px !important;
	gap: 48px !important;
}
.pf-hero-badge {
	background: #fff !important;
	border: 1px solid #DBEAFE !important;
	color: #0A66C2 !important;
	box-shadow: 0 2px 8px rgba(10, 102, 194, 0.06) !important;
	font-size: 12px !important;
	padding: 8px 18px !important;
}
.pf-hero-headline {
	font-size: clamp(42px, 5.5vw, 68px) !important;
	color: #0f172a !important;
	letter-spacing: -2.5px !important;
	line-height: 1.02 !important;
}
.pf-hero-headline .transparent-stroke {
	-webkit-text-stroke: 2px #93C5FD !important;
	color: transparent !important;
}
.pf-hero-headline .solid-gradient {
	background: linear-gradient(90deg, #0A66C2, #3B82F6, #60A5FA) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
}
.pf-hero-subtitle {
	font-size: 18px !important;
	color: #475569 !important;
	line-height: 1.75 !important;
	max-width: 480px !important;
}
.pf-hero-cta-group a.pf-btn {
	background: #0A66C2 !important;
	border-radius: 0 !important;
	padding: 16px 32px !important;
	font-size: 15px !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	box-shadow: 0 8px 24px rgba(10, 102, 194, 0.3) !important;
}
.pf-hero-cta-group a.pf-btn:hover {
	box-shadow: 0 12px 32px rgba(10, 102, 194, 0.45) !important;
	transform: translateY(-2px) !important;
}
.pf-hero-cta-group a.pf-btn-outline {
	border: 2px solid #CBD5E1 !important;
	border-radius: 0 !important;
	padding: 16px 32px !important;
	font-size: 15px !important;
	color: #334155 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
}
.pf-hero-cta-group a.pf-btn-outline:hover {
	border-color: #0A66C2 !important;
	color: #0A66C2 !important;
	background: rgba(10, 102, 194, 0.04) !important;
}
.pf-hero-trust {
	border-top: 1px solid #E2E8F0 !important;
	padding-top: 24px !important;
}
.pf-trust-text {
	color: #64748b !important;
	font-size: 13px !important;
}
.pf-trust-text strong {
	color: #0f172a !important;
}

/* ── Glass card (hero right side) ── */
.pf-glass-card {
	background: #fff !important;
	border: 1px solid #E2E8F0 !important;
	border-radius: 16px !important;
	box-shadow: 0 20px 60px rgba(10, 102, 194, 0.08), 0 1px 3px rgba(0,0,0,0.04) !important;
	transform: perspective(1200px) rotateY(-3deg) translateY(-6px) !important;
}
.pf-glass-card:hover {
	transform: perspective(1200px) rotateY(0deg) translateY(0) !important;
	box-shadow: 0 24px 64px rgba(10, 102, 194, 0.12), 0 1px 3px rgba(0,0,0,0.04) !important;
}
.pf-glass-header {
	background: #f8fafc !important;
	border-bottom: 1px solid #E2E8F0 !important;
	border-radius: 16px 16px 0 0 !important;
	padding: 12px 18px !important;
}
.pf-glass-body {
	padding: 32px !important;
}
.pf-glass-body h3 {
	background: linear-gradient(135deg, #0f172a, #1e293b) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	font-size: 26px !important;
}
.pf-glass-body p {
	color: #64748b !important;
	font-size: 14px !important;
}

/* ── Mock stats (inside glass card) ── */
.pf-mock-stats {
	background: linear-gradient(135deg, #EFF6FF, #DBEAFE) !important;
	border: 1px solid #BFDBFE !important;
	padding: 18px 22px !important;
	border-radius: 12px !important;
	gap: 24px !important;
}
.pf-stat-num {
	font-size: 26px !important;
	font-weight: 900 !important;
	color: #0A66C2 !important;
}
.pf-stat-label {
	color: #475569 !important;
	font-size: 11px !important;
	letter-spacing: 0.8px !important;
}

/* ── PREMIUM STATS SECTION ── */
.pf-premium-stats-section {
	padding: 80px 20px !important;
	border-bottom: none !important;
	background: #fff !important;
	position: relative !important;
}
.pf-premium-stats-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(240, 247, 255, 0.5) 0%, transparent 40%);
	pointer-events: none;
}
.pf-section-title {
	font-size: clamp(28px, 3.5vw, 42px) !important;
	color: #0f172a !important;
	letter-spacing: -1px !important;
	text-transform: none !important;
}
.pf-section-subtitle {
	color: #64748b !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	font-size: 16px !important;
}
.pf-glass-stat {
	background: #fff !important;
	border: 1px solid #E2E8F0 !important;
	border-radius: 16px !important;
	padding: 32px !important;
	box-shadow: 0 4px 20px rgba(10, 102, 194, 0.04) !important;
	position: relative !important;
	overflow: hidden !important;
}
.pf-glass-stat::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #0A66C2, #3B82F6);
	border-radius: 4px 0 0 4px;
}
.pf-glass-stat:hover {
	transform: translateY(-4px) !important;
	box-shadow: 0 12px 40px rgba(10, 102, 194, 0.1) !important;
	border-color: #BFDBFE !important;
}
.pf-glass-stat .pf-stat-number {
	font-size: 48px !important;
	color: #0A66C2 !important;
	font-weight: 900 !important;
	letter-spacing: -2px !important;
}
.pf-glass-stat .pf-stat-text {
	color: #475569 !important;
	font-size: 15px !important;
}
.pf-img-main {
	border-radius: 16px !important;
	box-shadow: 0 20px 60px rgba(10, 102, 194, 0.1) !important;
}
.pf-img-overlay {
	border: 4px solid #fff !important;
	border-radius: 16px !important;
	box-shadow: 0 16px 48px rgba(10, 102, 194, 0.15) !important;
}

/* ── FEATURES SECTION ── */
.pf-features-section {
	padding: 90px 20px !important;
	background: linear-gradient(180deg, #fff 0%, #f8faff 100%) !important;
	position: relative !important;
}
.pf-features-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
	gap: 24px !important;
	margin-top: 0 !important;
}
.pf-feature-card {
	background: #fff !important;
	border: 1px solid #E2E8F0 !important;
	border-radius: 16px !important;
	padding: 36px 28px !important;
	box-shadow: 0 4px 16px rgba(10, 102, 194, 0.03) !important;
	position: relative !important;
	overflow: hidden !important;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.pf-feature-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #0A66C2, #3B82F6, #93C5FD);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
.pf-feature-card:hover {
	transform: translateY(-6px) !important;
	box-shadow: 0 20px 50px rgba(10, 102, 194, 0.1) !important;
	border-color: #BFDBFE !important;
}
.pf-feature-card:hover::after {
	transform: scaleX(1);
}
.pf-feature-icon {
	font-size: 48px !important;
	color: #0A66C2 !important;
	opacity: 0.15 !important;
	margin-bottom: 16px !important;
	font-weight: 900 !important;
}
.pf-feature-title {
	font-size: 20px !important;
	color: #0f172a !important;
	font-weight: 700 !important;
	margin-bottom: 12px !important;
}
.pf-feature-text {
	color: #64748b !important;
	font-size: 14px !important;
	line-height: 1.7 !important;
}

/* ── FAQ SECTION ── */
.cust-accdn {
	background: linear-gradient(180deg, #f8faff 0%, #fff 50%, #f8faff 100%) !important;
	padding: 90px 20px !important;
	position: relative !important;
}
.cust-accdn h2 {
	font-size: clamp(28px, 3.5vw, 42px) !important;
	color: #0f172a !important;
	font-weight: 800 !important;
	letter-spacing: -1px !important;
	text-align: center !important;
	margin-bottom: 8px !important;
}
.cust-accdn p.intro {
	color: #64748b !important;
	text-align: center !important;
	font-size: 16px !important;
	margin-bottom: 48px !important;
}
.cust-accdn details {
	background: #fff !important;
	border: 1px solid #E2E8F0 !important;
	border-radius: 12px !important;
	margin-bottom: 12px !important;
	overflow: hidden !important;
	box-shadow: 0 2px 8px rgba(10, 102, 194, 0.03) !important;
	transition: all 0.3s ease !important;
}
.cust-accdn details:hover {
	border-color: #BFDBFE !important;
	box-shadow: 0 6px 20px rgba(10, 102, 194, 0.06) !important;
}
.cust-accdn details[open] {
	border-color: #93C5FD !important;
	box-shadow: 0 8px 28px rgba(10, 102, 194, 0.08) !important;
}
.cust-accdn summary {
	color: #0f172a !important;
	font-weight: 600 !important;
	font-size: 16px !important;
	padding: 20px 24px !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	list-style: none !important;
	transition: color 0.2s !important;
}
.cust-accdn summary::-webkit-details-marker {
	display: none !important;
}
.cust-accdn summary:hover {
	color: #0A66C2 !important;
}
.cust-accdn details[open] summary {
	color: #0A66C2 !important;
	border-bottom: 1px solid #EFF6FF !important;
}
.cust-accdn .accordion-icon {
	color: #93C5FD !important;
	font-size: 20px !important;
	transition: transform 0.3s ease, color 0.3s ease !important;
}
.cust-accdn details[open] .accordion-icon {
	transform: rotate(45deg) !important;
	color: #0A66C2 !important;
}
.cust-accdn .accordion-content {
	padding: 20px 24px 24px !important;
	border-top: none !important;
	color: #475569 !important;
	font-size: 15px !important;
	line-height: 1.75 !important;
}

/* ── BOTTOM CTA BANNER ── */
.pf-cta-banner {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
	padding: 80px 28px !important;
	border-radius: 0 !important;
	margin-top: 0 !important;
	position: relative !important;
	overflow: hidden !important;
}
.pf-cta-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, #0A66C2, #3B82F6, #0A66C2, transparent);
}
.pf-cta-banner::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(10, 102, 194, 0.1) 0%, transparent 70%);
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.pf-cta-bg-glow {
	display: none !important;
}
.pf-cta-tag {
	color: #60A5FA !important;
	font-size: 12px !important;
	letter-spacing: 3px !important;
	margin-bottom: 20px !important;
}
.pf-cta-title {
	font-size: clamp(32px, 4vw, 48px) !important;
	color: #fff !important;
	font-weight: 800 !important;
	letter-spacing: -1.5px !important;
	line-height: 1.1 !important;
}
.pf-cta-desc {
	color: #94A3B8 !important;
	font-size: 17px !important;
	line-height: 1.7 !important;
	margin-bottom: 36px !important;
	max-width: 500px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}
.pf-cta-btn {
	background: #0A66C2 !important;
	color: #fff !important;
	padding: 16px 40px !important;
	border-radius: 0 !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	box-shadow: 0 8px 24px rgba(10, 102, 194, 0.4) !important;
	transition: all 0.3s !important;
}
.pf-cta-btn:hover {
	background: #3B82F6 !important;
	transform: translateY(-3px) !important;
	box-shadow: 0 14px 36px rgba(59, 130, 246, 0.5) !important;
	color: #fff !important;
}

/* ── DARK THEME WRAPPER ── */
.pf-dark-theme-wrapper {
	background: #fff !important;
	padding-bottom: 0 !important;
}

/* ── HOMEPAGE BODY ── */
body.home {
	background: #f8faff !important;
}
body.page .pf-front-content-inner,
body.home .pf-front-content-inner {
	padding-bottom: 0 !important;
}

/* ── Hide "Professional" heading in footer + hide block 7 widget ── */
.pf-footer-grid .pf-footer-col:nth-child(3) .widget > h2:first-child,
.pf-footer-grid .pf-footer-col:nth-child(3) .widget > h3:first-child,
.pf-footer-grid .pf-footer-col:nth-child(3) .widget > h4:first-child,
.pf-footer-grid .pf-footer-col:nth-child(3) > h2:first-child,
.pf-footer-grid .pf-footer-col:nth-child(3) > h3:first-child,
.pf-footer-grid .pf-footer-col:nth-child(3) > h4:first-child {
	display: none;
}
/* Hide block 7 in footer columns */
.pf-footer-grid .pf-footer-col .widget_block:nth-child(7),
.pf-footer-grid .pf-footer-col .pf-widget:nth-child(7),
.pf-footer-grid .pf-footer-col > *:nth-child(7) {
	display: none;
}

/* ── PLUGIN FOOTER (.pf-site-footer) — merge into theme footer ── */
.pf-site-footer {
	background: #0b1220 !important;
	color: rgba(255,255,255,0.7) !important;
	padding: 20px 24px !important;
	border-top: 1px solid rgba(255,255,255,0.06) !important;
	margin-top: 0 !important;
}
.pf-site-footer .pf-footer-inner {
	max-width: 1200px !important;
	margin: 0 auto !important;
}
.pf-site-footer .pf-footer-logo-text {
	color: #fff !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
}
.pf-site-footer .pf-footer-link {
	color: rgba(255,255,255,0.5) !important;
	font-size: 0.82rem !important;
}
.pf-site-footer .pf-footer-link:hover {
	color: #60A5FA !important;
}
.pf-site-footer .pf-footer-sep {
	color: rgba(255,255,255,0.15) !important;
}

/* ── Remove gap between CTA banner and footers ── */
.pf-cta-banner {
	margin-bottom: 0 !important;
}
#pf-footer {
	margin-top: 0 !important;
	border-top: none !important;
}
/* Kill whitespace between dark-theme-wrapper end and footer */
.entry-content-wrap,
.pf-front-content-inner {
	margin-bottom: 0 !important;
}
/* Ensure no padding gap below main content on homepage */
body.home #pf-content,
body.page #pf-content {
	padding-bottom: 0 !important;
}

/* ============================================================
   BLOG PAGE — Matching sidebar blog panel design
   ============================================================ */
.pf-blog-page {
	max-width: 820px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Blog header */
.pf-blog-header {
	margin-bottom: 32px;
}
.pf-blog-header-inner {
	display: flex;
	align-items: center;
	gap: 18px;
}
.pf-blog-header-icon {
	width: 56px;
	height: 56px;
	background: #EFF6FF;
	border: 1px solid #DBEAFE;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.pf-blog-header h1 {
	font-size: 1.5rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 2px;
	letter-spacing: -0.02em;
}
.pf-blog-header p {
	font-size: 0.88rem;
	color: #64748b;
	margin: 0;
}

/* Blog list */
.pf-blog-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Blog card (full page version) */
.pf-blog-card-full {
	border: 1px solid #E2E8F0;
	border-radius: 14px;
	background: #fff;
	transition: all 0.25s ease;
	box-shadow: 0 2px 8px rgba(10, 102, 194, 0.03);
}
.pf-blog-card-full:hover {
	border-color: #93C5FD;
	box-shadow: 0 8px 28px rgba(10, 102, 194, 0.1);
	transform: translateY(-3px);
}
.pf-bcf-link {
	display: flex;
	gap: 18px;
	padding: 20px;
	text-decoration: none;
	align-items: flex-start;
}

/* Thumbnail / icon */
.pf-bcf-icon {
	width: 72px;
	height: 72px;
	background: #EFF6FF;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
}
.pf-bcf-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

/* Body */
.pf-bcf-body {
	flex: 1;
	min-width: 0;
}
.pf-bcf-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}
.pf-bcf-cat {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #0A66C2;
	background: #EFF6FF;
	padding: 3px 10px;
	border-radius: 4px;
}
.pf-bcf-date,
.pf-bcf-time {
	font-size: 11px;
	color: #94a3b8;
	font-weight: 500;
}
.pf-bcf-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.4;
	margin: 0 0 6px;
	transition: color 0.2s;
}
.pf-blog-card-full:hover .pf-bcf-title {
	color: #0A66C2;
}
.pf-bcf-excerpt {
	font-size: 0.85rem;
	color: #64748b;
	line-height: 1.6;
	margin: 0 0 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.pf-bcf-read {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.78rem;
	font-weight: 700;
	color: #0A66C2;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.pf-bcf-read svg {
	opacity: 0;
	transform: translateX(-4px);
	transition: all 0.2s;
}
.pf-blog-card-full:hover .pf-bcf-read svg {
	opacity: 1;
	transform: translateX(0);
}

/* Blog page responsive */
@media (max-width: 640px) {
	.pf-bcf-link {
		flex-direction: row;
		gap: 14px;
		padding: 16px;
	}
	.pf-bcf-icon {
		width: 48px;
		height: 48px;
		border-radius: 10px;
		flex-shrink: 0;
	}
	.pf-bcf-icon svg {
		width: 20px;
		height: 20px;
	}
	.pf-bcf-thumb {
		width: 48px;
		height: 48px;
		border-radius: 10px;
		object-fit: cover;
	}
	.pf-bcf-title {
		font-size: 0.92rem;
	}
	.pf-bcf-excerpt {
		-webkit-line-clamp: 2;
	}
	.pf-blog-header-inner {
		flex-direction: column;
		text-align: center;
	}
	.pf-blog-header h1 {
		font-size: 1.3rem;
	}
}

/* ============================================================
   BLOG SIDEBAR PANEL
   ============================================================ */
.pf-blog-panel {
	position: fixed;
	inset: 0;
	z-index: 99998;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s 0.3s, opacity 0.3s ease;
}
.pf-blog-panel.active {
	visibility: visible;
	opacity: 1;
	transition: visibility 0s, opacity 0.3s ease;
}
.pf-blog-panel-overlay {
	position: absolute;
	inset: 0;
	background: rgba(6, 20, 50, 0.4);
	backdrop-filter: blur(4px);
}
.pf-blog-panel-content {
	position: absolute;
	right: 56px;
	top: 0;
	bottom: 0;
	width: 440px;
	max-width: calc(100vw - 56px);
	background: #fff;
	box-shadow: -8px 0 40px rgba(10, 102, 194, 0.1);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pf-blog-panel.active .pf-blog-panel-content {
	transform: translateX(0);
}

/* Header */
.pf-blog-panel-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 24px 24px 16px;
	border-bottom: 1px solid #E2E8F0;
	flex-shrink: 0;
}
.pf-blog-panel-header h2 {
	font-size: 1.2rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 2px;
	letter-spacing: -0.02em;
}
.pf-blog-panel-header p {
	font-size: 0.78rem;
	color: #64748b;
	margin: 0;
}
.pf-blog-panel-close {
	background: none;
	border: 1px solid #e2e8f0;
	color: #94a3b8;
	cursor: pointer;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	transition: all 0.15s;
	flex-shrink: 0;
}
.pf-blog-panel-close:hover {
	background: #f1f5f9;
	color: #334155;
	border-color: #cbd5e1;
}

/* Scrollable list */
.pf-blog-panel-list {
	flex: 1;
	overflow-y: auto;
	padding: 16px;
}

/* Blog card */
.pf-blog-card {
	display: flex;
	gap: 14px;
	padding: 14px;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	margin-bottom: 10px;
	text-decoration: none;
	transition: all 0.25s ease;
	align-items: flex-start;
}
.pf-blog-card:hover {
	border-color: #93C5FD;
	box-shadow: 0 6px 20px rgba(10, 102, 194, 0.08);
	transform: translateY(-2px);
}
.pf-blog-card-icon {
	width: 40px;
	height: 40px;
	background: #EFF6FF;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.pf-blog-card-body {
	flex: 1;
	min-width: 0;
}
.pf-blog-card-cat {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #0A66C2;
	background: #EFF6FF;
	padding: 2px 8px;
	border-radius: 4px;
	margin-bottom: 6px;
}
.pf-blog-card-title {
	font-size: 0.88rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.35;
	margin: 0 0 4px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.pf-blog-card-excerpt {
	font-size: 0.78rem;
	color: #64748b;
	line-height: 1.5;
	margin: 0 0 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.pf-blog-card-read {
	font-size: 0.75rem;
	font-weight: 700;
	color: #0A66C2;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.pf-blog-card:hover .pf-blog-card-title {
	color: #0A66C2;
}

/* Footer */
.pf-blog-panel-footer {
	padding: 16px 24px;
	border-top: 1px solid #E2E8F0;
	text-align: center;
	flex-shrink: 0;
}
.pf-blog-panel-viewall {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 24px;
	background: #0A66C2;
	color: #fff;
	font-weight: 700;
	font-size: 0.82rem;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	transition: all 0.2s;
	box-shadow: 0 4px 12px rgba(10, 102, 194, 0.2);
}
.pf-blog-panel-viewall:hover {
	background: #004182;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(10, 102, 194, 0.3);
	color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
	.pf-blog-panel-content {
		right: 44px;
		width: calc(100vw - 44px);
	}
	.pf-rsb-blog {
		height: 56px;
	}
}
@media (max-width: 480px) {
	.pf-blog-panel-content {
		right: 40px;
		width: calc(100vw - 40px);
	}
	.pf-rsb-blog {
		height: 48px;
	}
}

/* ============================================================
   SERVICE PAGES — Premium Lead Generation
   ============================================================ */

/* ── FULL-WIDTH SERVICE PAGE OVERRIDES ── */
body.pf-svc-page-fullwidth {
	background: #fff;
}
body.pf-svc-page-fullwidth #pf-content {
	padding: 0 !important;
	background: transparent !important;
}
body.pf-svc-page-fullwidth .pf-container {
	max-width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}
body.pf-svc-page-fullwidth .pf-main-area {
	background: transparent !important;
}
/* Also cover the WooCommerce / page body wrappers that add bg */
body.pf-svc-page-fullwidth .pf-page,
body.pf-svc-page-fullwidth .pf-content-grid,
body.pf-svc-page-fullwidth .pf-main-col {
	background: transparent !important;
	box-shadow: none !important;
	border: none !important;
	border-radius: 0 !important;
	padding: 0 !important;
	max-width: 100% !important;
}

.pf-svc-page {
	max-width: 100%;
	margin: 0;
	background: transparent;
}

/* Hero */
.pf-svc-hero {
	text-align: center;
	padding: 60px 24px 48px;
}
.pf-svc-hero-decorated {
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, #EFF6FF 0%, #F0F4FF 40%, #EEF2FF 70%, #F5F3FF 100%);
}

/* ── HERO BACKGROUND SYSTEM ── */
.pf-hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

/* Gradient blobs */
.pf-hero-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
}
.pf-hero-blob-1 {
	width: 480px; height: 480px;
	background: radial-gradient(circle, rgba(10,102,194,0.12) 0%, transparent 70%);
	top: -120px; left: -100px;
	animation: pfBlobDrift 14s ease-in-out infinite;
}
.pf-hero-blob-2 {
	width: 360px; height: 360px;
	background: radial-gradient(circle, rgba(124,58,237,0.09) 0%, transparent 70%);
	top: -60px; right: -80px;
	animation: pfBlobDrift 18s ease-in-out infinite reverse;
}
.pf-hero-blob-3 {
	width: 300px; height: 300px;
	background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
	bottom: -80px; left: 30%;
	animation: pfBlobDrift 12s ease-in-out infinite 3s;
}
.pf-hero-blob-4 {
	width: 200px; height: 200px;
	background: radial-gradient(circle, rgba(13,148,136,0.08) 0%, transparent 70%);
	bottom: 20px; right: 10%;
	animation: pfBlobDrift 16s ease-in-out infinite 6s reverse;
}
@keyframes pfBlobDrift {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33%       { transform: translate(20px, -30px) scale(1.05); }
	66%       { transform: translate(-15px, 20px) scale(0.97); }
}

/* Concentric rings */
.pf-hero-ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(10,102,194,0.08);
}
.pf-hero-ring-1 {
	width: 500px; height: 500px;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	animation: pfRingPulse 8s ease-in-out infinite;
}
.pf-hero-ring-2 {
	width: 750px; height: 750px;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	animation: pfRingPulse 8s ease-in-out infinite 2.5s;
}
.pf-hero-ring-3 {
	width: 1000px; height: 1000px;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	animation: pfRingPulse 8s ease-in-out infinite 5s;
}
@keyframes pfRingPulse {
	0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
	50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.03); }
}

/* Dot grid pattern */
.pf-hero-dots {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(10,102,194,0.12) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
	-webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

/* Floating icon bubbles */
.pf-hero-float {
	position: absolute;
	background: rgba(255,255,255,0.72);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(10,102,194,0.12);
	border-radius: 16px;
	width: 52px; height: 52px;
	display: flex; align-items: center; justify-content: center;
	color: #0A66C2;
	box-shadow: 0 4px 20px rgba(10,102,194,0.08);
}
.pf-hero-float-1 { top: 18%; left: 5%;  animation: pfFloat 7s ease-in-out infinite; }
.pf-hero-float-2 { top: 55%; left: 3%;  animation: pfFloat 9s ease-in-out infinite 1.5s; }
.pf-hero-float-3 { top: 12%; right: 5%; animation: pfFloat 8s ease-in-out infinite 3s; }
.pf-hero-float-4 { top: 60%; right: 4%; animation: pfFloat 6s ease-in-out infinite 0.8s; }
.pf-hero-float-5 { top: 35%; right: 8%; animation: pfFloat 10s ease-in-out infinite 2s; color: #7C3AED; border-color: rgba(124,58,237,0.15); }
@keyframes pfFloat {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	50%       { transform: translateY(-14px) rotate(3deg); }
}

/* Floating stat chips */
.pf-hero-chip {
	position: absolute;
	background: rgba(255,255,255,0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(10,102,194,0.1);
	border-radius: 30px;
	padding: 7px 14px;
	display: flex; align-items: center; gap: 6px;
	font-size: 0.72rem;
	font-weight: 700;
	color: #1e293b;
	box-shadow: 0 4px 16px rgba(10,102,194,0.08);
	white-space: nowrap;
}
.pf-hero-chip-1 { bottom: 22%; left: 6%;  animation: pfFloat 8s ease-in-out infinite 1s; }
.pf-hero-chip-2 { top: 30%;    left: 7%;  animation: pfFloat 7s ease-in-out infinite 4s; }
.pf-hero-chip-3 { bottom: 28%; right: 6%; animation: pfFloat 9s ease-in-out infinite 2.5s; }

.pf-svc-hero-inner {
	max-width: 680px;
	margin: 0 auto;
}
.pf-svc-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #EFF6FF;
	border: 1px solid #DBEAFE;
	padding: 6px 16px;
	border-radius: 99px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: #0A66C2;
	margin-bottom: 20px;
}
.pf-svc-hero-dot {
	width: 6px;
	height: 6px;
	background: #22c55e;
	border-radius: 50%;
	box-shadow: 0 0 6px #22c55e;
}
.pf-svc-hero-title {
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	font-weight: 900;
	color: #0f172a;
	letter-spacing: -1.5px;
	line-height: 1.05;
	margin-bottom: 16px;
}
.pf-svc-hero-sub {
	font-size: 1.05rem;
	color: #64748b;
	line-height: 1.7;
	max-width: 54ch;
	margin: 0 auto;
}

/* Geo line */
.pf-svc-hero-geo {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.82rem;
	color: #94a3b8;
	margin-top: 16px;
	background: #f8fafc;
	border: 1px solid #E2E8F0;
	padding: 6px 14px;
	border-radius: 99px;
}

/* SEO content section */
.pf-svc-seo-content {
	padding: 48px 24px;
	background: #fff;
}
.pf-svc-seo-inner {
	max-width: 760px;
	margin: 0 auto;
	font-size: 0.95rem;
	line-height: 1.85;
	color: #475569;
}
.pf-svc-seo-inner h2 {
	font-size: 1.4rem;
	font-weight: 800;
	color: #0f172a;
	margin: 2em 0 0.6em;
	padding-left: 14px;
	border-left: 3px solid #0A66C2;
}
.pf-svc-seo-inner h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1e293b;
	margin: 1.5em 0 0.5em;
}
.pf-svc-seo-inner p {
	margin-bottom: 1em;
}
.pf-svc-seo-inner strong {
	color: #0f172a;
}

/* ── FEATURES GRID ── */
.pf-svc-features {
	padding: 0 24px 80px;
}
.pf-svc-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	counter-reset: pf-feat;
}

/* Per-card color palettes */
.pf-svc-feat-card:nth-child(3n+1) {
	--fc1: #0A66C2; --fc2: #3B82F6; --fc3: #93C5FD;
	--fl: #EFF6FF;  --fm: #DBEAFE; --fg: rgba(10,102,194,0.08);
	--fs: rgba(10,102,194,0.22);
}
.pf-svc-feat-card:nth-child(3n+2) {
	--fc1: #7C3AED; --fc2: #8B5CF6; --fc3: #C4B5FD;
	--fl: #F5F3FF;  --fm: #EDE9FE; --fg: rgba(124,58,237,0.07);
	--fs: rgba(124,58,237,0.20);
}
.pf-svc-feat-card:nth-child(3n) {
	--fc1: #0D9488; --fc2: #14B8A6; --fc3: #5EEAD4;
	--fl: #F0FDFA;  --fm: #CCFBF1; --fg: rgba(13,148,136,0.07);
	--fs: rgba(13,148,136,0.20);
}

.pf-svc-feat-card {
	background: #fff;
	border-radius: 24px;
	padding: 36px 30px 30px;
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	position: relative;
	overflow: hidden;
	border: 1.5px solid #E8EFF8;
	box-shadow:
		0 1px 3px rgba(0,0,0,0.04),
		0 4px 12px rgba(0,0,0,0.03),
		inset 0 1px 0 rgba(255,255,255,0.9);
	counter-increment: pf-feat;
}
/* Watermark number — large, visible, colored */
.pf-svc-feat-card::before {
	content: counter(pf-feat, decimal-leading-zero);
	position: absolute;
	bottom: -16px;
	right: 12px;
	font-size: 100px;
	font-weight: 900;
	line-height: 1;
	color: var(--fc1);
	opacity: 0.055;
	pointer-events: none;
	transition: opacity 0.4s, transform 0.4s;
	letter-spacing: -6px;
}
/* Top gradient bar — always visible */
.pf-svc-feat-card::after {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--fc1), var(--fc2), var(--fc3));
	border-radius: 24px 24px 0 0;
	opacity: 0.5;
	transition: opacity 0.35s, height 0.35s;
}
.pf-svc-feat-card:hover {
	border-color: var(--fc3);
	box-shadow:
		0 8px 24px var(--fg),
		0 24px 56px var(--fg),
		0 0 0 1px var(--fc3),
		inset 0 1px 0 rgba(255,255,255,0.95);
	transform: translateY(-8px);
}
.pf-svc-feat-card:hover::before {
	opacity: 0.1;
	transform: scale(1.05) translateX(4px);
}
.pf-svc-feat-card:hover::after {
	opacity: 1;
	height: 4px;
}
/* Content z-index above pseudo-elements */
.pf-svc-feat-card > * {
	position: relative;
	z-index: 1;
}
/* Top row: number badge + icon side by side */
.pf-svc-feat-top-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
}
/* Number badge */
.pf-svc-feat-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, var(--fc1), var(--fc2));
	color: #fff;
	border-radius: 10px;
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.03em;
	box-shadow: 0 4px 14px var(--fs);
	transition: transform 0.3s, box-shadow 0.3s;
}
.pf-svc-feat-card:hover .pf-svc-feat-num {
	transform: scale(1.1);
	box-shadow: 0 6px 20px var(--fs);
}
/* Icon */
.pf-svc-feat-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--fl), var(--fm));
	border: 1.5px solid var(--fc3);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	box-shadow: 0 4px 16px var(--fg);
}
.pf-svc-feat-icon svg {
	width: 24px;
	height: 24px;
	stroke: var(--fc1);
	transition: stroke 0.2s;
}
.pf-svc-feat-card:hover .pf-svc-feat-icon {
	background: linear-gradient(135deg, var(--fm), var(--fc3));
	border-color: var(--fc2);
	transform: rotate(-6deg) scale(1.1);
	box-shadow: 0 8px 28px var(--fs);
}
/* Title */
.pf-svc-feat-card h3 {
	font-size: 1.08rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 10px;
	letter-spacing: -0.03em;
	line-height: 1.3;
	transition: color 0.25s;
}
.pf-svc-feat-card:hover h3 {
	color: var(--fc1);
}
/* Description */
.pf-svc-feat-card p {
	font-size: 0.875rem;
	color: #64748b;
	line-height: 1.72;
	margin: 0;
	transition: color 0.25s;
}
.pf-svc-feat-card:hover p {
	color: #475569;
}

/* ── HERO STATS + CTAs ── */
.pf-svc-hero-stats {
	display: flex;
	gap: 32px;
	margin-top: 28px;
	flex-wrap: wrap;
	justify-content: center;
}
.pf-svc-hero-stat {
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.pf-svc-hero-stat strong {
	font-size: 1.6rem;
	font-weight: 900;
	color: #0A66C2;
	line-height: 1;
	letter-spacing: -0.04em;
}
.pf-svc-hero-stat span {
	font-size: 0.75rem;
	color: #64748b;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.pf-svc-hero-ctas {
	display: flex;
	gap: 12px;
	margin-top: 28px;
	flex-wrap: wrap;
	justify-content: center;
}
.pf-svc-hero-cta-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #0A66C2, #3B82F6);
	color: #fff;
	padding: 14px 28px;
	border-radius: 10px;
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(10,102,194,0.3);
	transition: all 0.25s ease;
}
.pf-svc-hero-cta-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(10,102,194,0.4);
	color: #fff;
}
.pf-svc-hero-cta-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #E8F5E9;
	color: #166534;
	padding: 14px 24px;
	border-radius: 10px;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	border: 1.5px solid #BBF7D0;
	transition: all 0.25s ease;
}
.pf-svc-hero-cta-secondary:hover {
	background: #D1FAE5;
	transform: translateY(-2px);
	color: #166534;
}
.pf-svc-features-header {
	text-align: center;
	margin-bottom: 40px;
	padding-top: 72px;
}

/* ── WHY SECTION ── */
.pf-svc-why {
	padding: 80px 24px;
	background: #0f172a;
	color: #fff;
}
.pf-svc-why-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.pf-svc-why .pf-svc-section-label {
	background: rgba(59,130,246,0.15);
	border-color: rgba(59,130,246,0.3);
	color: #93C5FD;
}
.pf-svc-why .pf-svc-section-title {
	color: #fff;
}
.pf-svc-why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 20px;
	overflow: hidden;
}
.pf-svc-why-card {
	background: #0f172a;
	padding: 32px 28px;
	transition: background 0.3s;
}
.pf-svc-why-card:hover {
	background: #1e293b;
}
.pf-svc-why-icon {
	width: 48px;
	height: 48px;
	background: rgba(10,102,194,0.15);
	border: 1px solid rgba(10,102,194,0.3);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	color: #60A5FA;
}
.pf-svc-why-card h3 {
	font-size: 1rem;
	font-weight: 800;
	color: #E2E8F0;
	margin: 0 0 10px;
	letter-spacing: -0.02em;
}
.pf-svc-why-card p {
	font-size: 0.875rem;
	color: #94A3B8;
	line-height: 1.7;
	margin: 0;
}

/* ── PRICING ── */
.pf-svc-pricing {
	padding: 80px 24px;
	background: linear-gradient(180deg, #F8FAFF 0%, #fff 100%);
}
.pf-svc-pricing-inner {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}
.pf-svc-pricing-sub {
	font-size: 0.95rem;
	color: #64748b;
	margin: -20px 0 44px;
}
.pf-svc-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: start;
}
.pf-svc-price-card {
	background: #fff;
	border: 1.5px solid #E2E8F0;
	border-radius: 24px;
	padding: 32px 28px;
	text-align: left;
	position: relative;
	transition: all 0.3s ease;
}
.pf-svc-price-card:hover {
	border-color: #BFDBFE;
	box-shadow: 0 16px 48px rgba(10,102,194,0.1);
	transform: translateY(-4px);
}
.pf-svc-price-featured {
	border-color: #0A66C2;
	box-shadow: 0 8px 32px rgba(10,102,194,0.15);
	transform: scale(1.03);
}
.pf-svc-price-featured:hover {
	transform: scale(1.03) translateY(-4px);
}
.pf-svc-price-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #0A66C2, #3B82F6);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	padding: 5px 14px;
	border-radius: 20px;
	white-space: nowrap;
}
.pf-svc-price-tier {
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: #0A66C2;
	margin-bottom: 8px;
}
.pf-svc-price-amt {
	font-size: 2.8rem;
	font-weight: 900;
	color: #0f172a;
	line-height: 1;
	letter-spacing: -0.05em;
	margin-bottom: 4px;
}
.pf-svc-price-amt span { font-size: 1.2rem; font-weight: 700; vertical-align: top; margin-top: 10px; display: inline-block; }
.pf-svc-price-up { font-size: 1.4rem !important; font-weight: 700; color: #64748b; }
.pf-svc-price-qty {
	font-size: 0.85rem;
	font-weight: 600;
	color: #64748b;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #E2E8F0;
}
.pf-svc-price-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.pf-svc-price-list li {
	font-size: 0.875rem;
	color: #475569;
	padding-left: 22px;
	position: relative;
}
.pf-svc-price-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 7px;
	width: 8px;
	height: 8px;
	background: #0A66C2;
	border-radius: 50%;
}
.pf-svc-price-btn {
	display: block;
	text-align: center;
	padding: 13px 24px;
	border-radius: 10px;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-decoration: none;
	background: #EFF6FF;
	color: #0A66C2;
	border: 1.5px solid #BFDBFE;
	transition: all 0.2s;
}
.pf-svc-price-btn:hover {
	background: #DBEAFE;
	color: #0A66C2;
}
.pf-svc-price-btn-featured {
	background: linear-gradient(135deg, #0A66C2, #3B82F6);
	color: #fff;
	border-color: transparent;
	box-shadow: 0 6px 18px rgba(10,102,194,0.3);
}
.pf-svc-price-btn-featured:hover {
	background: linear-gradient(135deg, #004182, #0A66C2);
	color: #fff;
	box-shadow: 0 8px 24px rgba(10,102,194,0.4);
}
.pf-svc-pricing-note {
	margin-top: 28px;
	font-size: 0.875rem;
	color: #64748b;
}
.pf-svc-pricing-note a {
	color: #0A66C2;
	font-weight: 600;
	text-decoration: none;
}

/* ── TRUST BAR ── */
.pf-svc-trust-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0;
	background: #0f172a;
	padding: 0;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pf-svc-trust-item {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 13px 20px;
	font-size: 0.78rem;
	font-weight: 600;
	color: #94A3B8;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	border-right: 1px solid rgba(255,255,255,0.06);
	transition: color 0.2s;
}
.pf-svc-trust-item:last-child { border-right: none; }
.pf-svc-trust-item svg { flex-shrink: 0; color: #0A66C2; }
.pf-svc-trust-item:hover { color: #E2E8F0; }

/* ── SHARED SECTION LABELS ── */
.pf-svc-section-label {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #0A66C2;
	background: #EFF6FF;
	border: 1px solid #BFDBFE;
	border-radius: 20px;
	padding: 5px 14px;
	margin-bottom: 14px;
}
.pf-svc-section-title {
	font-size: 1.9rem;
	font-weight: 900;
	color: #0f172a;
	letter-spacing: -0.04em;
	line-height: 1.2;
	margin: 0 0 40px;
}

/* ── HOW IT WORKS ── */
.pf-svc-hiw {
	padding: 72px 24px;
	background: linear-gradient(180deg, #F8FAFF 0%, #fff 100%);
	text-align: center;
}
.pf-svc-hiw-inner { max-width: 900px; margin: 0 auto; }
.pf-svc-hiw-steps {
	display: flex;
	align-items: flex-start;
	gap: 0;
	justify-content: center;
}
.pf-svc-hiw-step {
	flex: 1;
	padding: 0 24px;
	position: relative;
	text-align: center;
}
.pf-svc-hiw-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #0A66C2, #3B82F6);
	color: #fff;
	font-size: 1.1rem;
	font-weight: 900;
	border-radius: 50%;
	margin: 0 auto 16px;
	box-shadow: 0 8px 24px rgba(10, 102, 194, 0.3);
	position: relative;
	z-index: 1;
}
.pf-svc-hiw-step h3 {
	font-size: 1rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 8px;
	letter-spacing: -0.02em;
}
.pf-svc-hiw-step p {
	font-size: 0.85rem;
	color: #64748b;
	line-height: 1.65;
	margin: 0;
}
.pf-svc-hiw-arrow {
	position: absolute;
	top: 28px;
	right: -12px;
	transform: translateY(-50%);
	z-index: 0;
}

/* ── TESTIMONIALS ── */
.pf-svc-testimonials {
	padding: 72px 24px;
	background: #fff;
}
.pf-svc-test-inner { max-width: 1100px; margin: 0 auto; }
.pf-svc-test-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}
.pf-svc-test-card {
	background: linear-gradient(160deg, #F8FAFF, #EFF6FF);
	border: 1.5px solid #DBEAFE;
	border-radius: 20px;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: all 0.3s ease;
}
.pf-svc-test-card:hover {
	border-color: #93C5FD;
	box-shadow: 0 12px 32px rgba(10,102,194,0.1);
	transform: translateY(-4px);
}
.pf-svc-test-stars { display: flex; gap: 2px; }
.pf-svc-test-text {
	font-size: 0.9rem;
	color: #334155;
	line-height: 1.7;
	margin: 0;
	font-style: italic;
	flex: 1;
}
.pf-svc-test-author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 12px;
	border-top: 1px solid #BFDBFE;
}
.pf-svc-test-avatar {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #0A66C2, #3B82F6);
	color: #fff;
	font-weight: 800;
	font-size: 1rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.pf-svc-test-meta { display: flex; flex-direction: column; }
.pf-svc-test-meta strong { font-size: 0.875rem; color: #0f172a; font-weight: 700; }
.pf-svc-test-meta span { font-size: 0.78rem; color: #64748b; }

/* ── FAQs ── */
.pf-svc-faq {
	padding: 72px 24px;
	background: linear-gradient(180deg, #fff 0%, #F8FAFF 100%);
}
.pf-svc-faq-inner { max-width: 800px; margin: 0 auto; }
.pf-svc-faq-list { display: flex; flex-direction: column; gap: 0; }
.pf-svc-faq-item {
	border-bottom: 1px solid #E2E8F0;
}
.pf-svc-faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: none;
	border: none;
	padding: 20px 0;
	cursor: pointer;
	text-align: left;
}
.pf-svc-faq-q span {
	font-size: 0.95rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.4;
	transition: color 0.2s;
}
.pf-svc-faq-q:hover span { color: #0A66C2; }
.pf-svc-faq-icon {
	flex-shrink: 0;
	color: #94A3B8;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s;
}
.pf-svc-faq-q[aria-expanded="true"] .pf-svc-faq-icon {
	transform: rotate(180deg);
	color: #0A66C2;
}
.pf-svc-faq-q[aria-expanded="true"] span { color: #0A66C2; }
.pf-svc-faq-a { padding: 0 0 20px; }
.pf-svc-faq-a p {
	font-size: 0.9rem;
	color: #475569;
	line-height: 1.75;
	margin: 0;
}

/* ── SEO CONTENT BLOCK ── */
.pf-svc-seo-content {
	padding: 48px 24px;
	background: #fff;
	border-top: 1px solid #E8EFF8;
}
.pf-svc-seo-inner {
	max-width: 780px;
	margin: 0 auto;
}
.pf-svc-seo-inner p {
	font-size: 0.93rem;
	color: #475569;
	line-height: 1.8;
	margin-bottom: 1.2em;
}
.pf-svc-seo-inner h2 {
	font-size: 1.4rem;
	font-weight: 800;
	color: #0f172a;
	margin: 1.8em 0 0.6em;
	letter-spacing: -0.03em;
}

/* PR Pricing section */
.pf-svc-pr-section {
	padding: 48px 24px 60px;
}
.pf-svc-pr-globe {
	text-align: center;
	margin-bottom: 32px;
}
.pf-svc-pr-globe-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #0f172a;
	color: #93C5FD;
	padding: 16px 28px;
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 600;
}
.pf-svc-pr-globe-badge strong {
	color: #fff;
	font-size: 1.2rem;
}
.pf-svc-pr-title {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 6px;
}
.pf-svc-pr-sub {
	text-align: center;
	font-size: 0.9rem;
	color: #64748b;
	margin-bottom: 28px;
}

/* PR Table */
.pf-pr-table-wrap {
	overflow-x: auto;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
}
.pf-pr-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.88rem;
}
.pf-pr-table thead {
	background: #0f172a;
}
.pf-pr-table thead th {
	padding: 14px 18px;
	color: #fff;
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-align: left;
}
.pf-pr-table tbody tr {
	border-bottom: 1px solid #f0f4f8;
	transition: background 0.15s;
}
.pf-pr-table tbody tr:last-child {
	border-bottom: none;
}
.pf-pr-table tbody tr:hover {
	background: #f8faff;
}
.pf-pr-table td {
	padding: 14px 18px;
	color: #334155;
	vertical-align: top;
}
.pf-pr-price {
	font-size: 1.1rem;
	color: #0A66C2 !important;
	white-space: nowrap;
}
.pf-pr-inr {
	font-size: 0.82rem;
	color: #94a3b8 !important;
	white-space: nowrap;
}
.pf-pr-pubs {
	font-size: 0.82rem;
	line-height: 1.5;
	color: #475569 !important;
}

/* Lead form section */
.pf-svc-lead {
	padding: 60px 24px 80px;
	background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}
.pf-svc-lead-inner {
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}
.pf-svc-lead-info h2 {
	font-size: 1.6rem;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.5px;
	margin-bottom: 12px;
}
.pf-svc-lead-info p {
	font-size: 0.95rem;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 24px;
}
.pf-svc-lead-trust {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.pf-svc-lead-trust span {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	font-weight: 600;
	color: #334155;
}

/* Form */
.pf-svc-lead-form {
	background: #fff;
	border: 1px solid #E2E8F0;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 8px 32px rgba(10, 102, 194, 0.06);
}
.pf-svc-form-field {
	margin-bottom: 18px;
}
.pf-svc-form-field label {
	display: block;
	font-size: 0.82rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 8px;
}
.pf-svc-form-input {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
	font-size: 0.92rem;
	color: #0f172a;
	background: #f8fafc;
	transition: all 0.2s;
	font-family: inherit;
}
.pf-svc-form-input:focus {
	outline: none;
	border-color: #3B82F6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
	background: #fff;
}

/* Contact method buttons */
.pf-svc-contact-methods {
	display: flex;
	gap: 6px;
	margin-bottom: 10px;
}
.pf-svc-method-btn {
	flex: 1;
	padding: 9px 6px;
	border: 1.5px solid #e2e8f0;
	border-radius: 6px;
	background: #fff;
	color: #475569;
	font-size: 0.78rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s;
	text-align: center;
}
.pf-svc-method-btn:hover {
	border-color: #93C5FD;
}
.pf-svc-method-btn.active {
	border-color: #0A66C2;
	background: #EFF6FF;
	color: #0A66C2;
}
.pf-svc-contact-input {
	display: none;
}
.pf-svc-contact-input.active {
	display: block;
}

/* Submit */
.pf-svc-form-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px;
	background: #0A66C2;
	color: #fff;
	font-weight: 700;
	font-size: 0.88rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: none;
	border-radius: 0;
	cursor: pointer;
	transition: all 0.2s;
	box-shadow: 0 4px 14px rgba(10, 102, 194, 0.2);
}
.pf-svc-form-submit:hover {
	background: #004182;
	transform: translateY(-1px);
}
.pf-svc-form-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Success */
.pf-svc-lead-success {
	text-align: center;
	grid-column: 1 / -1;
	padding: 40px 0;
}
.pf-svc-success-circle {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0A66C2, #3B82F6);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	box-shadow: 0 8px 24px rgba(10, 102, 194, 0.25);
}
.pf-svc-lead-success h3 {
	font-size: 1.4rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 8px;
}
.pf-svc-lead-success p {
	color: #64748b;
	margin-bottom: 20px;
}
.pf-svc-success-wa {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	background: #25D366;
	color: #fff;
	font-weight: 700;
	font-size: 0.82rem;
	border-radius: 8px;
	text-decoration: none;
}
.pf-svc-success-wa:hover {
	background: #1ebe5b;
	color: #fff;
}

/* ============================================================
   WEBSITE PRICING — Journey Path Design
   ============================================================ */
.pf-wp-pricing {
	padding: 80px 24px;
	background: linear-gradient(180deg, #f0f7ff 0%, #fff 50%, #f8faff 100%);
	position: relative;
	overflow: hidden;
}
/* Decorative blobs */
.pf-wp-pricing::before {
	content: '';
	position: absolute;
	top: -100px;
	left: -80px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(10, 102, 194, 0.07) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.pf-wp-pricing::after {
	content: '';
	position: absolute;
	bottom: -120px;
	right: -100px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.pf-wp-pricing-header {
	text-align: center;
	margin-bottom: 48px;
	position: relative;
	z-index: 1;
}
.pf-wp-pricing-kicker {
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	color: #0A66C2;
	background: #EFF6FF;
	border: 1px solid #DBEAFE;
	padding: 5px 14px;
	border-radius: 99px;
	margin-bottom: 14px;
}
.pf-wp-pricing-header h2 {
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -1px;
	margin-bottom: 8px;
}
.pf-wp-pricing-header p {
	font-size: 1rem;
	color: #64748b;
}

/* Journey container — 3-column on desktop */
.pf-wp-journey {
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	align-items: start;
	gap: 0;
}

/* Connector between plans — horizontal on desktop */
.pf-wp-connector {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 0 0;
}
.pf-wp-connector-line {
	width: 40px;
	height: 2px;
	background: linear-gradient(90deg, #BFDBFE, #93C5FD);
}
.pf-wp-connector-arrow {
	margin-top: 0;
	margin-left: -4px;
	transform: none;
}

/* Plan block */
.pf-wp-plan {
	position: relative;
}

/* Stack vertically on mobile */
@media (max-width: 900px) {
	.pf-wp-journey {
		display: flex;
		flex-direction: column;
		max-width: 420px;
		gap: 0;
	}
	.pf-wp-connector {
		padding: 8px 0;
	}
	.pf-wp-connector-line {
		width: 2px;
		height: 32px;
		background: linear-gradient(180deg, #BFDBFE, #93C5FD);
	}
	.pf-wp-connector-arrow {
		transform: rotate(90deg);
		margin-left: 0;
		margin-top: -4px;
	}
}
.pf-wp-plan-marker {
	display: flex;
	justify-content: center;
	margin-bottom: -16px;
	position: relative;
	z-index: 2;
}
.pf-wp-plan-num {
	width: 34px;
	height: 34px;
	background: linear-gradient(135deg, #0A66C2, #3B82F6);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 800;
	box-shadow: 0 4px 14px rgba(10, 102, 194, 0.3), 0 0 0 4px rgba(10, 102, 194, 0.08);
}

/* Plan card base — gradient border via background trick */
.pf-wp-plan-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	background: #fff;
	border: none;
	/* Gradient border via box-shadow inset simulation */
	box-shadow: inset 0 0 0 1.5px #DBEAFE, 0 4px 20px rgba(10, 102, 194, 0.04);
}
.pf-wp-plan-card::before {
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	border-radius: 20px;
	background: linear-gradient(135deg, #93C5FD, #DBEAFE, #EFF6FF, #DBEAFE, #93C5FD);
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s ease;
}
.pf-wp-plan-card:hover {
	box-shadow: inset 0 0 0 2px #93C5FD, 0 24px 56px rgba(10, 102, 194, 0.12);
	transform: translateY(-6px);
}
.pf-wp-plan-card:hover::before {
	opacity: 1;
}

/* Featured plan (Professional) — animated gradient border */
.pf-wp-plan-featured {
	box-shadow: none !important;
	border: none;
}
.pf-wp-plan-featured::before {
	opacity: 1 !important;
	background: linear-gradient(135deg, #0A66C2, #3B82F6, #60A5FA, #3B82F6, #0A66C2) !important;
	background-size: 300% 300% !important;
	animation: pfGradientShift 6s ease infinite !important;
}
.pf-wp-plan-featured::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	right: 2px;
	bottom: 2px;
	background: #fff;
	border-radius: 18px;
	z-index: -1;
}
.pf-wp-plan-featured:hover {
	transform: translateY(-8px);
	box-shadow: 0 28px 64px rgba(10, 102, 194, 0.18) !important;
}
@keyframes pfGradientShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}
.pf-wp-plan-badge-pop {
	background: linear-gradient(90deg, #0A66C2, #3B82F6);
	color: #fff;
	text-align: center;
	padding: 7px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
	position: relative;
	z-index: 1;
}

/* Agency plan — premium gradient accent */
.pf-wp-plan-dark {
	background: linear-gradient(160deg, #fff 0%, #EFF6FF 100%);
}
.pf-wp-plan-dark::before {
	opacity: 1 !important;
	background: linear-gradient(135deg, #0f172a, #0A66C2, #3B82F6, #0A66C2, #0f172a) !important;
}
.pf-wp-plan-dark::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	right: 2px;
	bottom: 2px;
	background: linear-gradient(160deg, #fff 0%, #EFF6FF 100%);
	border-radius: 18px;
	z-index: -1;
}
.pf-wp-plan-dark:hover {
	box-shadow: 0 24px 56px rgba(10, 102, 194, 0.16) !important;
}
.pf-wp-plan-dark .pf-wp-plan-label {
	color: #0A66C2;
}
.pf-wp-plan-dark .pf-wp-plan-price {
	color: #0f172a;
}
.pf-wp-plan-dark .pf-wp-plan-tagline {
	color: #64748b;
}

/* Plan top section */
.pf-wp-plan-top {
	padding: 28px 24px 20px;
	text-align: center;
	position: relative;
	z-index: 1;
}
.pf-wp-plan-label {
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: #0A66C2;
	margin-bottom: 8px;
}
.pf-wp-plan-price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 2px;
	margin-bottom: 6px;
	background: linear-gradient(135deg, #0f172a 0%, #0A66C2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
	z-index: 1;
}
.pf-wp-plan-featured .pf-wp-plan-price,
.pf-wp-plan-dark .pf-wp-plan-price {
	background: linear-gradient(135deg, #0A66C2 0%, #3B82F6 50%, #60A5FA 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.pf-wp-currency {
	font-size: 1.4rem;
	font-weight: 700;
}
.pf-wp-amount {
	font-size: 3.2rem;
	font-weight: 900;
	letter-spacing: -2px;
	line-height: 1;
}
.pf-wp-plus {
	font-size: 1.6rem;
	font-weight: 700;
	opacity: 0.5;
}
.pf-wp-plan-tagline {
	font-size: 0.82rem;
	color: #94a3b8;
}

/* Plan body */
.pf-wp-plan-body,
.pf-wp-plan-cta {
	position: relative;
	z-index: 1;
}
.pf-wp-plan-body {
	padding: 0 24px 24px;
}
.pf-wp-plan-highlight {
	display: flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
	border: 1px solid #BFDBFE;
	border-radius: 12px;
	padding: 14px 16px;
	font-size: 0.88rem;
	font-weight: 700;
	color: #0A66C2;
	margin-bottom: 16px;
	position: relative;
	z-index: 1;
	box-shadow: 0 2px 8px rgba(10, 102, 194, 0.06);
}
.pf-wp-plan-includes {
	font-size: 0.78rem;
	font-weight: 700;
	color: #0A66C2;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid #EFF6FF;
}

/* Feature list */
.pf-wp-plan-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.pf-wp-plan-list li {
	position: relative;
	padding: 6px 0 6px 24px;
	font-size: 0.85rem;
	color: #475569;
	line-height: 1.5;
}
.pf-wp-plan-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	width: 14px;
	height: 14px;
	background: #DBEAFE;
	border-radius: 4px;
	background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230A66C2' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 10px;
}
.pf-wp-plan-dark .pf-wp-plan-list li {
	color: #475569;
}
.pf-wp-plan-dark .pf-wp-plan-list li::before {
	background-color: #DBEAFE;
	background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230A66C2' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* Agency extras */
.pf-wp-agency-desc {
	font-size: 0.88rem;
	color: #475569;
	line-height: 1.65;
	margin-bottom: 20px;
}
.pf-wp-agency-features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}
.pf-wp-agency-features span {
	padding: 7px 14px;
	background: #EFF6FF;
	border: 1px solid #DBEAFE;
	border-radius: 8px;
	font-size: 0.78rem;
	font-weight: 700;
	color: #0A66C2;
}
.pf-wp-agency-consult {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: #ECFDF5;
	border: 1px solid #BBF7D0;
	border-radius: 10px;
	font-size: 0.85rem;
	font-weight: 700;
	color: #16a34a;
}

/* CTA buttons */
.pf-wp-plan-cta {
	display: block;
	text-align: center;
	padding: 16px;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease;
	border-top: 1px solid #E2E8F0;
	color: #0A66C2;
	background: linear-gradient(135deg, #f8fafc 0%, #EFF6FF 100%);
}
.pf-wp-plan-cta:hover {
	background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
	color: #004182;
}
.pf-wp-cta-featured {
	background: linear-gradient(135deg, #0A66C2 0%, #3B82F6 100%) !important;
	color: #fff !important;
	border-top: none;
	box-shadow: 0 4px 14px rgba(10, 102, 194, 0.2);
}
.pf-wp-cta-featured:hover {
	background: linear-gradient(135deg, #004182 0%, #0A66C2 100%) !important;
	color: #fff !important;
	box-shadow: 0 6px 20px rgba(10, 102, 194, 0.3);
}
.pf-wp-plan-cta.pf-wp-cta-dark {
	background: linear-gradient(135deg, #0A66C2 0%, #3B82F6 100%) !important;
	color: #fff !important;
	border-top: none;
	box-shadow: 0 4px 14px rgba(10, 102, 194, 0.2);
}
.pf-wp-plan-cta.pf-wp-cta-dark:hover {
	background: linear-gradient(135deg, #004182 0%, #0A66C2 100%) !important;
	color: #fff !important;
	box-shadow: 0 6px 20px rgba(10, 102, 194, 0.3);
}

/* Plan marker colors */
.pf-wp-plan-pro .pf-wp-plan-num {
	background: linear-gradient(135deg, #0A66C2, #3B82F6);
	box-shadow: 0 4px 16px rgba(10, 102, 194, 0.35);
	width: 36px;
	height: 36px;
	font-size: 13px;
}
.pf-wp-plan-agency .pf-wp-plan-num {
	background: #0A66C2;
	border: 2px solid #DBEAFE;
}

/* Responsive */
@media (max-width: 520px) {
	.pf-wp-pricing {
		padding: 48px 16px;
	}
	.pf-wp-amount {
		font-size: 2.6rem;
	}
	.pf-wp-plan-card {
		border-radius: 12px;
	}
}

/* Responsive */
@media (max-width: 768px) {
	.pf-svc-lead-inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.pf-svc-hero {
		padding: 40px 16px 32px;
	}
	.pf-svc-features, .pf-svc-pr-section, .pf-svc-lead,
	.pf-svc-hiw, .pf-svc-testimonials, .pf-svc-faq, .pf-svc-seo-content,
	.pf-svc-why, .pf-svc-pricing {
		padding-left: 16px;
		padding-right: 16px;
	}
	.pf-svc-why-grid {
		grid-template-columns: 1fr;
	}
	.pf-svc-pricing-grid {
		grid-template-columns: 1fr;
	}
	.pf-svc-price-featured {
		transform: none;
		order: -1;
	}
	.pf-svc-hero-stats {
		gap: 20px;
	}
	.pf-hero-float, .pf-hero-chip {
		display: none;
	}
	.pf-hero-ring-2, .pf-hero-ring-3 {
		display: none;
	}
	.pf-svc-trust-bar {
		justify-content: flex-start;
		overflow-x: auto;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
	}
	.pf-svc-trust-item {
		white-space: nowrap;
		flex-shrink: 0;
	}
	.pf-svc-hiw-steps {
		flex-direction: column;
		gap: 32px;
	}
	.pf-svc-hiw-arrow {
		display: none;
	}
	.pf-svc-test-grid {
		grid-template-columns: 1fr;
	}
	.pf-svc-section-title {
		font-size: 1.5rem;
	}
	.pf-svc-features-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.pf-svc-contact-methods {
		flex-direction: column;
	}
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.pf-contact-page {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
}
.pf-contact-hero {
	text-align: center;
	padding: 48px 0 40px;
}
.pf-contact-hero-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
	border: 2px solid #BFDBFE;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
}
.pf-contact-hero h1 {
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -1px;
	margin-bottom: 8px;
}
.pf-contact-hero p {
	font-size: 1rem;
	color: #64748b;
	max-width: 48ch;
	margin: 0 auto;
}

.pf-contact-grid {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 32px;
	align-items: start;
	padding-bottom: 60px;
}

/* Channel cards */
.pf-contact-channels {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.pf-contact-channel {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
	background: #fff;
	border: 1px solid #E2E8F0;
	border-radius: 14px;
	text-decoration: none;
	color: inherit;
	transition: all 0.25s ease;
}
.pf-contact-channel:hover {
	border-color: #93C5FD;
	box-shadow: 0 8px 24px rgba(10, 102, 194, 0.08);
	transform: translateY(-2px);
}
.pf-contact-ch-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.pf-contact-ch-wa { background: #ECFDF5; color: #16a34a; }
.pf-contact-ch-em { background: #EFF6FF; color: #0A66C2; }
.pf-contact-ch-time { background: #FFF7ED; color: #ea580c; }
.pf-contact-channel strong {
	display: block;
	font-size: 0.88rem;
	font-weight: 700;
	color: #0f172a;
}
.pf-contact-channel span {
	font-size: 0.78rem;
	color: #64748b;
}

/* Contact form */
.pf-contact-form {
	background: #fff;
	border: 1px solid #E2E8F0;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 8px 32px rgba(10, 102, 194, 0.05);
}
.pf-contact-form-field {
	margin-bottom: 18px;
}
.pf-contact-form-field label {
	display: block;
	font-size: 0.82rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 8px;
}
.pf-contact-form-input {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
	font-size: 0.92rem;
	color: #0f172a;
	background: #f8fafc;
	transition: all 0.2s;
	font-family: inherit;
}
.pf-contact-form-input:focus {
	outline: none;
	border-color: #3B82F6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
	background: #fff;
}
.pf-contact-form-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px;
	background: #0A66C2;
	color: #fff;
	font-weight: 700;
	font-size: 0.88rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: none;
	border-radius: 0;
	cursor: pointer;
	transition: all 0.2s;
	box-shadow: 0 4px 14px rgba(10, 102, 194, 0.2);
}
.pf-contact-form-submit:hover {
	background: #004182;
	transform: translateY(-1px);
}
.pf-contact-form-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

@media (max-width: 768px) {
	.pf-contact-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.pf-contact-channels {
		flex-direction: row;
		overflow-x: auto;
		gap: 10px;
	}
	.pf-contact-channel {
		min-width: 200px;
		flex-shrink: 0;
	}
}

/* ── COUNTRY CARDS SECTION ── */
.pf-countries-section {
	padding: 80px 20px;
	background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}
.pf-countries-inner {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}
.pf-countries-inner h2 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	letter-spacing: -0.03em;
	color: #0f172a;
	margin-bottom: 8px;
}
.pf-countries-sub {
	color: #64748b;
	font-size: 1rem;
	margin-bottom: 40px;
	max-width: 50ch;
	margin-left: auto;
	margin-right: auto;
}
.pf-countries-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 12px;
	text-align: left;
}
.pf-country-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: #fff;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	text-decoration: none;
	color: #1e293b;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.25s ease;
	box-shadow: 0 2px 8px rgba(10, 102, 194, 0.03);
}
.pf-country-card:hover {
	border-color: #93C5FD;
	box-shadow: 0 8px 24px rgba(10, 102, 194, 0.1);
	transform: translateY(-3px);
	color: #0A66C2;
}
.pf-country-flag {
	font-size: 1.4rem;
	line-height: 1;
	flex-shrink: 0;
}
.pf-country-name {
	flex: 1;
}
.pf-country-arrow {
	opacity: 0;
	transform: translateX(-4px);
	transition: all 0.2s ease;
	color: #0A66C2;
	flex-shrink: 0;
}
.pf-country-card:hover .pf-country-arrow {
	opacity: 1;
	transform: translateX(0);
}
.pf-countries-more {
	margin-top: 28px;
}
.pf-countries-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 28px;
	background: #0A66C2;
	color: #fff;
	font-weight: 700;
	font-size: 0.88rem;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	transition: all 0.2s;
	box-shadow: 0 4px 14px rgba(10, 102, 194, 0.2);
}
.pf-countries-more-btn:hover {
	background: #004182;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(10, 102, 194, 0.35);
	color: #fff;
}
@media (max-width: 768px) {
	.pf-countries-section {
		padding: 48px 16px;
	}
	.pf-countries-grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	.pf-country-card {
		padding: 12px 14px;
		font-size: 0.82rem;
	}
}
@media (max-width: 420px) {
	.pf-countries-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   INFOGRAPHIC SECTION — Light Mode
   ============================================================ */
#li-infographic-container {
	background: #F3F2EF !important;
	padding: 90px 24px !important;
	color: #1D2226 !important;
	position: relative !important;
	overflow: hidden !important;
}
/* Decorative soft orbs */
#li-infographic-container::before {
	content: '' !important;
	position: absolute !important;
	top: -20% !important;
	left: -10% !important;
	width: 500px !important;
	height: 500px !important;
	background: radial-gradient(circle, rgba(10, 102, 194, 0.07) 0%, transparent 70%) !important;
	pointer-events: none !important;
	z-index: 0 !important;
}
#li-infographic-container::after {
	content: '' !important;
	position: absolute !important;
	bottom: -30% !important;
	right: -10% !important;
	width: 600px !important;
	height: 600px !important;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%) !important;
	pointer-events: none !important;
	z-index: 0 !important;
}

/* All content above the orbs */
#li-infographic-container > * {
	position: relative !important;
	z-index: 1 !important;
}

/* Headings */
#li-infographic-container h2 {
	color: #0f172a !important;
	font-size: clamp(28px, 3.5vw, 42px) !important;
	font-weight: 800 !important;
	letter-spacing: -1px !important;
	text-align: center !important;
	margin-bottom: 8px !important;
}
#li-infographic-container h3 {
	color: #1e293b !important;
	font-weight: 700 !important;
	font-size: 1.2rem !important;
}
#li-infographic-container h4 {
	color: #0A66C2 !important;
	font-weight: 700 !important;
	font-size: 1rem !important;
	text-transform: uppercase !important;
	letter-spacing: 0.06em !important;
}

/* Cards */
#li-infographic-container .li-card {
	background: #ffffff !important;
	border: 1px solid #E0DFDC !important;
	border-radius: 16px !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
	color: #1D2226 !important;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
#li-infographic-container .li-card:hover {
	border-color: rgba(10, 102, 194, 0.25) !important;
	box-shadow: 0 16px 48px rgba(10, 102, 194, 0.1) !important;
	transform: translateY(-4px) !important;
	background: #ffffff !important;
}

/* Text */
#li-infographic-container p,
#li-infographic-container p.text-gray-700,
#li-infographic-container p.text-gray-600,
#li-infographic-container p.text-gray-500 {
	color: #475569 !important;
	line-height: 1.7 !important;
}
#li-infographic-container ul.text-gray-700,
#li-infographic-container ul {
	color: #475569 !important;
}

/* Flow line (timeline connector) */
#li-infographic-container .flow-line {
	background: linear-gradient(180deg, #0A66C2 0%, #3B82F6 50%, #93C5FD 100%) !important;
	width: 3px !important;
	border-radius: 99px !important;
	box-shadow: 0 0 10px rgba(10, 102, 194, 0.15) !important;
}

/* Flow items (timeline steps) */
#li-infographic-container .flow-item {
	border: 1px solid #E0DFDC !important;
	border-radius: 14px !important;
	background: #ffffff !important;
	color: #1D2226 !important;
	padding: 24px !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
	transition: all 0.3s ease !important;
	position: relative !important;
}
#li-infographic-container .flow-item::before {
	content: '' !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 4px !important;
	height: 100% !important;
	background: linear-gradient(180deg, #0A66C2, #3B82F6) !important;
	border-radius: 4px 0 0 4px !important;
	opacity: 0 !important;
	transition: opacity 0.3s ease !important;
}
#li-infographic-container .flow-item:hover {
	border-color: rgba(10, 102, 194, 0.2) !important;
	box-shadow: 0 12px 36px rgba(10, 102, 194, 0.1) !important;
	transform: translateX(4px) !important;
	background: #EAF4FF !important;
}
#li-infographic-container .flow-item:hover::before {
	opacity: 1 !important;
}
#li-infographic-container .flow-item strong {
	color: #0A66C2 !important;
	font-weight: 700 !important;
}
#li-infographic-container .flow-item p {
	color: #475569 !important;
	font-size: 14px !important;
	line-height: 1.65 !important;
}

/* Numbers / counters inside infographic */
#li-infographic-container .flow-item .text-2xl,
#li-infographic-container .flow-item .text-3xl,
#li-infographic-container .flow-item .text-4xl {
	color: #0A66C2 !important;
	font-weight: 900 !important;
}

/* Responsive */
@media (max-width: 768px) {
	#li-infographic-container {
		padding: 60px 16px !important;
	}
	#li-infographic-container .flow-item {
		padding: 18px !important;
	}
	#li-infographic-container h2 {
		font-size: 1.6rem !important;
	}
}

/* ── ENHANCED FEATURES SECTION ── */
.pf-feature-card {
	position: relative !important;
}
.pf-feature-card::before {
	content: '' !important;
	position: absolute !important;
	top: 24px !important;
	right: 24px !important;
	width: 48px !important;
	height: 48px !important;
	background: linear-gradient(135deg, #EFF6FF, #DBEAFE) !important;
	border-radius: 12px !important;
	z-index: 0 !important;
	opacity: 0.6 !important;
	transition: all 0.3s ease !important;
}
.pf-feature-card:hover::before {
	opacity: 1 !important;
	transform: scale(1.1) !important;
}
.pf-feature-icon {
	position: relative !important;
	z-index: 1 !important;
	background: linear-gradient(135deg, #EFF6FF, #DBEAFE) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	opacity: 1 !important;
	font-size: 42px !important;
}

/* ── ABOUT US PAGE — LinkedIn Blue Professional ── */
body.page-template-default .pf-page,
body.page:not(.pf-svc-page-fullwidth) .pf-page {
	background: transparent !important;
	box-shadow: none !important;
	border: none !important;
	border-radius: 0 !important;
	padding: 0 !important;
	max-width: 1200px !important;
	margin: 0 auto 40px !important;
}
body.page .pf-page-title {
	display: none !important;
}
body.page .pf-page-content {
	font-size: 1.05rem !important;
	line-height: 1.85 !important;
	color: #334155 !important;
}
body.page .pf-page-content h2 {
	font-size: 1.6rem !important;
	font-weight: 800 !important;
	color: #0f172a !important;
	margin-top: 2.5em !important;
	margin-bottom: 0.8em !important;
	letter-spacing: -0.5px !important;
	padding-left: 16px !important;
	border-left: 4px solid #0A66C2 !important;
}
body.page .pf-page-content h3 {
	font-size: 1.25rem !important;
	font-weight: 700 !important;
	color: #1e293b !important;
	margin-top: 2em !important;
}
body.page .pf-page-content p {
	color: #475569 !important;
	max-width: 75ch !important;
}
body.page .pf-page-content a {
	color: #0A66C2 !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	border-bottom: 1px solid #BFDBFE !important;
	transition: all 0.2s !important;
}
body.page .pf-page-content a:hover {
	color: #004182 !important;
	border-bottom-color: #0A66C2 !important;
}
body.page .pf-page-content ul,
body.page .pf-page-content ol {
	padding-left: 0 !important;
	list-style: none !important;
}
body.page .pf-page-content ul li,
body.page .pf-page-content ol li {
	position: relative !important;
	padding-left: 28px !important;
	margin-bottom: 12px !important;
	color: #475569 !important;
}
body.page .pf-page-content ul li::before {
	content: '' !important;
	position: absolute !important;
	left: 0 !important;
	top: 10px !important;
	width: 8px !important;
	height: 8px !important;
	background: #0A66C2 !important;
	border-radius: 2px !important;
}
body.page .pf-page-content ol {
	counter-reset: pf-ol !important;
}
body.page .pf-page-content ol li::before {
	counter-increment: pf-ol !important;
	content: counter(pf-ol) !important;
	position: absolute !important;
	left: 0 !important;
	top: 1px !important;
	width: 22px !important;
	height: 22px !important;
	background: #EFF6FF !important;
	color: #0A66C2 !important;
	border-radius: 6px !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}
body.page .pf-page-content blockquote {
	border-left: 4px solid #0A66C2 !important;
	background: #EFF6FF !important;
	padding: 24px 28px !important;
	border-radius: 0 12px 12px 0 !important;
	margin: 2em 0 !important;
	font-style: normal !important;
	color: #1e293b !important;
}
body.page .pf-page-content img {
	border-radius: 12px !important;
	box-shadow: 0 8px 30px rgba(10, 102, 194, 0.08) !important;
}
/* About page Gutenberg blocks */
body.page .pf-page-content .wp-block-group {
	background: #fff !important;
	border: 1px solid #E2E8F0 !important;
	border-radius: 16px !important;
	padding: 32px !important;
	margin: 2em 0 !important;
	box-shadow: 0 4px 16px rgba(10, 102, 194, 0.03) !important;
}
body.page .pf-page-content .wp-block-columns {
	gap: 32px !important;
}
body.page .pf-page-content .wp-block-column {
	background: #fff !important;
	border: 1px solid #E2E8F0 !important;
	border-radius: 16px !important;
	padding: 28px !important;
	box-shadow: 0 4px 16px rgba(10, 102, 194, 0.03) !important;
	transition: all 0.3s ease !important;
}
body.page .pf-page-content .wp-block-column:hover {
	border-color: #BFDBFE !important;
	box-shadow: 0 12px 36px rgba(10, 102, 194, 0.08) !important;
	transform: translateY(-2px) !important;
}
body.page .pf-page-content .wp-block-button__link {
	background: #0A66C2 !important;
	color: #fff !important;
	border-radius: 0 !important;
	padding: 14px 32px !important;
	font-weight: 700 !important;
	font-size: 0.9rem !important;
	text-transform: uppercase !important;
	letter-spacing: 0.06em !important;
	box-shadow: 0 4px 14px rgba(10, 102, 194, 0.25) !important;
	transition: all 0.2s !important;
}
body.page .pf-page-content .wp-block-button__link:hover {
	background: #004182 !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 24px rgba(10, 102, 194, 0.35) !important;
}
/* About page cover/hero */
body.page .pf-page-content .wp-block-cover {
	border-radius: 16px !important;
	overflow: hidden !important;
	min-height: 300px !important;
}
/* About page separator */
body.page .pf-page-content .wp-block-separator {
	border: none !important;
	height: 2px !important;
	background: linear-gradient(90deg, transparent, #BFDBFE, #0A66C2, #BFDBFE, transparent) !important;
	margin: 3em 0 !important;
	opacity: 1 !important;
}


/* ── ABOUT PAGE MOBILE ── */
@media (max-width: 768px) {
	body.page .pf-page-title {
		font-size: 1.8rem !important;
	}
	body.page .pf-page-content .wp-block-columns {
		flex-direction: column !important;
		gap: 20px !important;
	}
	body.page .pf-page-content .wp-block-column {
		padding: 20px !important;
	}
	body.page .pf-page-content .wp-block-group {
		padding: 20px !important;
	}
	body.page .pf-page-content h2 {
		font-size: 1.35rem !important;
	}
}

/* ── HOMEPAGE RESPONSIVE ── */
@media (max-width: 768px) {
	.pf-premium-hero-section {
		padding: 60px 16px 40px !important;
	}
	.pf-hero-container {
		flex-direction: column !important;
		gap: 32px !important;
	}
	.pf-features-grid {
		grid-template-columns: 1fr !important;
	}
	.pf-cta-banner {
		padding: 60px 20px !important;
	}
	.pf-glass-card {
		transform: none !important;
	}
}

/* ============================================================
   FULL-WIDTH PAGE OVERRIDES — highest specificity, last in file
   ============================================================ */
body.pf-svc-page-fullwidth #pf-content,
body.pf-svc-page-fullwidth .pf-container,
body.pf-svc-page-fullwidth .pf-main-area,
body.pf-svc-page-fullwidth .pf-page,
body.pf-svc-page-fullwidth .pf-content-grid,
body.pf-svc-page-fullwidth .pf-main-col {
	max-width: 100% !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	border: none !important;
	border-radius: 0 !important;
}
body.pf-svc-page-fullwidth #pf-content {
	padding-bottom: 0 !important;
}
body.pf-svc-page-fullwidth .pf-svc-page {
	max-width: 100% !important;
	width: 100% !important;
}
