/* ==========================================================================
   Professional Trading Platform — Landing Page Styles
   نام فضای کلاس‌ها: ptp- (جلوگیری از تداخل با سایر قالب‌ها)
   ========================================================================== */

/* ---------- Reset & Base ---------- */
.ptp-app,
.ptp-app *,
.ptp-app *::before,
.ptp-app *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.ptp-app {
	--ptp-ink: #0c1f2b;
	--ptp-ink-soft: #41586a;
	--ptp-muted: #74848f;
	--ptp-line: rgba(12, 31, 43, 0.08);
	--ptp-line-soft: rgba(12, 31, 43, 0.05);
	--ptp-bg: #ffffff;
	--ptp-bg-soft: #f5fafb;
	--ptp-bg-soft-2: #eef7f9;
	--ptp-turquoise: #0bb7a3;
	--ptp-turquoise-deep: #0a9a89;
	--ptp-cyan: #2ab6e0;
	--ptp-green: #1fbf8a;
	--ptp-red: #e5484d;
	--ptp-amber: #e8a13c;
	--ptp-violet: #7a6ff0;
	--ptp-grad: linear-gradient(120deg, #0bb7a3 0%, #2ab6e0 55%, #25c08a 120%);
	--ptp-grad-soft: linear-gradient(135deg, rgba(11, 183, 163, 0.12), rgba(42, 182, 224, 0.1), rgba(37, 192, 138, 0.1));
	--ptp-radius: 22px;
	--ptp-radius-lg: 28px;
	--ptp-radius-sm: 14px;
	--ptp-shadow: 0 10px 30px rgba(12, 31, 43, 0.06);
	--ptp-shadow-md: 0 18px 50px rgba(12, 31, 43, 0.09);
	--ptp-shadow-lg: 0 30px 80px rgba(12, 31, 43, 0.12);
	--ptp-font: "Vazirmatn", "Segoe UI", Tahoma, Arial, sans-serif;
	position: relative;
	font-family: var(--ptp-font);
	color: var(--ptp-ink);
	background: var(--ptp-bg);
	line-height: 1.9;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

.ptp-app img,
.ptp-app svg {
	display: block;
	max-width: 100%;
}

.ptp-app ul,
.ptp-app ol {
	list-style: none;
}

.ptp-app a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease;
}

.ptp-app button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
	color: inherit;
}

.ptp-app input,
.ptp-app textarea {
	font-family: inherit;
}

.ptp-app h1,
.ptp-app h2,
.ptp-app h3,
.ptp-app h4 {
	line-height: 1.5;
	font-weight: 800;
}

.ptp-app strong {
	font-weight: 700;
}

/* ---------- Layout ---------- */
.ptp-container {
	width: 100%;
	max-width: 1240px;
	margin-inline: auto;
	padding-inline: 24px;
}

.ptp-container--narrow {
	max-width: 880px;
}

.ptp-section {
	padding: 96px 0;
	position: relative;
}

.ptp-section--tint {
	background: var(--ptp-bg-soft);
}

.ptp-section__head {
	max-width: 720px;
	margin: 0 auto 56px;
	text-align: center;
}

.ptp-section__title {
	font-size: clamp(26px, 3.4vw, 40px);
	margin: 14px 0 16px;
	letter-spacing: -0.01em;
}

.ptp-section__lead {
	color: var(--ptp-ink-soft);
	font-size: 17px;
}

.ptp-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--ptp-turquoise-deep);
	background: rgba(11, 183, 163, 0.09);
	border: 1px solid rgba(11, 183, 163, 0.18);
	padding: 7px 16px;
	border-radius: 999px;
}

.ptp-accent {
	background: var(--ptp-grad);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* ---------- Grid ---------- */
.ptp-grid {
	display: grid;
	gap: 24px;
}

.ptp-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.ptp-grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

/* ---------- Buttons ---------- */
.ptp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-family: var(--ptp-font);
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	border-radius: 999px;
	padding: 13px 26px;
	border: 1px solid transparent;
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
	white-space: nowrap;
}

.ptp-btn svg {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

.ptp-btn:focus-visible {
	outline: 3px solid rgba(42, 182, 224, 0.45);
	outline-offset: 3px;
}

.ptp-btn--primary {
	color: #fff;
	background: var(--ptp-grad);
	background-size: 160% 160%;
	box-shadow: 0 12px 28px rgba(11, 183, 163, 0.28);
}

.ptp-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(11, 183, 163, 0.36);
	background-position: 100% 0;
}

.ptp-btn--secondary {
	color: var(--ptp-turquoise-deep);
	background: rgba(11, 183, 163, 0.08);
	border-color: rgba(11, 183, 163, 0.22);
}

.ptp-btn--secondary:hover {
	background: rgba(11, 183, 163, 0.14);
	transform: translateY(-2px);
}

.ptp-btn--ghost {
	color: var(--ptp-ink-soft);
	border-color: var(--ptp-line);
	background: rgba(255, 255, 255, 0.6);
}

.ptp-btn--ghost:hover {
	color: var(--ptp-turquoise-deep);
	border-color: rgba(11, 183, 163, 0.35);
}

.ptp-btn--glass {
	color: #fff;
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.35);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.ptp-btn--glass:hover {
	background: rgba(255, 255, 255, 0.24);
	transform: translateY(-2px);
}

.ptp-btn--sm {
	padding: 10px 18px;
	font-size: 13.5px;
}

.ptp-btn--lg {
	padding: 16px 34px;
	font-size: 16px;
}

/* ---------- Header ---------- */
.ptp-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	padding: 14px 0;
	transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	border-bottom: 1px solid transparent;
}

.ptp-header.is-scrolled {
	padding: 8px 0;
	background: rgba(255, 255, 255, 0.78);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	border-bottom-color: var(--ptp-line);
	box-shadow: 0 10px 40px rgba(12, 31, 43, 0.05);
}

.ptp-header__inner {
	display: flex;
	align-items: center;
	gap: 20px;
}

.ptp-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
}

.ptp-brand__mark {
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
	border-radius: 13px;
	box-shadow: 0 10px 24px rgba(11, 183, 163, 0.28);
}

.ptp-brand__mark svg {
	width: 100%;
	height: 100%;
}

.ptp-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.ptp-brand__text strong {
	font-size: 16px;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.ptp-brand__text span {
	font-size: 11.5px;
	font-weight: 600;
	color: var(--ptp-turquoise-deep);
	letter-spacing: 0.04em;
}

.ptp-nav {
	margin-inline: auto;
}

.ptp-nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
}

.ptp-nav__link {
	display: inline-block;
	padding: 9px 13px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--ptp-ink-soft);
	border-radius: 10px;
	transition: color 0.2s ease, background 0.2s ease;
}

.ptp-nav__link:hover {
	color: var(--ptp-turquoise-deep);
	background: rgba(11, 183, 163, 0.07);
}

.ptp-nav__link:focus-visible {
	outline: 3px solid rgba(42, 182, 224, 0.45);
	outline-offset: 2px;
}

.ptp-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.ptp-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 46px;
	padding: 12px;
	border-radius: 13px;
	border: 1px solid var(--ptp-line);
	background: rgba(255, 255, 255, 0.7);
}

