:root {
	--pd-green: #159447;
	--pd-green-dark: #0f6f36;
	--pd-ink: #142033;
	--pd-muted: #667085;
	--pd-line: #e4e9f0;
	--pd-surface: #ffffff;
	--pd-soft: #f5faf7;
}

.pd-dashboard {
	background: #f6f8fb;
	color: var(--pd-ink);
}

.pd-dashboard .wrapper {
	min-height: 100vh;
	background: #f7f9fc;
}

.pd-dashboard .dashboard-sidebar {
	width: 246px;
	border-right: 1px solid #e8edf2;
	background: #fff !important;
	box-shadow: none;
}

.pd-dashboard .sidebar-logo {
	display: flex;
	height: 78px;
	align-items: center;
	border-bottom: 1px solid #edf0f4;
	background: #fff;
	padding: 12px 24px;
}

.pd-dashboard .sidebar-logo .logo img {
	width: auto;
	max-width: 184px;
	max-height: 44px;
	object-fit: contain;
	image-rendering: auto;
}

.pd-dashboard .sidebar-nav {
	padding: 16px 14px 28px;
}

.pd-dashboard .sidebar-nav .nav-box {
	margin: 0 0 8px;
}

.pd-dashboard .sidebar-nav .nav-box h5 {
	display: none;
}

.pd-dashboard .sidebar-nav .nav-box ul {
	margin: 0;
}

.pd-dashboard .sidebar-nav .nav-box li {
	margin: 3px 0;
}

.pd-dashboard .sidebar-nav .nav-box a {
	display: flex;
	min-height: 46px;
	align-items: center;
	border-radius: 9px;
	background: transparent !important;
	color: #475467 !important;
	font-size: 14px;
	font-weight: 600;
	padding: 11px 13px;
	gap: 12px;
}

.pd-dashboard .sidebar-nav .nav-box a i {
	width: 20px;
	color: #667085 !important;
	font-size: 19px;
	text-align: center;
}

.pd-dashboard .sidebar-nav .nav-box a:hover {
	background: #f1faf5 !important;
	color: var(--pd-green-dark) !important;
}

.pd-dashboard .sidebar-nav .nav-box a.active {
	background: #eaf7ef !important;
	color: var(--pd-green-dark) !important;
}

.pd-dashboard .sidebar-nav .nav-box a.active i {
	color: var(--pd-green) !important;
}

.pd-dashboard .dashboard-right {
	margin-left: 246px;
	background: #f7f9fc;
}

.pd-dashboard .dashboard-right > .header {
	min-height: 78px;
	border-bottom: 1px solid #e8edf2;
	background: #fff;
	box-shadow: none;
	padding: 0 30px;
}

.pd-dashboard .header-actions,
.pd-dashboard .header-right {
	min-height: 78px;
}

.pd-dashboard .header .vist-btn {
	color: #475467;
	font-size: 13px;
	font-weight: 600;
}

.pd-dashboard .header .user-dropdown {
	border: 0;
	background: transparent;
	color: var(--pd-ink);
	font-size: 13px;
	font-weight: 700;
}

.pd-dashboard .header .user-img {
	width: 36px;
	height: 36px;
	border: 2px solid #eef2f6;
}

.pd-dashboard .dashboard-content {
	max-width: 1440px;
	margin-inline: auto;
	padding: 30px 32px 50px;
}

.pd-dashboard .dashboard-content h2 {
	color: var(--pd-ink);
	font-size: clamp(24px, 2.2vw, 34px);
	font-weight: 750;
	letter-spacing: -0.02em;
	margin-bottom: 4px;
}

.pd-dashboard .property-stats > .row {
	row-gap: 20px;
}

.pd-dashboard .property-stats .row > [class*="col-"]:nth-child(n+5) {
	display: none;
}

.pd-dashboard .stats-box {
	position: relative;
	min-height: 156px;
	padding: 24px;
	overflow: hidden;
	border: 1px solid var(--pd-line);
	border-radius: 16px;
	background: var(--pd-surface);
	box-shadow: 0 8px 24px rgba(20, 32, 51, 0.06);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.pd-dashboard .stats-box:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(20, 32, 51, 0.09);
}

