:root {
	--pmx-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
	--pmx-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	--pmx-mono: 'JetBrains Mono', 'SF Mono', monospace;

	--pmx-black: #050505;
	--pmx-dark: #0a0a0a;
	--pmx-dark-card: #111111;
	--pmx-dark-border: rgba(255, 255, 255, 0.06);
	--pmx-dark-border-hover: rgba(255, 255, 255, 0.12);

	--pmx-white: #fafafa;
	--pmx-warm: #f5f0eb;
	--pmx-muted: #8a8a8a;
	--pmx-muted-light: #b3b3b3;

	--pmx-red: #dc2626;
	--pmx-red-glow: rgba(220, 38, 38, 0.15);
	--pmx-red-bright: #ef4444;

	--pmx-ease: cubic-bezier(0.16, 1, 0.3, 1);
	--pmx-ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

.pmx-landing * { box-sizing: border-box; }

.pmx-landing {
	font-family: var(--pmx-body);
	color: var(--pmx-white);
	background: var(--pmx-black);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.pmx-landing img { max-width: 100%; height: auto; }

.pmx-landing::before {
	content: '';
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 1;
	opacity: 0.5;
}

.pmx-landing > * { position: relative; z-index: 2; }

.pmx-reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.9s var(--pmx-ease), transform 0.9s var(--pmx-ease);
}

.pmx-reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

.pmx-reveal-delay-1 { transition-delay: 0.1s; }
.pmx-reveal-delay-2 { transition-delay: 0.2s; }
.pmx-reveal-delay-3 { transition-delay: 0.3s; }
.pmx-reveal-delay-4 { transition-delay: 0.4s; }
.pmx-reveal-delay-5 { transition-delay: 0.5s; }

.pmx-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 120px 5vw 80px;
	overflow: hidden;
	background-size: cover;
	background-position: center 30%;
}

.pmx-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.75) 50%, rgba(5, 5, 5, 0.88) 100%);
	z-index: 1;
}

.pmx-hero::before {
	content: '';
	position: absolute;
	top: -20%;
	right: -10%;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, var(--pmx-red-glow) 0%, transparent 70%);
	border-radius: 50%;
	filter: blur(100px);
	animation: pmx-pulse 6s ease-in-out infinite alternate;
	z-index: 2;
}

.pmx-hero::after {
	content: '';
	position: absolute;
	bottom: -15%;
	left: -5%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
	border-radius: 50%;
	filter: blur(80px);
	animation: pmx-pulse 8s ease-in-out 2s infinite alternate;
	z-index: 2;
}

@keyframes pmx-pulse {
	0% { opacity: 0.6; transform: scale(1); }
	100% { opacity: 1; transform: scale(1.15); }
}

.pmx-hero-inner {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	position: relative;
	z-index: 3;
}

.pmx-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--pmx-dark-card);
	border: 1px solid var(--pmx-dark-border);
	border-radius: 100px;
	padding: 6px 20px 6px 6px;
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--pmx-muted-light);
	margin-bottom: 2.5rem;
	backdrop-filter: blur(10px);
	letter-spacing: 0.02em;
}

.pmx-hero-badge-dot {
	width: 8px;
	height: 8px;
	background: var(--pmx-red);
	border-radius: 50%;
	box-shadow: 0 0 12px var(--pmx-red-glow);
	animation: pmx-dot-pulse 2s ease-in-out infinite;
}

@keyframes pmx-dot-pulse {
	0%, 100% { box-shadow: 0 0 6px var(--pmx-red-glow); }
	50% { box-shadow: 0 0 18px rgba(220, 38, 38, 0.4); }
}

.pmx-hero h1 {
	font-family: var(--pmx-display);
	font-size: clamp(3rem, 7.5vw, 7.5rem);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.035em;
	color: var(--pmx-white);
	margin: 0 0 2rem;
}

.pmx-hero h1 span {
	display: block;
}