.ptp-burger span {
	display: block;
	height: 2px;
	width: 100%;
	border-radius: 2px;
	background: var(--ptp-ink);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.ptp-burger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.ptp-burger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.ptp-burger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.ptp-burger:focus-visible {
	outline: 3px solid rgba(42, 182, 224, 0.45);
	outline-offset: 2px;
}

/* Mobile menu */
.ptp-mobile-menu {
	background: rgba(255, 255, 255, 0.96);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	border-top: 1px solid var(--ptp-line);
	border-radius: 0 0 22px 22px;
	box-shadow: 0 24px 60px rgba(12, 31, 43, 0.12);
	padding: 16px 24px 24px;
	margin-top: 12px;
}

.ptp-mobile-menu ul {
	display: flex;
	flex-direction: column;
}

.ptp-mobile-menu a {
	display: block;
	padding: 13px 8px;
	font-weight: 700;
	font-size: 15px;
	color: var(--ptp-ink);
	border-bottom: 1px solid var(--ptp-line-soft);
}

.ptp-mobile-menu__actions {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

.ptp-mobile-menu__actions .ptp-btn {
	flex: 1;
}

/* ---------- Hero ---------- */
.ptp-hero {
	position: relative;
	padding: 170px 0 40px;
	overflow: hidden;
	background:
		radial-gradient(800px 420px at 85% 10%, rgba(42, 182, 224, 0.1), transparent 60%),
		radial-gradient(700px 400px at 10% 30%, rgba(11, 183, 163, 0.09), transparent 60%);
}

.ptp-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.ptp-hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	opacity: 0.55;
}

.ptp-hero__glow--a {
	width: 480px;
	height: 480px;
	left: -120px;
	top: 40px;
	background: radial-gradient(circle, rgba(11, 183, 163, 0.16), transparent 65%);
	animation: ptp-float-slow 16s ease-in-out infinite;
}

.ptp-hero__glow--b {
	width: 520px;
	height: 520px;
	right: -140px;
	bottom: 60px;
	background: radial-gradient(circle, rgba(42, 182, 224, 0.16), transparent 65%);
	animation: ptp-float-slow 19s ease-in-out infinite reverse;
}

.ptp-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--ptp-line-soft) 1px, transparent 1px),
		linear-gradient(90deg, var(--ptp-line-soft) 1px, transparent 1px);
	background-size: 44px 44px;
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
	mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
	opacity: 0.6;
}

.ptp-hero__wave {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	width: 100%;
	height: 90px;
}

.ptp-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	align-items: center;
	gap: 48px;
}

.ptp-hero__copy {
	padding-bottom: 60px;
}

.ptp-badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 13px;
	font-weight: 700;
	color: var(--ptp-turquoise-deep);
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(11, 183, 163, 0.22);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	padding: 9px 18px;
	border-radius: 999px;
	box-shadow: var(--ptp-shadow);
}

.ptp-badge__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ptp-turquoise);
	box-shadow: 0 0 0 4px rgba(11, 183, 163, 0.15);
	animation: ptp-pulse-dot 2.4s ease-in-out infinite;
}

.ptp-hero__title {
	font-size: clamp(32px, 4.4vw, 54px);
	line-height: 1.35;
	font-weight: 800;
	margin: 22px 0 20px;
	letter-spacing: -0.015em;
}

.ptp-hero__title-accent {
	background: var(--ptp-grad);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.ptp-hero__lead {
	font-size: 17px;
	color: var(--ptp-ink-soft);
	max-width: 520px;
}

.ptp-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.ptp-hero__trust {
	margin-top: 18px;
	font-size: 13.5px;
	color: var(--ptp-muted);
}

.ptp-hero__stats {
	display: flex;
	gap: 34px;
	margin-top: 34px;
	padding-top: 26px;
	border-top: 1px solid var(--ptp-line);
	max-width: 480px;
}

.ptp-hero__stats li {
	display: flex;
	flex-direction: column;
}

.ptp-hero__stats strong {
	font-size: 22px;
	font-weight: 800;
	color: var(--ptp-ink);
}

.ptp-hero__stats span {
	font-size: 12.5px;
	color: var(--ptp-muted);
}

/* ---------- Hero dashboard visual ---------- */
.ptp-hero__visual {
	position: relative;
}

.ptp-dashboard {
	background: rgba(255, 255, 255, 0.82);
	-webkit-backdrop-filter: blur(22px);
	backdrop-filter: blur(22px);
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: var(--ptp-radius-lg);
	box-shadow: var(--ptp-shadow-lg);
	overflow: hidden;
}

.ptp-dash-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid var(--ptp-line-soft);
}

.ptp-dash-topbar__title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 800;
}

.ptp-dash-topbar__logo {
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	border-radius: 9px;
	color: #fff;
	background: var(--ptp-grad);
}

.ptp-dash-topbar__logo svg {
	width: 16px;
	height: 16px;
}