.pd-dashboard .stats-box::after {
	position: absolute;
	inset: auto -24px -50px auto;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: rgba(21, 148, 71, 0.06);
	content: "";
}

.pd-dashboard .stats-box .media {
	align-items: center;
}

.pd-dashboard .stats-box p {
	margin: 0;
	color: var(--pd-muted);
	font-size: 14px;
}

.pd-dashboard .stats-box h3 {
	position: relative;
	z-index: 1;
	margin: 18px 0 0;
	color: var(--pd-ink);
	font-size: 36px;
	font-weight: 800;
	line-height: 1;
}

.pd-dashboard .stats-box .icon-box {
	display: grid;
	width: 44px;
	height: 44px;
	margin-left: auto;
	border-radius: 12px;
	background: var(--pd-soft);
	color: var(--pd-green);
	place-items: center;
}

.pd-dashboard .stats-box > .text-success,
.pd-dashboard .stats-box > .text-danger {
	display: none !important;
}

.pd-quick-actions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 14px;
	margin: 24px 0 22px;
}

.pd-dashboard-panels {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 22px;
}

.pd-panel {
	border: 1px solid var(--pd-line);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(20, 32, 51, 0.04);
	padding: 22px;
}

.pd-panel__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.pd-panel__heading h3 {
	margin: 0;
	color: var(--pd-ink);
	font-size: 16px;
}

.pd-panel__heading a {
	color: var(--pd-green);
	font-size: 12px;
	font-weight: 700;
}

.pd-panel-row {
	display: grid;
	grid-template-columns: 42px 1fr auto;
	align-items: center;
	border-top: 1px solid #f0f2f5;
	color: var(--pd-ink) !important;
	padding: 14px 0;
	gap: 12px;
	text-decoration: none !important;
}

.pd-panel-row strong,
.pd-panel-row small {
	display: block;
}

.pd-panel-row strong {
	font-size: 14px;
}

.pd-panel-row small {
	margin-top: 2px;
	color: var(--pd-muted);
	font-size: 11px;
}

.pd-panel-icon {
	display: grid;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: #eaf7ef;
	color: var(--pd-green);
	place-items: center;
}

.pd-panel-icon.is-purple {
	background: #f1ebff;
	color: #7c3aed;
}

.pd-panel-icon.is-orange {
	background: #fff0e6;
	color: #ea580c;
}

.pd-panel-arrow {
	color: #98a2b3;
	font-size: 18px;
}

.pd-property-banner {
	display: flex;
	min-height: 126px;
	align-items: center;
	justify-content: space-between;
	margin-top: 22px;
	overflow: hidden;
	border-radius: 16px;
	background: linear-gradient(115deg, #08783c, #16a05b);
	color: #fff;
	padding: 26px 30px;
	position: relative;
}

.pd-property-banner::after {
	position: absolute;
	right: -34px;
	bottom: -68px;
	width: 220px;
	height: 180px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	content: "";
}

.pd-property-banner h3 {
	margin: 0 0 6px;
	color: #fff;
	font-size: 20px;
}

.pd-property-banner p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
}

.pd-property-banner a {
	position: relative;
	z-index: 1;
	border-radius: 9px;
	background: #fff;
	color: var(--pd-green-dark) !important;
	font-size: 13px;
	font-weight: 800;
	padding: 13px 18px;
	text-decoration: none !important;
}

.pd-membership-card {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.85fr);
	margin: 0 0 22px;
	overflow: hidden;
	border: 1px solid #ccebd8;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(20, 32, 51, 0.06);
}

.pd-founding-announcement {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 18px;
	border-radius: 18px;
	background: linear-gradient(135deg, #087d3b 0%, #10ad57 100%);
	color: #fff;
	padding: 22px 26px;
	box-shadow: 0 12px 28px rgba(8, 125, 59, 0.2);
	gap: 24px;
}

.pd-founding-announcement h3 {
	margin: 0 0 8px;
	color: #fff;
	font-size: 21px;
}

.pd-founding-announcement p {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 14px;
	line-height: 1.55;
}

.pd-founding-badge {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-width: 230px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.18);
	padding: 15px 20px;
	text-align: center;
}

