/* =============================================
   HOW IT WORKS & PRICING
============================================= */
.plans-footer .section-title {
    font-family: var(--color-white);
    font-size: clamp(42px, 3.5vw, 60px);
    color: var(--color-white);
    margin-bottom: 40px;
    line-height: 1.15;
}

/* Pricing Bar Section */
.plans-footer .pricing-bar {
    background: var(--color-primary);
    padding: 60px 0;
}

.plans-footer .pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.plans-footer .pricing-card {
    background: linear-gradient(341deg, #ffffff8c, transparent);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    color: var(--color-white);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
	position: relative;
}

.plans-footer .pricing-card svg.mha-badge-shape{
    position: absolute;
    right: 0;
    width: 100%;
    bottom: 5px;
    z-index: 1;
}

.plans-footer .pricing-badge .mha-icon-lock{
	vertical-align: middle;
    margin-right: 8px;
}

.plans-footer .pricing-badge {
    font-size: 16px;
    font-weight: 700;
    padding: 4px 12px;
	text-decoration: underline;
    text-underline-offset: 5px;
}

.plans-footer .pricing-type {
    font-size: 16px;
    font-weight: 700;
	margin-bottom: 15px;
}

.plans-footer .pricing-plan {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
}

.plans-footer .wrapper-great-value{
    background-color: #da01a466;
    border-radius: var(--radius-pill);
    padding: 8px 20px;
    margin-top: -16px;
}

.plans-footer .pricing-price {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.plans-footer .pricing-price sup {
    font-size: 20px;
    vertical-align: top;
    margin-right: 2px;
}

.plans-footer .pricing-period {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 5px;
}

.plans-footer .pricing-value-tag {
    font-size: 10px;
    font-weight: 700;
}

.plans-footer .pricing-contact-btn {
    display: inline-block;
    margin-top: 15px;
    font-weight: 700;
    font-size: 16px;
}

/* =============================================
   BOTTOM PRICING SECTION
============================================= */
.plans-footer a.btn{
    background: var(--color-white);
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    padding: 15px 40px;
    display: inline-block;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 900px) {
	.plans-footer .section-title {text-align:left;}
	.plans-footer .pricing-cards { grid-template-columns: repeat(1, 1fr); grid-auto-flow: row; }
    .plans-footer .pricing-cards{ gap: 20px; }
	.plans-footer{ text-align: center; }
}