.ptp-dash-topbar__meta {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ptp-chip {
	display: inline-flex;
	align-items: center;
	font-size: 11.5px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 999px;
	line-height: 1.5;
}

.ptp-chip--soft {
	color: var(--ptp-ink-soft);
	background: rgba(12, 31, 43, 0.05);
}

.ptp-chip--active {
	color: var(--ptp-turquoise-deep);
	background: rgba(11, 183, 163, 0.1);
	border-color: rgba(11, 183, 163, 0.2);
}

.ptp-avatar {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	font-size: 13px;
	font-weight: 800;
	color: #fff;
	background: var(--ptp-grad);
}

.ptp-avatar--lg {
	width: 42px;
	height: 42px;
	font-size: 15px;
}

.ptp-avatar--xs {
	width: 24px;
	height: 24px;
	font-size: 10px;
}

/* KPI cards */
.ptp-kpis {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	padding: 16px 20px;
	border-bottom: 1px solid var(--ptp-line-soft);
}

.ptp-kpi {
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid var(--ptp-line-soft);
	border-radius: var(--ptp-radius-sm);
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ptp-kpi:hover {
	transform: translateY(-3px);
	box-shadow: var(--ptp-shadow);
}

.ptp-kpi__label {
	font-size: 11.5px;
	font-weight: 600;
	color: var(--ptp-muted);
}

.ptp-kpi__value {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.ptp-kpi__sub,
.ptp-kpi__trend {
	font-size: 11px;
	color: var(--ptp-muted);
}

.ptp-trend-up {
	color: var(--ptp-green) !important;
	font-weight: 700;
}

/* Dash main area */
.ptp-dash-main {
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 14px;
	padding: 16px 20px;
}

.ptp-dash-side {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.ptp-card {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--ptp-line-soft);
	border-radius: var(--ptp-radius);
	box-shadow: var(--ptp-shadow);
}

.ptp-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 14px 16px 0;
	font-size: 13px;
	font-weight: 800;
}

.ptp-card-head__link {
	font-size: 12px;
	font-weight: 700;
	color: var(--ptp-turquoise-deep);
}

.ptp-card-head__link:hover {
	text-decoration: underline;
}

.ptp-dash-period {
	font-size: 11px;
	font-weight: 600;
	color: var(--ptp-muted);
	background: rgba(12, 31, 43, 0.04);
	padding: 4px 10px;
	border-radius: 999px;
}

/* Charts */
.ptp-line-chart {
	position: relative;
	padding: 10px 8px 4px;
}

.ptp-line-chart svg {
	width: 100%;
	height: auto;
	min-height: 180px;
}

.ptp-chart-grid {
	stroke: var(--ptp-line);
	stroke-width: 1;
}

.ptp-chart-area {
	fill: url(#ptp-hero-area);
	opacity: 0.9;
}

.ptp-chart-area--cyan {
	fill: url(#ptp-cum-area);
}

.ptp-chart-area--green {
	fill: url(#ptp-user-area);
}

.ptp-chart-line {
	fill: none;
	stroke: var(--ptp-turquoise);
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 1400;
	stroke-dashoffset: 1400;
	animation: ptp-draw-line 2.2s ease forwards;
}

.ptp-chart-line--cyan {
	stroke: var(--ptp-cyan);
}

.ptp-chart-line--green {
	stroke: var(--ptp-green);
}

.ptp-chart-dots circle {
	fill: #fff;
	stroke: var(--ptp-turquoise);
	stroke-width: 3;
}

.ptp-chart-tooltip {
	position: absolute;
	top: 16px;
	left: 18px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--ptp-line);
	border-radius: 12px;
	box-shadow: var(--ptp-shadow-md);
	padding: 9px 14px;
	display: flex;
	flex-direction: column;
	line-height: 1.4;
	font-size: 11px;
}

.ptp-chart-tooltip strong {
	font-size: 15px;
	color: var(--ptp-green);
}

.ptp-chart-tooltip span {
	color: var(--ptp-muted);
}

/* Watchlist mini */
.ptp-watch-mini {
	display: flex;
	flex-direction: column;
}

.ptp-watch-mini li {
	display: grid;
	grid-template-columns: 1fr auto auto 46px;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	font-size: 12px;
	border-bottom: 1px solid var(--ptp-line-soft);
}

.ptp-watch-mini li:last-child {
	border-bottom: none;
}

.ptp-watch-mini__price {
	font-weight: 800;
	font-size: 12.5px;
	text-align: left;
}

.ptp-watch-mini__chg {
	font-weight: 700;
	font-size: 11.5px;
}

.ptp-sym {
	display: inline-flex;
	flex-direction: column;
	line-height: 1.3;
}

.ptp-sym b {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.ptp-sym i {
	font-style: normal;
	font-size: 10.5px;
	color: var(--ptp-muted);
}

.ptp-up {
	color: var(--ptp-green) !important;
}

.ptp-down {
	color: var(--ptp-red) !important;
}

.ptp-spark {
	width: 46px;
	height: 20px;
}

.ptp-spark polyline {
	stroke: var(--ptp-green);
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ptp-spark--down polyline {
	stroke: var(--ptp-red);
}

/* Risk meter */
.ptp-risk-meter {
	padding: 4px 16px 14px;
}

.ptp-risk-meter__bar {
	height: 8px;
	border-radius: 999px;
	background: rgba(12, 31, 43, 0.06);
	margin: 10px 0 8px;
	overflow: hidden;
}

.ptp-risk-meter__bar span {
	display: block;
	height: 100%;
	width: var(--ptp-risk);
	border-radius: 999px;
	background: linear-gradient(90deg, var(--ptp-turquoise), var(--ptp-amber));
	transition: width 1.2s ease;
}

.ptp-risk-meter__meta {
	display: flex;
	justify-content: space-between;
	font-size: 10.5px;
	color: var(--ptp-muted);
}

/* Recent trades table */
.ptp-recent-trades {
	padding: 4px 20px 18px;
}

.ptp-table-wrap {
	overflow-x: auto;
	margin-top: 8px;
	border-radius: var(--ptp-radius-sm);
	-webkit-overflow-scrolling: touch;
}

.ptp-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 12.5px;
	min-width: 480px;
}

.ptp-table th {
	text-align: right;
	font-size: 11px;
	font-weight: 700;
	color: var(--ptp-muted);
	padding: 9px 12px;
	border-bottom: 1px solid var(--ptp-line);
	white-space: nowrap;
}

.ptp-table td {
	padding: 11px 12px;
	border-bottom: 1px solid var(--ptp-line-soft);
	font-weight: 600;
	white-space: nowrap;
}

.ptp-table tr:last-child td {
	border-bottom: none;
}

.ptp-table tbody tr {
	transition: background 0.2s ease;
}

.ptp-table tbody tr:hover {
	background: rgba(11, 183, 163, 0.04);
}

.ptp-ltr {
	direction: ltr;
	unicode-bidi: isolate;
}

/* Floating cards */
.ptp-float {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 11px;
	background: rgba(255, 255, 255, 0.9);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 18px;
	box-shadow: var(--ptp-shadow-md);
	padding: 12px 18px;
	z-index: 5;
}

.ptp-float__icon {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	color: #fff;
	flex: 0 0 auto;
}

.ptp-float__icon svg {
	width: 20px;
	height: 20px;
}

.ptp-float__icon--green {
	background: linear-gradient(135deg, var(--ptp-green), var(--ptp-turquoise));
}

.ptp-float__text {
	display: flex;
	flex-direction: column;
	line-height: 1.35;
}

.ptp-float__text strong {
	font-size: 17px;
	font-weight: 800;
}

.ptp-float__text span {
	font-size: 11px;
	color: var(--ptp-muted);
}

.ptp-float__ring {
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: conic-gradient(var(--ptp-turquoise) calc(var(--ptp-ring) * 1%), rgba(12, 31, 43, 0.07) 0);
	display: grid;
	place-items: center;
	position: relative;
}

.ptp-float__ring::after {
	content: "";
	position: absolute;
	inset: 6px;
	border-radius: 50%;
	background: #fff;
}

.ptp-float--1 {
	top: -26px;
	left: -30px;
	animation: ptp-float-y 6s ease-in-out infinite;
}

.ptp-float--2 {
	top: 80px;
	right: -34px;
	animation: ptp-float-y 7s ease-in-out infinite 0.8s;
}

.ptp-float--3 {
	bottom: 150px;
	left: -42px;
	animation: ptp-float-y 6.5s ease-in-out infinite 1.4s;
}

.ptp-float--4 {
	bottom: 40px;
	right: -26px;
	animation: ptp-float-y 7.5s ease-in-out infinite 0.4s;
}

.ptp-float--5 {
	bottom: -30px;
	left: 30%;
	animation: ptp-float-y 6s ease-in-out infinite 2s;
}

/* ---------- Value cards ---------- */
.ptp-value-card {
	padding: 28px 26px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: right;
}

.ptp-value-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--ptp-shadow-md);
}

.ptp-value-card__icon {
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	border-radius: 16px;
	margin-bottom: 20px;
	color: #fff;
}

.ptp-value-card__icon svg {
	width: 28px;
	height: 28px;
}

.ptp-value-card h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.ptp-value-card p {
	font-size: 14px;
	color: var(--ptp-ink-soft);
}

.ptp-icon--turquoise {
	background: linear-gradient(135deg, #0bb7a3, #0fd1b8);
}

.ptp-icon--cyan {
	background: linear-gradient(135deg, #2ab6e0, #52c8ea);
}

.ptp-icon--green {
	background: linear-gradient(135deg, #1fbf8a, #41d6a4);
}

.ptp-icon--violet {
	background: linear-gradient(135deg, #7a6ff0, #a29af5);
}

.ptp-icon--amber {
	background: linear-gradient(135deg, #e8a13c, #f0b95f);
}

/* ---------- Features ---------- */
.ptp-feature {
	padding: 26px 24px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ptp-feature:hover {
	transform: translateY(-5px);
	box-shadow: var(--ptp-shadow-md);
}

.ptp-feature__icon {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	margin-bottom: 16px;
	color: #fff;
}

.ptp-feature__icon svg {
	width: 25px;
	height: 25px;
}

.ptp-feature h3 {
	font-size: 16.5px;
	margin-bottom: 8px;
}

.ptp-feature p {
	font-size: 13.5px;
	color: var(--ptp-ink-soft);
}

/* ---------- Journal section ---------- */
.ptp-journal-layout {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 28px;
	align-items: start;
}

.ptp-trade-form {
	padding: 0 0 20px;
}

.ptp-form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	padding: 16px 20px 0;
}

.ptp-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.ptp-field--notes {
	padding: 0 20px;
	margin-top: 14px;
}

.ptp-field label {
	font-size: 12px;
	font-weight: 700;
	color: var(--ptp-ink-soft);
}

.ptp-input {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--ptp-line);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.7);
	padding: 0 14px;
	height: 42px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ptp-input:focus-within {
	border-color: rgba(11, 183, 163, 0.5);
	box-shadow: 0 0 0 4px rgba(11, 183, 163, 0.1);
}

.ptp-input input,
.ptp-input textarea {
	width: 100%;
	border: none;
	background: none;
	outline: none;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--ptp-ink);
	direction: ltr;
	text-align: right;
}

.ptp-input textarea {
	direction: rtl;
	text-align: right;
	padding: 10px 0;
	resize: none;
	line-height: 1.7;
}

.ptp-input--select svg {
	width: 14px;
	height: 14px;
	color: var(--ptp-muted);
	flex: 0 0 auto;
}

.ptp-input--danger {
	border-color: rgba(229, 72, 77, 0.3);
}

.ptp-input--success {
	border-color: rgba(31, 191, 138, 0.35);
}

.ptp-seg {
	display: flex;
	border: 1px solid var(--ptp-line);
	border-radius: 12px;
	overflow: hidden;
	height: 42px;
}

.ptp-seg__item {
	flex: 1;
	display: grid;
	place-items: center;
	font-size: 13px;
	font-weight: 700;
	color: var(--ptp-muted);
	transition: all 0.2s ease;
}

.ptp-seg__item.is-on {
	color: #fff;
	background: linear-gradient(135deg, var(--ptp-green), var(--ptp-turquoise));
}

.ptp-form-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 20px 0;
}

.ptp-attach {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--ptp-ink-soft);
}

.ptp-attach svg {
	width: 20px;
	height: 20px;
	color: var(--ptp-turquoise-deep);
}

/* Trade detail card */
.ptp-trade-detail {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ptp-trade-detail__head {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
}

.ptp-trade-detail__sym {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ptp-trade-detail__sym strong {
	font-size: 17px;
}

.ptp-trade-detail__sym span {
	font-size: 11.5px;
	color: var(--ptp-muted);
}

.ptp-coin {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	background: linear-gradient(135deg, #d4a03a, #f0c95f);
	box-shadow: 0 10px 24px rgba(212, 160, 58, 0.3);
}

.ptp-pill {
	display: inline-flex;
	align-items: center;
	padding: 5px 13px;
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 800;
}

.ptp-pill--buy {
	color: var(--ptp-green);
	background: rgba(31, 191, 138, 0.12);
}

.ptp-pill--loss {
	color: var(--ptp-red);
	background: rgba(229, 72, 77, 0.1);
}

.ptp-trade-detail__pnl {
	margin-inline-start: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	line-height: 1.4;
}

.ptp-trade-detail__pnl strong {
	font-size: 20px;
}

.ptp-trade-detail__pnl span {
	font-size: 11px;
	color: var(--ptp-muted);
}

.ptp-trade-detail__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: var(--ptp-line-soft);
	border-radius: var(--ptp-radius);
	overflow: hidden;
	border: 1px solid var(--ptp-line-soft);
}

.ptp-detail-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	background: #fff;
	padding: 14px 16px;
}

.ptp-detail-row__label {
	font-size: 12px;
	font-weight: 600;
	color: var(--ptp-muted);
}

.ptp-detail-row strong {
	font-size: 13.5px;
}

.ptp-text-danger {
	color: var(--ptp-red);
}

.ptp-text-success {
	color: var(--ptp-green);
}

/* Candle chart */
.ptp-trade-chart {
	padding: 0 0 8px;
}

.ptp-candle-chart svg {
	width: 100%;
	height: auto;
	min-height: 150px;
}

.ptp-candles line {
	stroke-width: 1.5;
}

.ptp-candle--up line,
.ptp-candle--up rect {
	stroke: var(--ptp-green);
	fill: rgba(31, 191, 138, 0.85);
}

.ptp-candle--down line,
.ptp-candle--down rect {
	stroke: var(--ptp-red);
	fill: rgba(229, 72, 77, 0.85);
}

.ptp-candle-tp {
	stroke: rgba(31, 191, 138, 0.4);
	stroke-dasharray: 4 4;
}

.ptp-candle-sl {
	stroke: rgba(229, 72, 77, 0.4);
	stroke-dasharray: 4 4;
}

.ptp-candle-tag {
	font-size: 10px;
	font-weight: 700;
	fill: var(--ptp-green);
}

.ptp-candle-tag--sl {
	fill: var(--ptp-red);
}

/* ---------- Analytics ---------- */
.ptp-analytics__kpis {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 12px;
}

.ptp-stat {
	padding: 16px 14px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ptp-stat:hover {
	transform: translateY(-3px);
	box-shadow: var(--ptp-shadow-md);
}

.ptp-stat__label {
	font-size: 11px;
	font-weight: 600;
	color: var(--ptp-muted);
}

.ptp-stat__value {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.ptp-stat__sub {
	font-size: 10.5px;
	color: var(--ptp-muted);
}

.ptp-stat__bar {
	height: 5px;
	border-radius: 999px;
	background: rgba(12, 31, 43, 0.06);
	overflow: hidden;
}

.ptp-stat__bar span {
	display: block;
	height: 100%;
	width: var(--ptp-stat);
	border-radius: 999px;
	background: linear-gradient(90deg, var(--ptp-turquoise), var(--ptp-cyan));
}

.ptp-charts-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 20px;
}

.ptp-chart-box {
	padding: 0 0 14px;
}

.ptp-chart-box--wide {
	grid-column: span 1;
}

/* Bar chart */
.ptp-bar-chart {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 8px;
	padding: 14px 18px 8px;
}

.ptp-bar-chart__y {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	font-size: 10px;
	color: var(--ptp-muted);
	padding-bottom: 26px;
}

.ptp-bar-chart__plot {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	align-items: end;
	gap: 8px;
	height: 180px;
	position: relative;
	background-image: linear-gradient(var(--ptp-line-soft) 1px, transparent 1px);
	background-size: 100% 25%;
}

.ptp-bar-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	gap: 7px;
	height: 100%;
}

.ptp-bar {
	width: 100%;
	max-width: 30px;
	border-radius: 7px 7px 3px 3px;
	height: var(--ptp-h);
	transform-origin: bottom;
	animation: ptp-grow-bar 1.1s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
	transform: scaleY(0);
}

.ptp-bar--pos {
	background: linear-gradient(180deg, #25c08a, #0bb7a3);
}

.ptp-bar--neg {
	background: linear-gradient(180deg, #f0766a, #e5484d);
}

.ptp-bar-col em {
	font-style: normal;
	font-size: 10px;
	color: var(--ptp-muted);
	white-space: nowrap;
}

/* Donut */
.ptp-donut-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	padding: 22px 18px;
}

.ptp-donut {
	width: 148px;
	height: 148px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: conic-gradient(var(--ptp-turquoise) calc(var(--ptp-donut) * 1%), var(--ptp-red) 0);
	display: grid;
	place-items: center;
	position: relative;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.ptp-donut::after {
	content: "";
	position: absolute;
	inset: 16px;
	border-radius: 50%;
	background: #fff;
	box-shadow: var(--ptp-shadow);
}

.ptp-donut__inner {
	position: relative;
	z-index: 2;
	text-align: center;
	line-height: 1.4;
}

.ptp-donut__inner strong {
	font-size: 26px;
	font-weight: 800;
	color: var(--ptp-turquoise-deep);
}

.ptp-donut__inner span {
	display: block;
	font-size: 11px;
	color: var(--ptp-muted);
}

.ptp-donut-legend {
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 13px;
	font-weight: 600;
	color: var(--ptp-ink-soft);
}

.ptp-donut-legend li {
	display: flex;
	align-items: center;
	gap: 9px;
}

.ptp-donut-legend b {
	margin-inline-start: auto;
	color: var(--ptp-ink);
	font-weight: 800;
}

.ptp-legend-dot {
	width: 10px;
	height: 10px;
	border-radius: 3px;
	flex: 0 0 auto;
}

.ptp-legend-dot--pos {
	background: var(--ptp-turquoise);
}

.ptp-legend-dot--neg {
	background: var(--ptp-red);
}

.ptp-legend-dot--flat {
	background: #d3dce1;
}

/* Summary card */
.ptp-summary-card {
	padding: 0 0 16px;
}

.ptp-summary-list {
	display: flex;
	flex-direction: column;
	padding: 8px 18px;
}

.ptp-summary-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid var(--ptp-line-soft);
	font-size: 13px;
	font-weight: 600;
	color: var(--ptp-ink-soft);
}

.ptp-summary-list li:last-child {
	border-bottom: none;
}

.ptp-summary-list strong {
	font-size: 14.5px;
}

.ptp-summary-divider {
	height: 1px;
	background: var(--ptp-line);
	margin: 0 18px;
}

.ptp-summary-note {
	padding: 14px 18px 0;
	font-size: 12.5px;
	color: var(--ptp-muted);
}
/* ---------- Plan section ---------- */
.ptp-plan-layout {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 24px;
	align-items: start;
}

.ptp-plan-card {
	padding: 0 0 16px;
}

.ptp-plan-rows {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 10px 18px 0;
}

.ptp-plan-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--ptp-line-soft);
}

.ptp-plan-row:last-child {
	border-bottom: none;
}

.ptp-plan-row__icon {
	width: 40px;
	height: 40px;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	border-radius: 12px;
	color: #fff;
}

.ptp-plan-row__icon svg {
	width: 22px;
	height: 22px;
}

.ptp-plan-row__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.ptp-plan-row__label {
	font-size: 11px;
	font-weight: 700;
	color: var(--ptp-muted);
	letter-spacing: 0.02em;
}

.ptp-plan-row__body strong {
	font-size: 13.5px;
	line-height: 1.7;
}

.ptp-plan-meta {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	margin: 14px 18px 0;
	border-radius: var(--ptp-radius-sm);
	overflow: hidden;
	border: 1px solid var(--ptp-line-soft);
	background: var(--ptp-line-soft);
}

.ptp-plan-meta__item {
	display: flex;
	flex-direction: column;
	background: #fff;
	padding: 13px 14px;
	gap: 3px;
}

.ptp-plan-meta__item span {
	font-size: 11px;
	font-weight: 600;
	color: var(--ptp-muted);
}

.ptp-plan-meta__item strong {
	font-size: 13px;
}

/* Checklist */
.ptp-checklist-card {
	padding: 0 0 16px;
}

.ptp-checklist {
	padding: 0 18px;
	margin-top: 8px;
}

.ptp-check {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px 0;
	border-bottom: 1px solid var(--ptp-line-soft);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.ptp-check:last-child {
	border-bottom: none;
}

.ptp-check__box {
	width: 26px;
	height: 26px;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	border-radius: 8px;
	border: 2px solid var(--ptp-line);
	transition: all 0.3s ease;
}

.ptp-check__box svg {
	width: 16px;
	height: 16px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.ptp-check.is-done .ptp-check__box {
	background: linear-gradient(135deg, var(--ptp-green), var(--ptp-turquoise));
	border-color: transparent;
	box-shadow: 0 6px 16px rgba(11, 183, 163, 0.2);
}

.ptp-check.is-done .ptp-check__box svg {
	opacity: 1;
	color: #fff;
}

.ptp-check__text {
	font-size: 14px;
	font-weight: 600;
	color: var(--ptp-ink-soft);
}

.ptp-check.is-done .ptp-check__text {
	color: var(--ptp-ink);
}

.ptp-checklist-footer {
	padding: 14px 18px 0;
}

/* ---------- Watchlist ---------- */
.ptp-watchlist-card {
	padding: 0 0 10px;
	overflow: hidden;
}

.ptp-watch-filter {
	display: flex;
	gap: 6px;
}

.ptp-watch-table th:first-child,
.ptp-watch-table td:first-child {
	padding-inline-start: 18px;
}

.ptp-watch-table th:last-child,
.ptp-watch-table td:last-child {
	padding-inline-end: 18px;
}

.ptp-sym--fx b {
	color: #2ab6e0;
}

.ptp-sym--metal b {
	color: #d4a03a;
}

.ptp-sym--energy b {
	color: #e07a3a;
}

.ptp-sym--crypto b {
	color: #7a6ff0;
}

.ptp-watch-footer {
	display: flex;
	gap: 20px;
	padding: 10px 18px;
	font-size: 11px;
	color: var(--ptp-muted);
}

.ptp-watch-footer__item {
	display: flex;
	align-items: center;
	gap: 7px;
}

.ptp-watch-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex: 0 0 auto;
}

.ptp-watch-dot--fx {
	background: #2ab6e0;
}

.ptp-watch-dot--metal {
	background: #d4a03a;
}

.ptp-watch-dot--energy {
	background: #e07a3a;
}

.ptp-watch-dot--crypto {
	background: #7a6ff0;
}

/* ---------- User Dashboard ---------- */
.ptp-frame {
	border-radius: var(--ptp-radius-lg);
	overflow: hidden;
	box-shadow: var(--ptp-shadow-lg);
	border: 1px solid var(--ptp-line-soft);
	background: #fff;
}

.ptp-frame__bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	background: rgba(12, 31, 43, 0.04);
	border-bottom: 1px solid var(--ptp-line-soft);
	font-size: 12px;
	color: var(--ptp-muted);
}

.ptp-frame__bar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #d3dce1;
}

.ptp-frame__bar em {
	font-style: normal;
	margin-inline-start: auto;
	font-size: 11px;
	font-weight: 600;
}

.ptp-dashboard--user {
	display: grid;
	grid-template-columns: 220px 1fr;
	min-height: 400px;
}

.ptp-dash-sidebar {
	background: var(--ptp-bg-soft);
	border-inline-end: 1px solid var(--ptp-line-soft);
	padding: 20px 14px;
	display: flex;
	flex-direction: column;
}

.ptp-dash-sidebar--admin {
	background: rgba(12, 31, 43, 0.02);
}

.ptp-dash-sidebar__user {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 24px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--ptp-line-soft);
}

.ptp-dash-sidebar__user div {
	display: flex;
	flex-direction: column;
	line-height: 1.4;
}

.ptp-dash-sidebar__user strong {
	font-size: 13px;
}

.ptp-dash-sidebar__user span {
	font-size: 11px;
	color: var(--ptp-muted);
}

.ptp-dash-sidebar__brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 800;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--ptp-line-soft);
}

