:root {
	--pp-bg: #f1f5f9;
	--pp-surface: #ffffff;
	--pp-surface-soft: #e8eef5;
	--pp-text: #0f172a;
	--pp-ink: #0f172a;
	--pp-ink-soft: #334155;
	--pp-muted: #64748b;
	--pp-border: #e2e8f0;
	--pp-line: #e2e8f0;
	--pp-primary: #1f4e79;
	--pp-primary-hover: #163a5c;
	--pp-accent: #1f4e79;
	--pp-accent-soft: #e8eef5;
	--pp-ok: #15803d;
	--pp-ok-soft: #dcfce7;
	--pp-warn: #b45309;
	--pp-warn-soft: #ffedd5;
	--pp-danger: #b91c1c;
	--pp-danger-soft: #fee2e2;
	--pp-sidebar: #0f172a;
	--pp-sidebar-text: #cbd5e1;
	--pp-radius: 12px;
	--pp-radius-sm: 8px;
	--pp-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
	--pp-sidebar-w: 260px;
	--pp-max: 1280px;
	--font-display: "Outfit", sans-serif;
	--font-body: "Manrope", sans-serif;
}

.pp-dashboard,
.pp-service-page,
.pp-login,
.pp-app-shell {
	color: var(--pp-text);
	font-family: var(--font-body);
}

.pp-dashboard h2,
.pp-dashboard h3,
.pp-service-page h2,
.pp-service-page h3,
.pp-login h3,
.pp-card h4,
.pp-stat-value,
.pp-panel h2,
.pp-panel h3 {
	font-family: var(--font-display);
	letter-spacing: -0.02em;
	color: var(--pp-text);
}

/* ===== App shell (full-bleed professional layout) ===== */
.pp-dashboard.pp-app-shell,
.pp-app-shell {
	display: grid;
	grid-template-columns: var(--pp-sidebar-w) minmax(0, 1fr);
	gap: 0;
	width: 100%;
	max-width: none;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	background: var(--pp-bg);
	border: 0;
	border-radius: 0;
	box-sizing: border-box;
}

.pp-dashboard {
	background: var(--pp-bg);
	border: 0;
	border-radius: 0;
	padding: 0;
	min-height: 100vh;
	box-sizing: border-box;
}

.pp-service-page {
	width: 100%;
	max-width: var(--pp-max);
	margin: 0 auto;
	padding: 28px 28px 48px;
	box-sizing: border-box;
}

.pp-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 0;
	padding: 16px 28px;
	font-size: 13px;
	font-weight: 600;
	color: var(--pp-muted);
	background: var(--pp-surface);
	border-bottom: 1px solid var(--pp-border);
}


.pp-breadcrumb a {
	color: var(--pp-primary);
	text-decoration: none;
	font-weight: 700;
}

.pp-breadcrumb a:hover {
	text-decoration: underline;
}

.pp-breadcrumb-sep {
	opacity: 0.5;
}

.pp-breadcrumb-current {
	color: var(--pp-text);
	font-weight: 700;
}

/* ===== Dark sidebar ===== */
.pp-app-aside {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-height: 100%;
	padding: 22px 14px;
	background: var(--pp-sidebar);
	color: var(--pp-sidebar-text);
	box-sizing: border-box;
}

.pp-app-aside .pp-panel {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0 6px;
	box-shadow: none;
}

.pp-brand-block {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 2px 10px 8px;
	margin-bottom: 4px;
}

.pp-brand-block .pp-brand-mark {
	margin: 0;
	color: #fff;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: -0.03em;
	text-decoration: none;
}

.pp-brand-block .pp-brand-tag {
	margin: 0;
	color: #94a3b8;
	font-size: 11px;
	font-weight: 600;
}

