/* ==========================================================================
   RPM Pricing Page Styles
   ========================================================================== */

/* Header / Banner */
.rpm-pricing-header {
	padding: 180px 0 60px;
	background: var(--rpm-gradient, linear-gradient(135deg, #1a1a4e 0%, #2d2d7f 50%, #1a3a6e 100%));
	color: #ffffff;
	text-align: center;
}

.rpm-pricing-header__eyebrow {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #4a90d9;
	margin-bottom: 12px;
}

.rpm-pricing-header__title {
	font-size: 48px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 16px;
}

.rpm-pricing-header__subtitle {
	font-size: 18px;
	opacity: 0.85;
	max-width: 600px;
	margin: 0 auto;
}

/* Pricing Grid */
.rpm-pricing-grid {
	padding: 80px 0;
	background-color: #f7f8fc;
}

.rpm-pricing-cards {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

/* Individual Card */
.rpm-pricing-card {
	background: #ffffff;
	border: 1px solid #e2e5f1;
	border-radius: 12px;
	padding: 40px 32px;
	flex: 1 1 0;
	max-width: 380px;
	min-width: 280px;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.rpm-pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Featured Card */
.rpm-pricing-card--featured {
	border-color: #1a1a4e;
	border-width: 2px;
}

.rpm-pricing-card__badge {
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	background: #1a1a4e;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 8px 24px;
	border-radius: 0 0 8px 8px;
}

/* Card Header */
.rpm-pricing-card__name {
	font-size: 24px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 8px;
	text-align: center;
}

.rpm-pricing-card--featured .rpm-pricing-card__name {
	margin-top: 20px;
}

.rpm-pricing-card__price {
	text-align: center;
	margin-bottom: 8px;
}

.rpm-pricing-card__amount {
	font-size: 56px;
	font-weight: 700;
	color: #1a1a2e;
	line-height: 1;
}

.rpm-pricing-card__period {
	font-size: 18px;
	font-weight: 400;
	color: #666666;
}

.rpm-pricing-card__setup {
	text-align: center;
	font-size: 14px;
	color: #888888;
	margin-bottom: 24px;
}

/* CTA Button */
.rpm-pricing-card__cta {
	display: block;
	text-align: center;
	padding: 14px 24px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-bottom: 28px;
	border: 2px solid #1a1a4e;
	color: #1a1a4e;
	background: transparent;
}

.rpm-pricing-card__cta:hover {
	background: #1a1a4e;
	color: #ffffff;
}

.rpm-pricing-card--featured .rpm-pricing-card__cta {
	background: #1a1a4e;
	color: #ffffff;
	border-color: #1a1a4e;
}

.rpm-pricing-card--featured .rpm-pricing-card__cta:hover {
	background: #2d2d7f;
	border-color: #2d2d7f;
}

/* Card Description */
.rpm-pricing-card__desc {
	font-size: 14px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 16px;
}

/* Feature List */
.rpm-pricing-card__features {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	flex-grow: 1;
}

.rpm-pricing-card__features li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 12px;
	font-size: 15px;
	color: #444444;
	line-height: 1.5;
}

.rpm-pricing-card__features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 18px;
	height: 18px;
	background: #1a1a4e;
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
	background-size: 12px;
	background-position: center;
	background-repeat: no-repeat;
}

/* Ideal For */
.rpm-pricing-card__ideal {
	font-size: 14px;
	color: #666666;
	line-height: 1.6;
	font-style: italic;
	border-top: 1px solid #e2e5f1;
	padding-top: 20px;
	margin-top: auto;
}

/* Contract Note */
.rpm-pricing-card__note {
	font-size: 13px;
	color: #888888;
	margin-top: 12px;
}

/* Bottom CTA Section */
.rpm-pricing-bottom-cta {
	padding: 80px 0;
	background: var(--rpm-gradient, linear-gradient(135deg, #1a1a4e 0%, #2d2d7f 50%, #1a3a6e 100%));
	color: #ffffff;
	text-align: center;
	border-bottom: 1px solid #fff;
}

.rpm-pricing-bottom-cta__title {
	font-size: 36px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 16px;
}

.rpm-pricing-bottom-cta__text {
	font-size: 18px;
	opacity: 0.85;
	margin-bottom: 32px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.rpm-pricing-bottom-cta__btn {
	display: inline-block;
	padding: 14px 36px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	background: #ffffff;
	color: #1a1a4e;
	transition: all 0.3s ease;
}

.rpm-pricing-bottom-cta__btn:hover {
	background: #4a90d9;
	color: #ffffff;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991px) {
	.rpm-pricing-header__title {
		font-size: 36px;
	}

	.rpm-pricing-cards {
		flex-direction: column;
		align-items: center;
	}

	.rpm-pricing-card {
		max-width: 500px;
		width: 100%;
	}

	.rpm-pricing-bottom-cta__title {
		font-size: 30px;
	}
}

@media (max-width: 767px) {
	.rpm-pricing-header {
		padding: 120px 0 40px;
	}

	.rpm-pricing-header__title {
		font-size: 28px;
	}

	.rpm-pricing-grid {
		padding: 48px 0;
	}

	.rpm-pricing-card {
		padding: 32px 24px;
	}

	.rpm-pricing-card__amount {
		font-size: 44px;
	}

	.rpm-pricing-bottom-cta {
		padding: 60px 0;
	}

	.rpm-pricing-bottom-cta__title {
		font-size: 26px;
	}
}

.footer-top-area {
    background-color: #2b2e7d !important;
}