.pd-founding-actions {
	display: flex;
	flex: 0 0 auto;
	align-items: stretch;
	gap: 10px;
}

.pd-view-plans {
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 14px;
	background: #fff;
	color: #087d3b;
	font-size: 13px;
	font-weight: 800;
	padding: 13px 17px;
}

.pd-modal-open {
	overflow: hidden;
}

.pd-pricing-modal {
	position: fixed;
	z-index: 99999;
	inset: 0;
	display: grid;
	padding: 24px;
	background: rgba(7, 18, 34, 0.72);
	place-items: center;
}

.pd-pricing-modal[hidden] {
	display: none;
}

.pd-pricing-dialog {
	position: relative;
	width: min(1120px, 100%);
	max-height: calc(100vh - 48px);
	overflow: auto;
	border-radius: 20px;
	background: #fff;
	padding: 30px;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.pd-pricing-close {
	position: absolute;
	top: 14px;
	right: 16px;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: #eef3f0;
	color: var(--pd-ink);
	font-size: 25px;
	line-height: 1;
}

.pd-pricing-heading {
	margin-bottom: 24px;
	text-align: center;
}

.pd-pricing-heading small {
	color: var(--pd-green);
	font-weight: 800;
	text-transform: uppercase;
}

.pd-pricing-heading h2 {
	margin: 6px 0;
	font-size: 29px;
}

.pd-pricing-heading p {
	margin: 0;
	color: var(--pd-muted);
}

.pd-pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.pd-pricing-grid article {
	position: relative;
	display: flex;
	min-height: 365px;
	border: 1px solid var(--pd-line);
	border-radius: 15px;
	background: #fff;
	padding: 24px 20px 20px;
	flex-direction: column;
}

.pd-pricing-grid article.is-popular {
	border: 2px solid var(--pd-green);
	box-shadow: 0 13px 30px rgba(21, 148, 71, 0.15);
}

.pd-popular-label {
	position: absolute;
	top: -13px;
	left: 50%;
	border-radius: 999px;
	background: var(--pd-green);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	padding: 5px 12px;
	transform: translateX(-50%);
	white-space: nowrap;
}

.pd-pricing-grid h3 {
	margin: 0 0 12px;
	font-size: 19px;
}

.pd-pricing-grid > article > strong {
	color: var(--pd-green-dark);
	font-size: 23px;
}

.pd-pricing-grid > article > strong small {
	color: var(--pd-muted);
	font-size: 11px;
}

.pd-pricing-grid article > p {
	margin: 7px 0 14px;
	color: var(--pd-muted);
	font-size: 12px;
}

.pd-pricing-grid ul {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

.pd-pricing-grid li {
	position: relative;
	margin: 0 0 10px;
	padding-left: 19px;
	color: var(--pd-ink);
	font-size: 12px;
}

.pd-pricing-grid li::before {
	position: absolute;
	left: 0;
	color: var(--pd-green);
	content: "✓";
	font-weight: 800;
}

.pd-pricing-grid article > a {
	margin-top: auto;
	border-radius: 9px;
	background: var(--pd-green);
	color: #fff !important;
	font-size: 12px;
	font-weight: 800;
	padding: 11px;
	text-align: center;
	text-decoration: none !important;
}

.pd-founding-badge strong,
.pd-founding-badge span {
	display: block;
}

.pd-founding-badge span {
	margin-top: 3px;
	font-size: 13px;
}

.pd-membership-main,
.pd-membership-usage {
	padding: 24px 26px;
}

.pd-membership-main {
	background: linear-gradient(135deg, #f0fbf4 0%, #fff 72%);
}

.pd-membership-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.pd-membership-title h3 {
	margin: 0;
	color: var(--pd-ink);
	font-size: 23px;
}

.pd-plan-status {
	flex: 0 0 auto;
	border-radius: 999px;
	background: #dff7e8;
	color: #087b38;
	font-size: 12px;
	font-weight: 800;
	padding: 7px 11px;
}

.pd-plan-status.is-required {
	background: #fff0df;
	color: #a65400;
}

.pd-membership-main > p,
.pd-membership-usage p {
	margin: 9px 0 0;
	color: var(--pd-muted);
	font-size: 13px;
	line-height: 1.55;
}

.pd-membership-facts,
.pd-package-options {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 18px;
	gap: 10px;
}

.pd-membership-facts span,
.pd-package-options span {
	border: 1px solid rgba(21, 148, 71, 0.14);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.82);
	padding: 11px 13px;
}

.pd-membership-facts small,
.pd-membership-facts strong,
.pd-package-options small,
.pd-package-options strong {
	display: block;
}

.pd-membership-facts small,
.pd-package-options small,
.pd-membership-usage small {
	color: var(--pd-muted);
	font-size: 11px;
}

.pd-membership-facts strong,
.pd-package-options strong {
	margin-top: 2px;
	color: var(--pd-ink);
	font-size: 13px;
}

.pd-membership-usage {
	display: flex;
	justify-content: center;
	flex-direction: column;
	border-left: 1px solid #e5eee9;
}

.pd-membership-usage > div:first-child {
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

.pd-membership-usage > div:first-child span {
	color: var(--pd-muted);
	font-size: 12px;
}

.pd-membership-progress {
	height: 8px;
	margin: 13px 0 8px;
	overflow: hidden;
	border-radius: 999px;
	background: #eaf1ed;
}

.pd-membership-progress i {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #08a84d, #49cf7b);
}

.pd-plan-contact {
	display: inline-flex;
	align-self: flex-start;
	margin-top: 16px;
	border-radius: 9px;
	background: var(--pd-green);
	color: #fff !important;
	font-size: 13px;
	font-weight: 800;
	padding: 11px 16px;
	text-decoration: none !important;
}

.pd-team-page {
	padding-bottom: 40px;
}

.pd-team-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
	gap: 20px;
}

.pd-team-heading p {
	margin: 4px 0 0;
	color: var(--pd-muted);
}

.pd-team-add-button,
.pd-team-submit {
	border: 0;
	border-radius: 10px;
	background: var(--pd-green);
	color: #fff;
	font-weight: 700;
	padding: 12px 18px;
}

.pd-team-form {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr auto;
	align-items: end;
	gap: 14px;
	margin-bottom: 20px;
	padding: 20px;
	border: 1px solid var(--pd-line);
	border-radius: 14px;
	background: #fff;
}

.pd-team-form[hidden] {
	display: none;
}

.pd-team-form label {
	color: var(--pd-ink);
	font-size: 13px;
	font-weight: 700;
}

.pd-team-form input,
.pd-team-form select,
.pd-team-access {
	width: 100%;
	margin-top: 7px;
	border: 1px solid var(--pd-line);
	border-radius: 9px;
	background: #fff;
	padding: 10px 12px;
}

.pd-team-access-label {
	display: block;
	margin-top: 10px;
	color: var(--pd-muted);
	font-size: 11px;
	font-weight: 700;
}

.pd-team-access {
	font-size: 12px;
}

.pd-team-cancel {
	margin-left: 8px;
	border: 1px solid var(--pd-line);
	border-radius: 10px;
	background: #fff;
	padding: 11px 16px;
}

.pd-team-notice {
	margin-bottom: 16px;
	border-radius: 10px;
	padding: 12px 14px;
}

.pd-team-notice.is-success {
	background: #eaf8ef;
	color: var(--pd-green-dark);
}

.pd-team-notice.is-error {
	background: #fff0f0;
	color: #a61b1b;
}

.pd-team-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 16px;
}

.pd-team-card {
	display: flex;
	align-items: center;
	padding: 18px;
	border: 1px solid var(--pd-line);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(20, 32, 51, 0.05);
	gap: 14px;
}

.pd-team-card__avatar {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	object-fit: cover;
}

.pd-team-card__main {
	min-width: 0;
	flex: 1;
}

.pd-team-card h3 {
	margin: 0 0 3px;
	font-size: 17px;
}

.pd-team-card__main > a {
	display: block;
	overflow: hidden;
	color: var(--pd-muted);
	font-size: 13px;
	text-overflow: ellipsis;
}

.pd-team-card__stats {
	display: flex;
	margin-top: 10px;
	color: var(--pd-muted);
	font-size: 12px;
	gap: 15px;
}

.pd-team-card__stats strong {
	color: var(--pd-ink);
}

.pd-team-remove {
	border: 0;
	background: transparent;
	color: #b42318;
	font-size: 13px;
}

.pd-team-empty {
	margin-top: 18px;
	border: 1px dashed var(--pd-line);
	border-radius: 14px;
	background: #fff;
	padding: 42px 20px;
	text-align: center;
}

.pd-quick-action {
	display: flex;
	align-items: center;
	min-height: 62px;
	padding: 14px 16px;
	border: 1px solid var(--pd-line);
	border-radius: 14px;
	background: var(--pd-surface);
	color: var(--pd-ink) !important;
	font-weight: 700;
	gap: 12px;
	text-decoration: none !important;
}

.pd-quick-action:hover,
.pd-quick-action:focus {
	border-color: var(--pd-green);
	color: var(--pd-green-dark) !important;
	box-shadow: 0 8px 22px rgba(21, 148, 71, 0.1);
}

.pd-quick-action__icon {
	display: grid;
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--pd-soft);
	color: var(--pd-green);
	place-items: center;
}