.pp-profile-panel h3,
.pp-stats-panel h3,
.pp-nav-panel h3 {
	margin: 0 0 10px;
	padding: 0 10px;
	color: #64748b;
	font-family: var(--font-body);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pp-profile-panel,
.pp-stats-panel,
.pp-nav-panel {
	color: var(--pp-sidebar-text);
}

.pp-profile-panel p,
.pp-profile-panel a,
.pp-stats-panel li {
	color: var(--pp-sidebar-text);
}

.pp-profile-name {
	margin: 0 0 4px;
	padding: 0 10px;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
}

.pp-profile-email {
	margin: 0 0 10px;
	padding: 0 10px;
	opacity: 0.85;
	font-size: 13px;
}

.pp-profile-panel a {
	display: inline-flex;
	margin-left: 10px;
	color: #94a3b8;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.pp-profile-panel a:hover {
	color: #fff;
}

.pp-stats-panel ul {
	margin: 0;
	padding: 0 10px;
	list-style: none;
}

.pp-stats-panel li {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 600;
	color: #94a3b8;
}

.pp-nav-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.pp-nav-links a {
	display: flex;
	align-items: center;
	padding: 10px 12px;
	border: 0;
	border-radius: var(--pp-radius-sm);
	background: transparent;
	color: var(--pp-sidebar-text);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.pp-nav-links a:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	transform: none;
	border-color: transparent;
}

/* ===== Main content ===== */
.pp-app-main {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
	padding: 28px;
	box-sizing: border-box;
}

.pp-app-main > .pp-panel {
	background: var(--pp-surface);
	border: 1px solid var(--pp-border);
	border-radius: var(--pp-radius);
	box-shadow: var(--pp-shadow);
	padding: 22px;
}

.pp-app-main > .pp-panel > h2,
.pp-app-main > .pp-panel > h3 {
	margin: 0 0 16px;
	font-size: 18px;
	font-weight: 700;
}

.pp-panel {
	background: var(--pp-surface);
	border: 1px solid var(--pp-border);
	border-radius: var(--pp-radius);
	padding: 20px;
}

.pp-notice {
	margin: 0 0 14px;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid transparent;
	font-weight: 600;
}

.pp-notice-success {
	background: var(--pp-ok-soft);
	border-color: #86efac;
	color: #166534;
}

.pp-notice-error {
	background: var(--pp-danger-soft);
	border-color: #fca5a5;
	color: #991b1b;
}

.pp-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
}

/* ===== Cards ===== */
.pp-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: var(--pp-surface);
	border: 1px solid var(--pp-border);
	border-radius: var(--pp-radius);
	box-shadow: none;
	padding: 18px;
}

.pp-card h4 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--pp-text);
}

.pp-card-image {
	margin: -18px -18px 4px;
	border-radius: var(--pp-radius) var(--pp-radius) 0 0;
	overflow: hidden;
}

.pp-card-image img {
	display: block;
	width: 100%;
	height: 160px;
	object-fit: cover;
}

.pp-card p {
	margin: 0;
	color: var(--pp-muted);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
}

.pp-card ul {
	margin: 4px 0 0 18px;
	padding: 0;
}

.pp-card li {
	margin: 0 0 6px;
	font-size: 13px;
}

.pp-card-locked {
	background: #f8fafc;
	opacity: 1 !important;
}

.pp-card-active {
	border-color: #c5d4e4;
}

.pp-card a {
	color: var(--pp-primary);
	font-weight: 800;
	text-decoration: none;
}

.pp-card a:hover {
	text-decoration: underline;
}

/* ===== Forms / buttons ===== */
.pp-lead-pref-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.pp-pref-group > label {
	display: inline-block;
	margin-bottom: 8px;
	font-weight: 700;
}

.pp-pref-search {
	width: 100%;
	margin-bottom: 10px;
}

.pp-selected-models-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 0 0 8px;
}

.pp-selected-models-title {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	color: var(--pp-muted);
}

.pp-clear-btn {
	border: 1px solid var(--pp-border);
	border-radius: var(--pp-radius-sm);
	background: #fff;
	padding: 6px 10px;
	font-size: 13px;
	font-weight: 700;
	color: var(--pp-text);
	cursor: pointer;
}

.pp-clear-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.pp-selected-models {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 10px;
}

.pp-selected-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid #c5d4e4;
	background: var(--pp-surface-soft);
	color: #163a5c;
	font-size: 13px;
	font-weight: 700;
}

.pp-chip-remove {
	border: 0;
	background: transparent;
	color: #163a5c;
	font-size: 14px;
	line-height: 1;
	padding: 0;
	cursor: pointer;
}

.pp-selected-empty {
	color: var(--pp-muted);
	font-size: 14px;
}

.pp-pref-options {
	border: 1px solid var(--pp-border);
	border-radius: 10px;
	background: #fff;
	padding: 8px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 6px;
}

.pp-pref-option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 8px;
	border-radius: 8px;
	border: 1px solid transparent;
}

.pp-pref-option:hover {
	background: #f8fafc;
	border-color: #e2e8f0;
}

.pp-pref-option input[type="checkbox"] {
	margin: 0;
}

.pp-pref-empty {
	margin: 8px;
	color: var(--pp-muted);
	font-size: 14px;
}

/* Login (plugin form inside auth card) */
.pp-login {
	width: 100%;
	max-width: 100%;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
	box-sizing: border-box;
}