.pmx-hero h1 .pmx-hero-accent {
	background: linear-gradient(135deg, var(--pmx-red) 0%, var(--pmx-red-bright) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.pmx-hero-sub {
	font-size: clamp(1rem, 1.5vw, 1.35rem);
	font-weight: 400;
	color: var(--pmx-muted);
	max-width: 620px;
	line-height: 1.7;
	margin-bottom: 3rem;
}

.pmx-hero-actions {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}

.pmx-btn {
	font-family: var(--pmx-display);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.02em;
	padding: 16px 36px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.35s var(--pmx-ease);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: none;
	position: relative;
	overflow: hidden;
}

.pmx-btn-primary {
	background: var(--pmx-red);
	color: #fff;
	box-shadow: 0 0 0 0 var(--pmx-red-glow), 0 4px 20px rgba(220, 38, 38, 0.25);
}

.pmx-btn-primary:hover {
	background: var(--pmx-red-bright);
	transform: translateY(-2px);
	box-shadow: 0 0 40px var(--pmx-red-glow), 0 8px 30px rgba(220, 38, 38, 0.3);
	color: #fff;
	text-decoration: none;
}

.pmx-btn-ghost {
	background: transparent;
	color: var(--pmx-white);
	border: 1.5px solid var(--pmx-dark-border-hover);
	backdrop-filter: blur(10px);
}

.pmx-btn-ghost:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
	color: var(--pmx-white);
	text-decoration: none;
}

.pmx-btn svg {
	transition: transform 0.3s var(--pmx-ease);
}

.pmx-btn:hover svg {
	transform: translateX(3px);
}

.pmx-hero-visual {
	position: absolute;
	top: 50%;
	right: 5vw;
	transform: translateY(-50%);
	width: 38vw;
	max-width: 560px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 12px;
	opacity: 0.35;
	mask-image: linear-gradient(135deg, transparent 0%, black 20%, black 80%, transparent 100%);
	-webkit-mask-image: linear-gradient(135deg, transparent 0%, black 20%, black 80%, transparent 100%);
	z-index: 2;
}

.pmx-hero-visual-item {
	aspect-ratio: 3/4;
	background: var(--pmx-dark-card);
	border-radius: 8px;
	border: 1px solid var(--pmx-dark-border);
	overflow: hidden;
}

.pmx-hero-visual-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(30%);
	transition: filter 0.5s ease;
}

.pmx-hero-visual:hover .pmx-hero-visual-item img {
	filter: grayscale(0%);
}

.pmx-hero-visual-item:nth-child(1) { transform: translateY(-20px); }
.pmx-hero-visual-item:nth-child(2) { transform: translateY(20px); }
.pmx-hero-visual-item:nth-child(3) { transform: translateY(-20px); }
.pmx-hero-visual-item:nth-child(4) { transform: translateY(20px); }

.pmx-hero-scroll {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: var(--pmx-muted);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.pmx-scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, var(--pmx-red), transparent);
	animation: pmx-scroll-anim 2s ease-in-out infinite;
}

@keyframes pmx-scroll-anim {
	0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
	50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
	50.1% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
	100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.pmx-stats {
	border-top: 1px solid var(--pmx-dark-border);
	border-bottom: 1px solid var(--pmx-dark-border);
	background: var(--pmx-dark);
	padding: 0;
}

.pmx-stats-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.pmx-stat {
	padding: 3rem 2.5rem;
	border-right: 1px solid var(--pmx-dark-border);
	text-align: center;
	transition: background 0.4s ease;
}

.pmx-stat:last-child { border-right: none; }

.pmx-stat:hover {
	background: rgba(220, 38, 38, 0.03);
}

.pmx-stat-number {
	font-family: var(--pmx-display);
	font-size: clamp(2rem, 3.5vw, 3.5rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--pmx-white);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.pmx-stat-number .pmx-stat-suffix {
	font-size: 0.5em;
	color: var(--pmx-red);
	font-weight: 700;
	vertical-align: super;
}

.pmx-stat-label {
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--pmx-muted);
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.pmx-about {
	padding: 10rem 5vw;
	position: relative;
}

.pmx-about-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
}

.pmx-section-eyebrow {
	font-family: var(--pmx-mono);
	font-size: 0.72rem;
	font-weight: 500;
	color: var(--pmx-red);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 12px;
}

.pmx-section-eyebrow::before {
	content: '';
	width: 24px;
	height: 1px;
	background: var(--pmx-red);
}

.pmx-section-title {
	font-family: var(--pmx-display);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: var(--pmx-white);
	margin-bottom: 1.5rem;
}

.pmx-section-text {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--pmx-muted);
	margin-bottom: 2rem;
}

.pmx-about-visual {
	position: relative;
	aspect-ratio: 4/3;
	border-radius: 16px;
	overflow: hidden;
	background: var(--pmx-dark-card);
	border: 1px solid var(--pmx-dark-border);
}

.pmx-mock-ui {
	width: 100%;
	height: 100%;
	padding: 24px;
	display: flex;
	flex-direction: column;
}

.pmx-mock-toolbar {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--pmx-dark-border);
}

.pmx-mock-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
}