.ptp-dash-sidebar__brand svg {
	width: 24px;
	height: 24px;
	color: var(--ptp-cyan);
}

.ptp-sidebar-menu {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.ptp-sidebar-menu li {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 12px 12px;
	font-size: 13px;
	font-weight: 700;
	color: var(--ptp-ink-soft);
	border-radius: 12px;
	transition: all 0.2s ease;
}

.ptp-sidebar-menu li:hover {
	background: rgba(11, 183, 163, 0.06);
	color: var(--ptp-ink);
}

.ptp-sidebar-menu .is-active {
	color: var(--ptp-turquoise-deep);
	background: rgba(11, 183, 163, 0.09);
}

.ptp-sidebar-menu__icon {
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
	color: var(--ptp-muted);
}

.ptp-sidebar-menu__icon svg {
	width: 100%;
	height: 100%;
}

.ptp-sidebar-menu .is-active .ptp-sidebar-menu__icon {
	color: var(--ptp-turquoise-deep);
}

.ptp-dash-sidebar__foot {
	margin-top: auto;
	padding-top: 16px;
}

.ptp-dash-main--scroll {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 18px 20px;
	overflow: auto;
}

.ptp-welcome-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: var(--ptp-grad-soft);
	border: 1px solid rgba(11, 183, 163, 0.15);
	border-radius: var(--ptp-radius);
	padding: 18px 22px;
}