.pp-login h3 {
	display: none;
}

.pp-login p {
	margin: 0 0 14px;
}

.pp-login label {
	display: inline-block;
	margin-bottom: 6px;
	font-weight: 700;
	font-size: 13px;
	color: var(--pp-ink-soft);
}

.pp-login input[type="text"],
.pp-login input[type="password"],
.pp-service-page input[type="text"],
.pp-service-page input[type="number"],
.pp-service-page input[type="email"],
.pp-service-page input[type="date"],
.pp-service-page select,
.pp-service-page textarea,
.pp-campaign-form input[type="text"],
.pp-campaign-form input[type="number"],
.pp-campaign-form input[type="email"],
.pp-campaign-form input[type="date"],
.pp-campaign-form select,
.pp-campaign-form textarea {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid var(--pp-border);
	border-radius: 10px;
	background: #fff;
	font-size: 15px;
	font-family: var(--font-body);
	box-sizing: border-box;
}

.pp-service-page textarea,
.pp-campaign-form textarea {
	min-height: 120px;
	resize: vertical;
}

.pp-login input:focus,
.pp-service-page input:focus,
.pp-service-page select:focus,
.pp-service-page textarea:focus,
.pp-campaign-form input:focus,
.pp-campaign-form select:focus,
.pp-campaign-form textarea:focus {
	outline: none;
	border-color: var(--pp-primary);
	box-shadow: 0 0 0 3px rgba(31, 78, 121, 0.18);
}

.pp-login button,
.pp-service-page button,
.pp-card button,
.pp-campaign-form button,
.pp-primary-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border: 0;
	border-radius: var(--pp-radius-sm);
	background: var(--pp-primary);
	color: #fff;
	font-family: var(--font-body);
	font-weight: 800;
	font-size: 13px;
	cursor: pointer;
	transition: background-color 0.15s ease;
	box-shadow: none;
}

.pp-login button[name="pp_login_submit"],
.pp-login-form button[type="submit"] {
	width: 100%;
	min-height: 44px;
}

.pp-login button:hover,
.pp-service-page button:hover,
.pp-card button:hover,
.pp-campaign-form button:hover {
	background: var(--pp-primary-hover);
}

.pp-login a,
.pp-card a,
.pp-service-page a {
	color: var(--pp-primary);
	text-decoration: none;
}

.pp-login a:hover,
.pp-card a:hover,
.pp-service-page a:hover {
	text-decoration: underline;
}

.pp-login-links {
	color: var(--pp-muted);
	font-size: 13px;
	font-weight: 600;
	text-align: center;
}

.pp-login-links a {
	font-weight: 800;
}

.pp-service-copy {
	margin: 0 0 16px;
	color: var(--pp-muted);
	font-weight: 600;
}

.pp-service-image {
	margin: 0 0 14px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--pp-border);
}

.pp-service-image img {
	display: block;
	width: 100%;
	height: auto;
}

.pp-service-actions {
	margin: 0 0 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.pp-btn-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 14px;
	border-radius: var(--pp-radius-sm);
	background: var(--pp-primary);
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 800;
	font-size: 13px;
}

.pp-btn-link:hover {
	background: var(--pp-primary-hover);
}

.pp-service-dashboard {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pp-dynamic-fields {
	margin: 10px 0 4px;
	padding: 14px;
	border: 1px solid var(--pp-border);
	border-radius: 10px;
	background: var(--pp-surface-soft);
}

.pp-dynamic-fields h4 {
	margin: 0 0 10px;
	font-size: 15px;
}

.pp-target-site-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 8px;
}

.pp-target-site-row {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border: 1px solid var(--pp-border);
	border-radius: 8px;
	background: #fff;
}

.pp-hidden {
	display: none !important;
}

.pp-campaign-form button[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
}

.pp-file-input {
	width: 100%;
	border: 1px dashed var(--pp-border);
	border-radius: 10px;
	background: #fff;
	padding: 8px;
	font-size: 14px;
	color: var(--pp-muted);
}

.pp-file-input::file-selector-button {
	border: 0;
	border-radius: 8px;
	background: var(--pp-primary);
	color: #fff;
	font-weight: 700;
	padding: 8px 12px;
	margin-right: 10px;
	cursor: pointer;
}

.pp-file-input::file-selector-button:hover {
	background: var(--pp-primary-hover);
}

.pp-service-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 14px;
}

.pp-stat-card {
	background: var(--pp-surface);
	border: 1px solid var(--pp-border);
	border-radius: var(--pp-radius);
	padding: 18px;
	box-shadow: var(--pp-shadow);
}