.pd-dashboard .dashboard-side-menu .nav-box a {
	border-radius: 8px;
}

.pd-dashboard .dashboard-side-menu .nav-box a.active {
	background: var(--pd-green);
	color: #fff;
}

@media (max-width: 991px) {
	.pd-dashboard .dashboard-sidebar {
		width: 246px;
	}

	.pd-dashboard .dashboard-right {
		margin-left: 0;
	}

	.pd-quick-actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pd-dashboard-panels {
		grid-template-columns: 1fr;
	}

	.pd-membership-card {
		grid-template-columns: 1fr;
	}

	.pd-membership-usage {
		border-top: 1px solid #e5eee9;
		border-left: 0;
	}

	.pd-team-form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pd-founding-announcement,
	.pd-founding-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.pd-pricing-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.pd-dashboard .dashboard-content {
		padding: 22px 16px 38px;
	}

	.pd-dashboard .property-stats > .row {
		row-gap: 12px;
	}

	.pd-dashboard .stats-box {
		min-height: 118px;
		padding: 18px;
	}

	.pd-dashboard .stats-box h3 {
		margin-top: 12px;
		font-size: 30px;
	}

	.pd-quick-actions {
		grid-template-columns: 1fr;
		gap: 10px;
		margin: 18px 0;
	}

	.pd-quick-action {
		min-height: 56px;
	}

	.pd-team-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.pd-team-form {
		grid-template-columns: 1fr;
	}

	.pd-membership-main,
	.pd-membership-usage {
		padding: 20px;
	}

	.pd-founding-announcement {
		align-items: stretch;
		flex-direction: column;
		padding: 20px;
	}

	.pd-founding-badge {
		min-width: 0;
	}

	.pd-pricing-modal {
		padding: 10px;
	}

	.pd-pricing-dialog {
		max-height: calc(100vh - 20px);
		padding: 26px 16px 18px;
	}

	.pd-pricing-grid {
		grid-template-columns: 1fr;
	}

	.pd-membership-title {
		align-items: flex-start;
		flex-direction: column;
	}

	.pd-membership-facts,
	.pd-package-options {
		grid-template-columns: 1fr;
	}

	.pd-team-list {
		grid-template-columns: 1fr;
	}

	.pd-property-banner {
		align-items: flex-start;
		flex-direction: column;
		padding: 23px;
		gap: 18px;
	}
}