.ptp-welcome-card__text strong {
	font-size: 16px;
}

.ptp-welcome-card__text p {
	font-size: 13px;
	color: var(--ptp-ink-soft);
	margin-top: 4px;
}

.ptp-kpis--4 {
	grid-template-columns: repeat(4, 1fr);
	padding: 0;
	border: none;
}

.ptp-dash-cols {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 14px;
}

.ptp-card--mini-watch {
	padding: 0 0 8px;
}

.ptp-card--mini-watch .ptp-watch-mini li {
	font-size: 12px;
}

/* ---------- Admin panel ---------- */
.ptp-kpis--admin {
	grid-template-columns: repeat(4, 1fr);
	padding: 0;
	border: none;
}

.ptp-admin-cols {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 14px;
}

.ptp-admin-table {
	padding: 0 0 8px;
}

.ptp-table--admin td {
	font-size: 12px;
}

.ptp-username {
	display: flex;
	align-items: center;
	gap: 9px;
	font-weight: 700;
}

.ptp-status {
	display: inline-flex;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 10.5px;
	font-weight: 700;
}

.ptp-status--active {
	color: var(--ptp-green);
	background: rgba(31, 191, 138, 0.1);
}

.ptp-status--inactive {
	color: var(--ptp-muted);
	background: rgba(12, 31, 43, 0.05);
}

.ptp-admin-stats {
	padding: 0 0 12px;
}

.ptp-activity-log {
	display: flex;
	flex-direction: column;
	padding: 4px 16px;
}

.ptp-activity-log li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 0;
	border-bottom: 1px solid var(--ptp-line-soft);
	font-size: 12px;
	color: var(--ptp-ink-soft);
}

.ptp-activity-log li:last-child {
	border-bottom: none;
}

.ptp-activity-log em {
	margin-inline-start: auto;
	font-style: normal;
	font-size: 10.5px;
	color: var(--ptp-muted);
}

.ptp-activity-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	flex: 0 0 auto;
	background: var(--ptp-turquoise);
	box-shadow: 0 0 0 4px rgba(11, 183, 163, 0.1);
}

/* ---------- Security ---------- */
.ptp-sec-card {
	padding: 26px 24px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ptp-sec-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--ptp-shadow-md);
}

.ptp-sec-card__icon {
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	margin-bottom: 16px;
	color: #fff;
}

.ptp-sec-card__icon svg {
	width: 24px;
	height: 24px;
}

.ptp-sec-card h3 {
	font-size: 16px;
	margin-bottom: 10px;
}

.ptp-sec-card p {
	font-size: 13px;
	color: var(--ptp-ink-soft);
}

/* ---------- Performance ---------- */
.ptp-perf {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.ptp-perf__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	width: 100%;
}

.ptp-perf__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 22px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid var(--ptp-line-soft);
	border-radius: var(--ptp-radius);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ptp-perf__item:hover {
	transform: translateY(-4px);
	box-shadow: var(--ptp-shadow);
}

.ptp-perf__num {
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 800;
	color: #fff;
	background: var(--ptp-grad);
}

.ptp-perf__item strong {
	font-size: 15px;
	display: block;
	margin-bottom: 5px;
}

