.pricing-grid-f3eed7f4 {
	width: 100%;
	padding: 80px 20px;
	font-family: inherit;
    box-sizing: border-box;
}
.pricing-grid-f3eed7f4 * {
    box-sizing: border-box;
}
.pg-container {
	max-width: 1200px;
	margin: 0 auto;
}
.pg-header-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}
.pg-header-content {
	max-width: 600px;
}
.pg-step {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 15px;
	background: rgba(255, 255, 255, 0.1);
	display: inline-block;
	padding: 5px 10px;
	border-radius: 4px;
    border: 1px solid currentColor;
}
.pg-heading {
	font-size: 3rem;
	font-weight: 800;
	margin: 0 0 15px 0;
	line-height: 1.1;
}
.pg-desc {
	font-size: 1.1rem;
	margin: 0;
	opacity: 0.8;
}
.pg-badge {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 14px;
	transform: rotate(-3deg);
    box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}
.pg-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}
.pg-card {
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 12px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease;
}
.pg-card:hover {
	transform: translateY(-5px);
}
.pg-card-title {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 10px;
	opacity: 0.7;
}
.pg-card-price-wrap {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 20px;
}
.pg-card-price {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1;
}
.pg-card-unit {
	font-size: 14px;
	opacity: 0.7;
}
.pg-card-desc {
	font-size: 15px;
	line-height: 1.5;
	opacity: 0.8;
	margin-top: auto;
}
.pg-footer {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: center;
    flex-wrap: wrap;
}
.pg-cta-btn {
	display: inline-block;
	padding: 15px 30px;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
	transition: opacity 0.2s;
    border: 1px solid transparent;
}
.pg-cta-btn:hover {
	opacity: 0.9;
}
.pg-footer-text {
	font-size: 14px;
	font-family: monospace;
	opacity: 0.7;
}
@media (max-width: 768px) {
	.pg-heading {
		font-size: 2.5rem;
	}
	.pg-header-wrap {
		flex-direction: column;
	}
}
