.onum-pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.onum-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.onum-card-badge {
    position: absolute;
    top: 20px;
    left: -10px;
    color: #fff;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0 20px 20px 0;
    letter-spacing: 1px;
}
.onum-card-badge::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    border-top: 10px solid rgba(0,0,0,0.3);
    border-left: 10px solid transparent;
}
.onum-card-icon-wrap {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.onum-card-icon-wrap .icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}
.onum-card-icon-wrap .icon-circle i {
    font-size: 36px;
    color: #fff;
}
.onum-card-icon-wrap .icon-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.onum-card-icon-wrap .dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
}
.onum-card-icon-wrap .dot-1 {
    top: 10px;
    right: 30%;
    background: #ffd700;
    animation: pulse 2s infinite;
}
.onum-card-icon-wrap .dot-2 {
    bottom: 20px;
    left: 25%;
    background: #ff6b6b;
    animation: pulse 2s infinite 0.5s;
}
.onum-card-icon-wrap .dot-3 {
    top: 30px;
    left: 20%;
    background: #4ecdc4;
    animation: pulse 2s infinite 1s;
}
.onum-card-icon-wrap .star {
    position: absolute;
    color: #ffd700;
    font-size: 12px;
    animation: twinkle 1.5s infinite;
}
.onum-card-icon-wrap .star-1 {
    top: 5px;
    left: 35%;
}
.onum-card-icon-wrap .star-2 {
    bottom: 10px;
    right: 30%;
    animation-delay: 0.5s;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}
@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.onum-card-price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}
.onum-card-price .currency {
    font-size: 24px;
    margin-top: 8px;
}
.onum-card-price .amount {
    line-height: 1;
}
.onum-card-period {
    color: #888;
    font-size: 14px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}
.onum-card-features {
    flex: 1;
    margin-bottom: 25px;
}
.onum-card-features .feature-item {
    padding: 10px 0;
    color: #555;
    font-size: 16px;
    border-bottom: 1px dashed #eee;
}
.onum-card-features .feature-item:last-child {
    border-bottom: none;
}
.onum-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.onum-card-btn:hover {
    transform: scale(1.05);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.onum-card-btn i {
    background: rgba(255,255,255,0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
