
.hp-pricing-container {
    font-family: 'Outfit', 'Inter', sans-serif;
    color: #0f172a;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 20px 80px;
    box-sizing: border-box;
    text-align: center;
}

.hp-pricing-container * {
    box-sizing: border-box;
}

/* Pricing Grid & Cards styling */
.hp-pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 30px;
    width: 100%;
}
@media (max-width: 900px) {
    .hp-pricing-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}
.hp-pricing-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
    height: 100%;
}
.hp-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.hp-pricing-card.pro-card {
    background: #eef2ff;
    border: 2px solid #3b82f6;
}
.hp-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #facc15;
    color: #0f172a;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 9999px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: uppercase;
}
.hp-plan-header {
    margin-bottom: 20px;
}
.hp-plan-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
    text-transform: uppercase;
}
.hp-plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}
.hp-currency {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
}
.hp-amount {
    font-size: 48px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
}
.hp-period {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}
.hp-plan-desc {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    margin: 0;
    min-height: 40px;
}
.hp-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hp-plan-features li {
    font-size: 13px;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}
.hp-feature-check {
    font-weight: 700;
    flex-shrink: 0;
}
.hp-feature-check.blue {
    color: #3b82f6;
}
.hp-feature-check.yellow {
    color: #eab308;
}
.hp-plan-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    text-align: center;
    text-decoration: none;
    display: block;
}
.hp-btn-outline {
    background: #ffffff;
    color: #0f172a;
    border: 1.5px solid #0f172a;
}
.hp-btn-outline:hover {
    background: #0f172a;
    color: #ffffff;
}
.hp-btn-solid {
    background: #facc15;
    color: #0f172a;
    border: none;
}
.hp-btn-solid:hover {
    background: #eab308;
}