.pp-stat-label {
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 700;
	color: var(--pp-muted);
}

.pp-stat-value {
	margin: 0;
	font-size: 28px;
	font-weight: 700;
	color: var(--pp-text);
	letter-spacing: -0.03em;
}

.pp-campaign-form {
	background: var(--pp-surface);
	border: 1px solid var(--pp-border);
	border-radius: var(--pp-radius);
	padding: 22px;
	box-shadow: var(--pp-shadow);
}

.pp-campaign-form p {
	margin: 0 0 14px;
}

.pp-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--pp-border);
	border-radius: var(--pp-radius);
	background: var(--pp-surface);
}

.pp-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.pp-table th,
.pp-table td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--pp-border);
	text-align: left;
}

.pp-table th {
	font-weight: 800;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--pp-muted);
	background: var(--pp-bg);
}

.pp-table td {
	color: var(--pp-ink-soft);
	font-weight: 600;
}

.pp-table tr:last-child td {
	border-bottom: 0;
}

.pp-dashboard--satellite .pp-satellite-intro {
	margin: 16px 28px 0;
	border-left: 4px solid var(--pp-primary);
}

.pp-dashboard--satellite .pp-satellite-site {
	font-weight: 700;
	margin: 0 0 8px;
}

.pp-dashboard--satellite .pp-satellite-hub-notice {
	margin: 0;
	font-size: 14px;
	color: var(--pp-muted);
}

/* Service page panels */
.pp-service-page .pp-panel {
	box-shadow: var(--pp-shadow);
}

.pp-service-page > h2 {
	margin: 8px 0 8px;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.03em;
}

@media (max-width: 1100px) {
	.pp-dashboard.pp-app-shell,
	.pp-app-shell {
		grid-template-columns: 1fr;
	}

	.pp-app-aside {
		min-height: 0;
	}
}

@media (max-width: 767px) {
	.pp-app-main,
	.pp-service-page {
		padding: 16px;
	}

	.pp-breadcrumb {
		padding: 12px 16px;
	}

	.pp-card {
		padding: 14px;
	}

	.pp-card-image {
		margin: -14px -14px 10px;
	}
}

/* build:1786295612 */
/* Nested app pages */
.pp-app-main .pp-service-page {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	min-height: 0;
}
.pp-app-main .pp-breadcrumb {
	padding: 0 0 16px;
	margin: 0 0 8px;
	background: transparent;
	border-bottom: 0;
}
.pp-app-main .pp-service-page > h2 {
	margin-top: 0;
}
.pp-nav-links a.is-active {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

/* build:1786295783 */

/* Shell layout: sidebar full height */
.pp-dashboard.pp-app-shell,
.pp-app-shell {
	display: grid;
	grid-template-columns: var(--pp-sidebar-w) minmax(0, 1fr);
	grid-template-rows: 1fr;
	align-items: stretch;
	gap: 0;
	width: 100%;
	max-width: none;
	min-height: 100vh;
	margin: 0;
	padding: 0;
}

.pp-app-aside {
	grid-column: 1;
	grid-row: 1;
	align-self: stretch;
	min-height: 100vh;
	height: 100%;
	position: sticky;
	top: 0;
}

.pp-app-main {
	grid-column: 2;
	grid-row: 1;
	min-width: 0;
	padding: 28px;
}

.pp-app-main > .pp-breadcrumb,
.pp-app-main .pp-breadcrumb {
	grid-column: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 0 0 18px;
	padding: 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--pp-muted);
	background: transparent;
	border-bottom: 0;
}

.pp-app-main .pp-service-page > .pp-breadcrumb {
	margin: 0 0 18px;
	padding: 0;
	background: transparent;
	border: 0;
}

@media (max-width: 1100px) {
	.pp-dashboard.pp-app-shell,
	.pp-app-shell {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
	}

	.pp-app-aside,
	.pp-app-main {
		grid-column: 1;
		grid-row: auto;
		position: static;
		min-height: 0;
		height: auto;
	}
}
/* build:1786295918 */