.pmx-mock-dot:first-child { background: #ef4444; }
.pmx-mock-dot:nth-child(2) { background: #f59e0b; }
.pmx-mock-dot:nth-child(3) { background: #22c55e; }

.pmx-mock-url {
	flex: 1;
	margin-left: 12px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 6px;
	padding: 6px 14px;
	font-family: var(--pmx-mono);
	font-size: 0.68rem;
	color: var(--pmx-muted);
}

.pmx-mock-grid {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 8px;
}

.pmx-mock-img {
	border-radius: 6px;
	position: relative;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.03);
}

.pmx-mock-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pmx-mock-img::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 30%;
	background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.pmx-mock-img:nth-child(1) {
	grid-row: span 2;
}

.pmx-features {
	padding: 8rem 5vw 10rem;
	position: relative;
}

.pmx-features::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 80px;
	background: linear-gradient(to bottom, var(--pmx-dark-border), transparent);
}

.pmx-features-header {
	max-width: 700px;
	margin: 0 auto 5rem;
	text-align: center;
}

.pmx-features-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--pmx-dark-border);
	border: 1px solid var(--pmx-dark-border);
	border-radius: 20px;
	overflow: hidden;
}

.pmx-feature-card {
	background: var(--pmx-dark);
	padding: 3rem 2.5rem;
	transition: all 0.5s var(--pmx-ease);
	position: relative;
	overflow: hidden;
}

.pmx-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--pmx-red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s var(--pmx-ease);
}

.pmx-feature-card:hover {
	background: var(--pmx-dark-card);
}

.pmx-feature-card:hover::before {
	transform: scaleX(1);
}

.pmx-feature-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(220, 38, 38, 0.08);
	border: 1px solid rgba(220, 38, 38, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.75rem;
	transition: all 0.4s var(--pmx-ease);
	color: var(--pmx-red);
}

.pmx-feature-card:hover .pmx-feature-icon {
	background: rgba(220, 38, 38, 0.12);
	border-color: rgba(220, 38, 38, 0.3);
	transform: scale(1.08);
}

.pmx-feature-title {
	font-family: var(--pmx-display);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--pmx-white);
	margin-bottom: 0.75rem;
	letter-spacing: -0.01em;
}

.pmx-feature-desc {
	font-size: 0.92rem;
	line-height: 1.7;
	color: var(--pmx-muted);
}

.pmx-process {
	padding: 8rem 5vw 10rem;
	background: var(--pmx-dark);
	border-top: 1px solid var(--pmx-dark-border);
	border-bottom: 1px solid var(--pmx-dark-border);
}

.pmx-process-header {
	max-width: 700px;
	margin: 0 auto 6rem;
	text-align: center;
}

.pmx-process-timeline {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}

.pmx-process-timeline::before {
	content: '';
	position: absolute;
	top: 36px;
	left: 12%;
	right: 12%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--pmx-dark-border-hover) 15%, var(--pmx-dark-border-hover) 85%, transparent);
}

.pmx-process-step {
	text-align: center;
	padding: 0 1.5rem;
	position: relative;
}

.pmx-step-number {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--pmx-black);
	border: 1.5px solid var(--pmx-dark-border-hover);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	font-family: var(--pmx-display);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--pmx-red);
	transition: all 0.4s var(--pmx-ease);
	position: relative;
	z-index: 2;
}

.pmx-process-step:hover .pmx-step-number {
	border-color: var(--pmx-red);
	box-shadow: 0 0 30px var(--pmx-red-glow);
	transform: scale(1.1);
}

.pmx-step-title {
	font-family: var(--pmx-display);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--pmx-white);
	margin-bottom: 0.75rem;
}

.pmx-step-desc {
	font-size: 0.88rem;
	line-height: 1.7;
	color: var(--pmx-muted);
}

.pmx-content {
	padding: 10rem 5vw;
	position: relative;
}

.pmx-content-header {
	max-width: 700px;
	margin: 0 auto 5rem;
	text-align: center;
}

.pmx-content-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.pmx-content-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	min-height: 320px;
	display: flex;
	align-items: flex-end;
	background: var(--pmx-dark-card);
	border: 1px solid var(--pmx-dark-border);
	transition: all 0.5s var(--pmx-ease);
	cursor: default;
}

.pmx-content-card:hover {
	border-color: var(--pmx-dark-border-hover);
	transform: translateY(-4px);
}

.pmx-content-card-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.55;
	transition: opacity 0.5s ease, transform 0.8s var(--pmx-ease);
}

.pmx-content-card:hover .pmx-content-card-bg {
	opacity: 0.7;
	transform: scale(1.05);
}

.pmx-content-card-inner {
	position: relative;
	z-index: 2;
	padding: 2.5rem;
	width: 100%;
	background: linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.7) 50%, rgba(5, 5, 5, 0.4) 100%);
}

.pmx-content-tag {
	font-family: var(--pmx-mono);
	font-size: 0.65rem;
	font-weight: 500;
	color: var(--pmx-red);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 0.75rem;
}

.pmx-content-card-title {
	font-family: var(--pmx-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--pmx-white);
	margin-bottom: 0.5rem;
	letter-spacing: -0.01em;
}

.pmx-content-card-desc {
	font-size: 0.88rem;
	color: var(--pmx-muted-light);
	line-height: 1.6;
}