.ptp-perf__item p {
	font-size: 12.5px;
	color: var(--ptp-ink-soft);
	line-height: 1.7;
}

.ptp-perf__tech {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

/* ---------- How it works / Steps ---------- */
.ptp-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	position: relative;
}

.ptp-steps__line {
	position: absolute;
	top: 44px;
	left: calc(12.5% + 30px);
	right: calc(12.5% + 30px);
	height: 3px;
	background: var(--ptp-line);
	border-radius: 3px;
	z-index: 0;
}

.ptp-steps__line::after {
	content: "";
	position: absolute;
	inset: 0;
	width: 0;
	background: var(--ptp-grad);
	border-radius: 3px;
	transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.ptp-steps.is-inview .ptp-steps__line::after {
	width: 100%;
}

.ptp-step {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.ptp-step__num {
	font-size: 18px;
	font-weight: 800;
	color: var(--ptp-turquoise-deep);
	background: #fff;
	border: 2px solid var(--ptp-line);
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	margin-bottom: 16px;
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
}

.ptp-step:hover .ptp-step__num {
	border-color: var(--ptp-turquoise);
	background: linear-gradient(135deg, var(--ptp-turquoise), var(--ptp-cyan));
	color: #fff;
	box-shadow: 0 10px 24px rgba(11, 183, 163, 0.25);
}

.ptp-step__card {
	padding: 24px 20px;
	width: 100%;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ptp-step__card:hover {
	transform: translateY(-5px);
	box-shadow: var(--ptp-shadow-md);
}

.ptp-step__icon {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	margin: 0 auto 14px;
	color: #fff;
}

.ptp-step__icon svg {
	width: 26px;
	height: 26px;
}

.ptp-step__card h3 {
	font-size: 16px;
	margin-bottom: 8px;
}

.ptp-step__card p {
	font-size: 13px;
	color: var(--ptp-ink-soft);
}

/* ---------- Before / After ---------- */
.ptp-ba {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.ptp-ba-card {
	padding: 30px;
	flex: 1;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ptp-ba-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--ptp-shadow-md);
}

.ptp-ba-card--before {
	border-inline-start: 4px solid var(--ptp-red);
}

.ptp-ba-card--after {
	border-inline-start: 4px solid var(--ptp-green);
}

.ptp-ba-card__tag {
	position: absolute;
	top: -1px;
	left: 24px;
	font-size: 11px;
	font-weight: 800;
	color: #fff;
	padding: 5px 14px;
	border-radius: 0 0 10px 10px;
}

.ptp-ba-card--before .ptp-ba-card__tag {
	background: linear-gradient(135deg, #f0766a, var(--ptp-red));
}

.ptp-ba-card--after .ptp-ba-card__tag {
	background: linear-gradient(135deg, var(--ptp-green), var(--ptp-turquoise));
}

.ptp-ba-card h3 {
	font-size: 18px;
	margin: 14px 0 16px;
}

.ptp-ba-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ptp-ba-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ptp-ink-soft);
}

.ptp-ba-mark {
	width: 24px;
	height: 24px;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 800;
}

.ptp-ba-mark--bad {
	color: #fff;
	background: var(--ptp-red);
}

.ptp-ba-mark--good {
	color: #fff;
	background: var(--ptp-green);
}

.ptp-ba__arrow {
	flex: 0 0 auto;
	color: var(--ptp-muted);
	width: 48px;
}

.ptp-ba__arrow svg {
	width: 100%;
	height: auto;
}

/* ---------- Responsive devices ---------- */
.ptp-devices {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
}

.ptp-device {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.ptp-device__frame {
	background: linear-gradient(145deg, #eef2f5, #dde3e8);
	padding: 6px;
	border-radius: 18px 18px 12px 12px;
	box-shadow: 0 20px 60px rgba(12, 31, 43, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	position: relative;
}

.ptp-device__bar {
	display: flex;
	gap: 6px;
	padding: 8px 12px 4px;
}

.ptp-device__bar span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #c5d0d9;
}

.ptp-device__screen {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.ptp-device__screen--desktop {
	width: 320px;
	height: 180px;
}

.ptp-device__screen--laptop {
	width: 240px;
	height: 150px;
}

.ptp-device__screen--tablet {
	width: 160px;
	height: 190px;
}

.ptp-device__screen--mobile {
	width: 120px;
	height: 240px;
}

.ptp-device__label {
	font-size: 12px;
	font-weight: 700;
	color: var(--ptp-muted);
}

.ptp-dash-mini {
	padding: 10px 12px 8px;
}

.ptp-dash-mini__head {
	display: flex;
	justify-content: space-between;
	font-size: 10px;
	font-weight: 800;
	margin-bottom: 8px;
}

.ptp-dash-mini__head i {
	font-style: normal;
	color: var(--ptp-muted);
}

.ptp-dash-mini__kpis {
	display: flex;
	gap: 12px;
	margin-bottom: 8px;
}

.ptp-dash-mini__kpis span {
	display: flex;
	flex-direction: column;
	font-size: 9px;
	color: var(--ptp-muted);
}

.ptp-dash-mini__kpis b {
	font-size: 13px;
	color: var(--ptp-ink);
}

.ptp-dash-mini__chart {
	width: 100%;
	height: 50px;
}

.ptp-dash-mini__row {
	display: flex;
	gap: 12px;
	margin-top: 6px;
}

.ptp-dash-mini__row span {
	display: flex;
	flex-direction: column;
	font-size: 9px;
	color: var(--ptp-muted);
}

.ptp-dash-mini__row b {
	font-size: 12px;
	color: var(--ptp-ink);
}

/* Mobile UI */
.ptp-mobile-ui {
	padding: 8px 10px;
}

.ptp-mobile-ui__top {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}

.ptp-mobile-ui__top div {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.ptp-mobile-ui__top b {
	font-size: 11px;
}

.ptp-mobile-ui__top i {
	font-style: normal;
	font-size: 9px;
	color: var(--ptp-muted);
}

.ptp-mobile-ui__avatar {
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	font-size: 10px;
	font-weight: 800;
	color: #fff;
	background: var(--ptp-grad);
}

.ptp-mobile-ui__bell {
	width: 24px;
	height: 24px;
	color: var(--ptp-muted);
	margin-inline-start: auto;
}

.ptp-mobile-ui__bell svg {
	width: 100%;
	height: 100%;
}

.ptp-mobile-ui__balance {
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
}

.ptp-mobile-ui__balance span {
	font-size: 9px;
	color: var(--ptp-muted);
}

.ptp-mobile-ui__balance b {
	font-size: 18px;
}

.ptp-mobile-ui__balance i {
	font-style: normal;
	font-size: 9px;
}

.ptp-mobile-ui__kpis {
	display: flex;
	gap: 8px;
	margin-bottom: 8px;
}

.ptp-mobile-ui__kpis span {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 8px;
	color: var(--ptp-muted);
}

.ptp-mobile-ui__kpis b {
	font-size: 12px;
	color: var(--ptp-ink);
}

.ptp-mobile-ui__chart {
	height: 46px;
	margin-bottom: 8px;
}

.ptp-mobile-ui__chart svg {
	width: 100%;
	height: 100%;
}

.ptp-mobile-ui__nav {
	display: flex;
	justify-content: space-around;
	padding: 6px 0 0;
	border-top: 1px solid var(--ptp-line-soft);
}

.ptp-mobile-ui__nav span {
	width: 22px;
	height: 22px;
	color: var(--ptp-muted);
}

.ptp-mobile-ui__nav .is-on {
	color: var(--ptp-turquoise-deep);
}

.ptp-responsive-note {
	text-align: center;
	font-size: 14px;
	color: var(--ptp-ink-soft);
	max-width: 600px;
	margin: 40px auto 0;
}

/* ---------- Pricing ---------- */
.ptp-price {
	display: flex;
	justify-content: center;
}

.ptp-price-card {
	position: relative;
	max-width: 520px;
	width: 100%;
	padding: 0;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--ptp-shadow-lg);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ptp-price-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 40px 100px rgba(12, 31, 43, 0.15);
}

.ptp-price-card__glow {
	position: absolute;
	top: -120px;
	left: 50%;
	transform: translateX(-50%);
	width: 400px;
	height: 240px;
	background: radial-gradient(ellipse, rgba(42, 182, 224, 0.12), transparent 60%);
	pointer-events: none;
}

.ptp-price-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	padding: 28px 28px 0;
}

.ptp-price-card__name {
	font-size: 12px;
	font-weight: 700;
	color: var(--ptp-muted);
	letter-spacing: 0.04em;
}

.ptp-price-card__head h3 {
	font-size: 20px;
	margin-top: 4px;
}

.ptp-price-card__badge {
	display: inline-flex;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	color: #fff;
	background: var(--ptp-grad);
	white-space: nowrap;
}

.ptp-price-card__value {
	display: flex;
	align-items: baseline;
	gap: 8px;
	padding: 16px 28px;
	border-bottom: 1px solid var(--ptp-line-soft);
}

.ptp-price-card__value strong {
	font-size: 40px;
	font-weight: 800;
	letter-spacing: -0.03em;
	background: var(--ptp-grad);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.ptp-price-card__value span {
	font-size: 14px;
	color: var(--ptp-muted);
	font-weight: 600;
}

.ptp-price-list {
	padding: 18px 28px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ptp-price-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ptp-ink-soft);
}

.ptp-check-mini {
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	border-radius: 7px;
	color: #fff;
	background: linear-gradient(135deg, var(--ptp-green), var(--ptp-turquoise));
}

.ptp-check-mini svg {
	width: 14px;
	height: 14px;
}

.ptp-price-card__actions {
	display: flex;
	gap: 12px;
	padding: 20px 28px 28px;
}

.ptp-price-card__actions .ptp-btn {
	flex: 1;
}

/* ---------- FAQ ---------- */
.ptp-faq {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.ptp-faq__item {
	border: 1px solid var(--ptp-line-soft);
	border-radius: var(--ptp-radius);
	margin-bottom: 8px;
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.ptp-faq__item:hover {
	box-shadow: var(--ptp-shadow);
}

.ptp-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	text-align: right;
	padding: 20px 22px;
	font-size: 15px;
	font-weight: 700;
	color: var(--ptp-ink);
	background: rgba(255, 255, 255, 0.7);
	transition: background 0.2s ease;
}

.ptp-faq__q:hover {
	background: rgba(11, 183, 163, 0.04);
}

.ptp-faq__q:focus-visible {
	outline: 3px solid rgba(42, 182, 224, 0.45);
	outline-offset: -3px;
}

.ptp-faq__icon {
	width: 28px;
	height: 28px;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	border-radius: 8px;
	background: rgba(12, 31, 43, 0.04);
	transition: transform 0.3s ease, background 0.3s ease;
}

.ptp-faq__icon svg {
	width: 14px;
	height: 14px;
	color: var(--ptp-muted);
	transition: color 0.3s ease;
}

.ptp-faq__q[aria-expanded="true"] .ptp-faq__icon {
	transform: rotate(180deg);
	background: rgba(11, 183, 163, 0.1);
}

.ptp-faq__q[aria-expanded="true"] .ptp-faq__icon svg {
	color: var(--ptp-turquoise-deep);
}

.ptp-faq__a {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.45s ease, padding 0.45s ease;
	padding: 0 22px;
}

.ptp-faq__a.is-open {
	max-height: 300px;
	padding: 0 22px 20px;
}

.ptp-faq__a p {
	font-size: 14px;
	color: var(--ptp-ink-soft);
	line-height: 1.9;
}

/* ---------- Final CTA ---------- */
.ptp-cta {
	position: relative;
	overflow: hidden;
	border-radius: var(--ptp-radius-lg);
	background: linear-gradient(135deg, rgba(11, 183, 163, 0.04), rgba(42, 182, 224, 0.04), rgba(37, 192, 138, 0.04));
	border: 1px solid var(--ptp-line-soft);
	box-shadow: var(--ptp-shadow-lg);
	text-align: center;
	padding: 70px 30px;
}

.ptp-cta__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.ptp-cta__chart {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0.12;
}

.ptp-cta__chart--1 {
	top: 10%;
	right: 0;
}

.ptp-cta__chart--2 {
	bottom: 10%;
	left: 0;
	transform: scaleX(-1);
}

.ptp-cta__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(50px);
	opacity: 0.15;
}

.ptp-cta__orb--1 {
	width: 280px;
	height: 280px;
	left: -60px;
	top: -60px;
	background: radial-gradient(circle, var(--ptp-turquoise), transparent);
	animation: ptp-float-slow 14s ease-in-out infinite;
}

.ptp-cta__orb--2 {
	width: 240px;
	height: 240px;
	right: -40px;
	bottom: -40px;
	background: radial-gradient(circle, var(--ptp-cyan), transparent);
	animation: ptp-float-slow 12s ease-in-out infinite reverse;
}

.ptp-cta__grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(var(--ptp-line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--ptp-line-soft) 1px, transparent 1px);
	background-size: 40px 40px;
	opacity: 0.3;
}

.ptp-cta__inner {
	position: relative;
	z-index: 2;
}

.ptp-cta__title {
	font-size: clamp(28px, 3.6vw, 40px);
	font-weight: 800;
	line-height: 1.5;
	margin-bottom: 18px;
}

.ptp-cta__title-accent {
	background: var(--ptp-grad);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.ptp-cta__lead {
	font-size: 17px;
	color: var(--ptp-ink-soft);
	max-width: 520px;
	margin: 0 auto 28px;
}

.ptp-cta__actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
}

.ptp-cta__fineprint {
	margin-top: 20px;
	font-size: 12.5px;
	color: var(--ptp-muted);
}

/* ---------- Footer ---------- */
.ptp-footer {
	position: relative;
	padding: 56px 0 0;
	border-top: 4px solid transparent;
	border-image: var(--ptp-grad) 1;
}

.ptp-footer__inner {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
	gap: 30px;
	padding-bottom: 36px;
}

.ptp-footer .ptp-brand {
	margin-bottom: 14px;
}

.ptp-footer .ptp-brand__mark {
	width: 36px;
	height: 36px;
}

.ptp-footer .ptp-brand__text strong {
	font-size: 14px;
}

.ptp-footer .ptp-brand__text span {
	font-size: 10px;
}

.ptp-footer__desc {
	font-size: 13px;
	color: var(--ptp-ink-soft);
	line-height: 1.8;
	max-width: 300px;
}

.ptp-footer__col h4 {
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 16px;
}

.ptp-footer__col ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ptp-footer__col a {
	font-size: 13px;
	font-weight: 600;
	color: var(--ptp-ink-soft);
	transition: color 0.2s ease;
}

.ptp-footer__col a:hover {
	color: var(--ptp-turquoise-deep);
}

.ptp-footer__bottom {
	padding: 20px 0;
	border-top: 1px solid var(--ptp-line-soft);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.ptp-footer__bottom p {
	font-size: 12.5px;
	color: var(--ptp-muted);
}

.ptp-footer__note {
	max-width: 480px;
	text-align: left;
}

/* ---------- Animations ---------- */
@keyframes ptp-float-slow {
	0%, 100% { transform: translateY(0) scale(1); }
	50% { transform: translateY(-20px) scale(1.04); }
}

@keyframes ptp-float-y {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

@keyframes ptp-pulse-dot {
	0%, 100% { box-shadow: 0 0 0 4px rgba(11, 183, 163, 0.15); }
	50% { box-shadow: 0 0 0 8px rgba(11, 183, 163, 0.08); }
}

@keyframes ptp-draw-line {
	to { stroke-dashoffset: 0; }
}

@keyframes ptp-grow-bar {
	to { transform: scaleY(1); }
}

/* ---------- Reveal animation ---------- */
[data-ptp-reveal] {
	opacity: 0;
	transform: translateY(36px);
	transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-ptp-reveal].is-revealed {
	opacity: 1;
	transform: translateY(0);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	.ptp-app *,
	.ptp-app *::before,
	.ptp-app *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	[data-ptp-reveal] {
		opacity: 1;
		transform: none;
	}

	.ptp-float {
		animation: none !important;
	}

	.ptp-hero__glow {
		animation: none !important;
	}

	.ptp-chart-line {
		stroke-dasharray: none;
		stroke-dashoffset: 0;
		animation: none;
	}

	.ptp-bar {
		transform: scaleY(1);
		animation: none;
	}

	.ptp-steps__line::after {
		width: 100%;
	}
}

/* ---------- Responsive — Tablet ---------- */
@media (max-width: 1024px) {
	.ptp-section {
		padding: 72px 0;
	}

	.ptp-grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.ptp-hero__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.ptp-hero__copy {
		padding-bottom: 0;
	}

	.ptp-hero__visual {
		max-width: 700px;
		margin: 0 auto;
	}

	.ptp-nav {
		display: none;
	}

	.ptp-burger {
		display: flex;
	}

	.ptp-header__actions .ptp-btn--ghost {
		display: none;
	}

	.ptp-journal-layout {
		grid-template-columns: 1fr;
	}

	.ptp-plan-layout {
		grid-template-columns: 1fr;
	}

	.ptp-analytics__kpis {
		grid-template-columns: repeat(4, 1fr);
	}

	.ptp-charts-row {
		grid-template-columns: 1fr;
	}

	.ptp-dashboard--user {
		grid-template-columns: 180px 1fr;
	}

	.ptp-admin-cols {
		grid-template-columns: 1fr;
	}

	.ptp-perf__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ptp-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.ptp-steps__line {
		display: none;
	}

	.ptp-ba {
		flex-direction: column;
	}

	.ptp-ba__arrow {
		transform: rotate(90deg);
	}

	.ptp-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}

	.ptp-footer__brand {
		grid-column: span 2;
	}

	.ptp-kpis--4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.ptp-dash-cols {
		grid-template-columns: 1fr;
	}

	.ptp-kpis--admin {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ---------- Responsive — Mobile ---------- */
@media (max-width: 640px) {
	.ptp-container {
		padding-inline: 16px;
	}

	.ptp-section {
		padding: 56px 0;
	}

	.ptp-section__head {
		margin-bottom: 36px;
	}

	.ptp-section__head .ptp-kicker {
		font-size: 11px;
		padding: 6px 12px;
	}

	.ptp-section__title {
		font-size: 22px;
		margin: 10px 0 12px;
	}

	.ptp-section__lead {
		font-size: 14px;
	}

	.ptp-grid--3,
	.ptp-grid--4 {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.ptp-btn--lg {
		padding: 14px 24px;
		font-size: 14px;
	}

	.ptp-hero {
		padding: 130px 0 20px;
	}

	.ptp-hero__title {
		font-size: 26px;
	}

	.ptp-hero__lead {
		font-size: 14px;
	}

	.ptp-hero__cta {
		flex-direction: column;
	}

	.ptp-hero__cta .ptp-btn {
		width: 100%;
		justify-content: center;
	}

	.ptp-hero__stats {
		gap: 20px;
		flex-wrap: wrap;
	}

	.ptp-hero__stats strong {
		font-size: 18px;
	}

	.ptp-kpis {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
		padding: 12px;
	}

	.ptp-kpi {
		padding: 12px;
	}

	.ptp-kpi__value {
		font-size: 17px;
	}

	.ptp-dash-main {
		grid-template-columns: 1fr;
		padding: 12px;
	}

	.ptp-float {
		display: none;
	}

	.ptp-form-grid {
		grid-template-columns: 1fr;
		padding: 12px 14px 0;
	}

	.ptp-trade-detail__grid {
		grid-template-columns: 1fr;
	}

	.ptp-analytics__kpis {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.ptp-stat__value {
		font-size: 16px;
	}

	.ptp-donut-wrap {
		flex-direction: column;
		gap: 16px;
	}

	.ptp-donut {
		width: 120px;
		height: 120px;
	}

	.ptp-donut__inner strong {
		font-size: 20px;
	}

	.ptp-perf__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.ptp-perf__item {
		padding: 16px;
	}

	.ptp-steps {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.ptp-ba-card {
		padding: 22px;
	}

	.ptp-ba-card h3 {
		font-size: 15px;
	}

	.ptp-ba-list li {
		font-size: 12px;
	}

	.ptp-device__screen--desktop {
		width: 260px;
		height: 150px;
	}

	.ptp-device__screen--laptop {
		width: 200px;
		height: 130px;
	}

	.ptp-device__screen--tablet {
		width: 120px;
		height: 150px;
	}

	.ptp-device__screen--mobile {
		width: 90px;
		height: 190px;
	}

	.ptp-price-card__head {
		flex-direction: column;
		padding: 20px 20px 0;
	}

	.ptp-price-card__value {
		padding: 14px 20px;
	}

	.ptp-price-card__value strong {
		font-size: 32px;
	}

	.ptp-price-list {
		padding: 14px 20px;
	}

	.ptp-price-card__actions {
		flex-direction: column;
		padding: 16px 20px 20px;
	}

	.ptp-cta {
		padding: 40px 20px;
	}

	.ptp-cta__title {
		font-size: 22px;
	}

	.ptp-cta__lead {
		font-size: 14px;
	}

	.ptp-cta__actions {
		flex-direction: column;
	}

	.ptp-cta__actions .ptp-btn {
		width: 100%;
		justify-content: center;
	}

	.ptp-faq__q {
		padding: 16px 16px;
		font-size: 13px;
	}

	.ptp-faq__a {
		padding: 0 16px;
	}

	.ptp-faq__a.is-open {
		padding: 0 16px 16px;
	}

	.ptp-footer__inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.ptp-footer__brand {
		grid-column: span 1;
	}

	.ptp-footer__bottom {
		flex-direction: column;
		text-align: center;
	}

	.ptp-footer__note {
		text-align: center;
	}

	.ptp-dashboard--user {
		grid-template-columns: 1fr;
	}

	.ptp-dash-sidebar {
		border-inline-end: none;
		border-bottom: 1px solid var(--ptp-line-soft);
		padding: 14px;
	}

	.ptp-dash-sidebar__user {
		margin-bottom: 14px;
	}

	.ptp-sidebar-menu {
		flex-direction: row;
		overflow-x: auto;
		gap: 4px;
		padding-bottom: 6px;
		-webkit-overflow-scrolling: touch;
	}

	.ptp-sidebar-menu li {
		white-space: nowrap;
		padding: 8px 12px;
		font-size: 12px;
	}

	.ptp-sidebar-menu__icon {
		display: none;
	}

	.ptp-dash-main--scroll {
		padding: 14px;
	}

	.ptp-welcome-card {
		flex-direction: column;
		text-align: center;
	}

	.ptp-welcome-card .ptp-btn {
		width: 100%;
		justify-content: center;
	}

	.ptp-table {
		min-width: 380px;
		font-size: 11px;
	}

	.ptp-table th,
	.ptp-table td {
		padding: 8px 8px;
	}

	.ptp-watch-filter {
		display: none;
	}

	.ptp-plan-meta {
		grid-template-columns: 1fr;
	}
}

/* ---------- Focus styles ---------- */
.ptp-app a:focus-visible,
.ptp-app button:focus-visible {
	outline: 3px solid rgba(42, 182, 224, 0.45);
	outline-offset: 2px;
}

.ptp-hide-md {
	display: inline-flex;
}

@media (max-width: 1024px) {
	.ptp-hide-md {
		display: none;
	}
}
/* ---------- Fallback template (index.php) — جدا از لندینگ ---------- */
.ptp-fallback {
	padding: 160px 0 80px;
	min-height: 60vh;
	background: var(--ptp-bg-soft);
}

.ptp-fallback__content {
	max-width: 760px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--ptp-line-soft);
	border-radius: var(--ptp-radius-lg);
	box-shadow: var(--ptp-shadow);
	padding: 40px;
}

.ptp-fallback__title {
	font-size: 30px;
	margin-bottom: 16px;
}

.ptp-fallback__body {
	color: var(--ptp-ink-soft);
	font-size: 15px;
}

.ptp-fallback__entry {
	margin-bottom: 40px;
}

.ptp-fallback__pagination {
	margin-top: 20px;
}

.ptp-fallback__pagination .page-numbers {
	display: inline-block;
	padding: 8px 14px;
	margin-inline-end: 6px;
	border-radius: 10px;
	border: 1px solid var(--ptp-line);
	font-weight: 700;
	font-size: 13px;
	color: var(--ptp-ink-soft);
}

.ptp-fallback__pagination .page-numbers.current {
	background: var(--ptp-turquoise);
	color: #fff;
	border-color: var(--ptp-turquoise);
}

@media (max-width: 640px) {
	.ptp-fallback {
		padding: 130px 0 60px;
	}

	.ptp-fallback__content {
		padding: 24px;
	}

	.ptp-fallback__title {
		font-size: 22px;
	}
}