/* Nav service branches */
.pp-nav-section-label {
	margin: 18px 0 8px;
	padding: 0 10px;
	color: #64748b;
	font-family: var(--font-body);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pp-nav-panel > .pp-nav-section-label:first-child {
	margin-top: 0;
}

.pp-nav-links.pp-nav-sub {
	gap: 2px;
	padding-left: 6px;
	margin-bottom: 4px;
}

.pp-nav-links.pp-nav-sub a {
	font-size: 13px;
	font-weight: 600;
	padding-top: 8px;
	padding-bottom: 8px;
}
/* build:1786296024 */

/* Logout at bottom */
.pp-app-aside {
	display: flex;
	flex-direction: column;
}

.pp-logout-panel {
	margin-top: auto;
	padding-top: 16px;
}

.pp-logout-link {
	display: flex;
	align-items: center;
	padding: 10px 12px;
	border-radius: 8px;
	color: #94a3b8;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.pp-logout-link:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}
/* build:1786296097 */

/* Stats + logout bottom stack */
.pp-stats-panel,
.pp-logout-panel {
	margin-top: 0;
}

.pp-nav-panel {
	margin-bottom: 8px;
}

.pp-stats-panel {
	margin-top: auto;
	padding-top: 12px;
}

.pp-logout-panel {
	margin-top: 8px;
	padding-top: 8px;
}
/* build:1786296124 */

/* Nav dropdown */
.pp-nav-dropdown {
	margin-top: 14px;
	border: 0;
}

.pp-nav-dropdown-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	list-style: none;
	cursor: pointer;
	user-select: none;
	margin: 0;
	padding: 10px 12px;
	border-radius: 8px;
	color: #94a3b8;
	font-family: var(--font-body);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pp-nav-dropdown-trigger::-webkit-details-marker {
	display: none;
}

.pp-nav-dropdown-trigger::marker {
	content: "";
	display: none;
}

.pp-nav-dropdown-trigger:hover,
.pp-nav-dropdown.is-open > .pp-nav-dropdown-trigger {
	color: #e2e8f0;
	background: rgba(255, 255, 255, 0.06);
}

.pp-nav-dropdown-chevron {
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-45deg);
	transition: transform 0.15s ease;
	flex-shrink: 0;
	opacity: 0.8;
}

.pp-nav-dropdown[open] > .pp-nav-dropdown-trigger .pp-nav-dropdown-chevron,
.pp-nav-dropdown.is-open > .pp-nav-dropdown-trigger .pp-nav-dropdown-chevron {
	transform: rotate(45deg);
}

.pp-nav-dropdown > .pp-nav-sub {
	margin-top: 4px;
	padding-left: 6px;
}
/* build:1786296330 */


/* Billing placeholder (dashboard) */
.pp-billing-header {
	margin-bottom: 18px;
}

.pp-billing-welcome {
	margin: 4px 0 0;
	color: var(--pp-muted, #64748b);
	font-size: 0.95rem;
}

.pp-billing-note {
	margin: 6px 0 0;
	color: var(--pp-muted, #94a3b8);
	font-size: 0.82rem;
}

.pp-billing-kpis {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 0 0 22px;
}

.pp-billing-kpi {
	padding: 14px 16px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 10px;
	background: linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.7));
}

.pp-billing-kpi-label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #64748b;
	margin-bottom: 8px;
}

.pp-billing-kpi-value {
	display: block;
	font-family: var(--font-display, inherit);
	font-size: 1.55rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.1;
}

.pp-billing-list > h3 {
	margin: 0 0 12px;
}

.pp-billing-table-wrap {
	overflow-x: auto;
}

.pp-billing-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
}

.pp-billing-table th,
.pp-billing-table td {
	padding: 10px 12px;
	text-align: left;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.pp-billing-table th {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #64748b;
}

.pp-billing-empty td {
	color: #64748b;
	text-align: center;
	padding: 22px 12px;
	border-bottom: 0;
}

@media (max-width: 820px) {
	.pp-billing-kpis {
		grid-template-columns: 1fr;
	}
}
/* build:billing-placeholder */


/* Profile page */
.pp-profile-page .pp-profile-dl {
	margin: 0;
	display: grid;
	gap: 12px;
}

.pp-profile-page .pp-profile-dl > div {
	display: grid;
	grid-template-columns: minmax(110px, 160px) 1fr;
	gap: 8px 16px;
	align-items: baseline;
}

.pp-profile-page .pp-profile-dl dt {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #64748b;
}

.pp-profile-page .pp-profile-dl dd {
	margin: 0;
	color: #0f172a;
	font-weight: 600;
}

.pp-profile-service-list {
	margin: 0 0 14px;
	padding-left: 1.1rem;
	color: #0f172a;
}

.pp-profile-service-list li {
	margin: 4px 0;
}

@media (max-width: 640px) {
	.pp-profile-page .pp-profile-dl > div {
		grid-template-columns: 1fr;
		gap: 2px;
	}
}
/* build:profile-expand */