.pmx-content-card--featured {
	grid-column: span 2;
	min-height: 400px;
}

.pmx-cta {
	padding: 10rem 5vw;
	position: relative;
	overflow: hidden;
	border-top: 1px solid var(--pmx-dark-border);
	background: var(--pmx-dark);
}

.pmx-cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--pmx-red-glow) 0%, transparent 60%);
	border-radius: 50%;
	filter: blur(80px);
}

.pmx-cta-inner {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

.pmx-cta h2 {
	font-family: var(--pmx-display);
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.03em;
	color: var(--pmx-white);
	margin-bottom: 1.5rem;
}

.pmx-cta-text {
	font-size: 1.1rem;
	color: var(--pmx-muted);
	line-height: 1.7;
	margin-bottom: 3rem;
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
}

.pmx-cta-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

.pmx-cta-contact {
	font-size: 0.82rem;
	color: var(--pmx-muted);
}

.pmx-cta-contact a {
	color: var(--pmx-red);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

.pmx-cta-contact a:hover {
	color: var(--pmx-red-bright);
}

.pmx-comparison {
	padding: 8rem 5vw 10rem;
	position: relative;
}

.pmx-comparison-header {
	max-width: 700px;
	margin: 0 auto 4rem;
	text-align: center;
}

.pmx-comparison-table {
	max-width: 900px;
	margin: 0 auto;
	border: 1px solid var(--pmx-dark-border);
	border-radius: 16px;
	overflow: hidden;
}

.pmx-comparison-row {
	display: grid;
	grid-template-columns: 1fr 160px 160px;
	border-bottom: 1px solid var(--pmx-dark-border);
	transition: background 0.2s ease;
}

.pmx-comparison-row:last-child { border-bottom: none; }

.pmx-comparison-row:hover {
	background: rgba(255, 255, 255, 0.015);
}

.pmx-comparison-row--header {
	background: var(--pmx-dark-card);
}

.pmx-comparison-row--header:hover {
	background: var(--pmx-dark-card);
}

.pmx-comparison-cell {
	padding: 1.15rem 1.5rem;
	font-size: 0.88rem;
	color: var(--pmx-muted-light);
	display: flex;
	align-items: center;
}

.pmx-comparison-cell:not(:first-child) {
	justify-content: center;
	border-left: 1px solid var(--pmx-dark-border);
}

.pmx-comparison-row--header .pmx-comparison-cell {
	font-family: var(--pmx-display);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--pmx-muted);
	padding: 1rem 1.5rem;
}

.pmx-comparison-row--header .pmx-comparison-cell:last-child {
	color: var(--pmx-red);
}

.pmx-check {
	color: var(--pmx-red);
}

.pmx-cross {
	color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 1024px) {
	.pmx-hero-visual { display: none; }

	.pmx-about-inner {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

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

	.pmx-process-timeline {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem;
	}

	.pmx-process-timeline::before { display: none; }

	.pmx-content-card--featured { grid-column: span 2; }
}

@media (max-width: 768px) {
	.pmx-hero { padding: 100px 6vw 60px; min-height: auto; }
	.pmx-hero h1 { margin-bottom: 1.5rem; }
	.pmx-hero-sub { margin-bottom: 2rem; }
	.pmx-hero-scroll { display: none; }

	.pmx-stats-inner { grid-template-columns: repeat(2, 1fr); }
	.pmx-stat:nth-child(2) { border-right: none; }

	.pmx-about { padding: 5rem 6vw; }
	.pmx-features { padding: 5rem 6vw; }
	.pmx-features-grid { grid-template-columns: 1fr; }
	.pmx-feature-card { padding: 2rem; }

	.pmx-process { padding: 5rem 6vw; }
	.pmx-process-timeline { grid-template-columns: 1fr; gap: 2.5rem; }
	.pmx-process-header { margin-bottom: 3rem; }

	.pmx-content { padding: 5rem 6vw; }
	.pmx-content-grid { grid-template-columns: 1fr; }
	.pmx-content-card--featured { grid-column: span 1; }
	.pmx-content-card { min-height: 260px; }

	.pmx-cta { padding: 5rem 6vw; }

	.pmx-comparison-row { grid-template-columns: 1fr 100px 100px; }
	.pmx-comparison-cell { padding: 0.85rem 1rem; font-size: 0.82rem; }
}

@media (max-width: 480px) {
	.pmx-hero-actions { flex-direction: column; width: 100%; }
	.pmx-btn { width: 100%; justify-content: center; }
	.pmx-stats-inner { grid-template-columns: 1fr; }
	.pmx-stat { border-right: none; border-bottom: 1px solid var(--pmx-dark-border); }
	.pmx-stat:last-child { border-bottom: none; }
	.pmx-comparison-row { grid-template-columns: 1fr 80px 80px; }
}
